class TeachersPet::Actions::Base

Attributes

client[R]
options[R]

Public Class Methods

new(opts={}) click to toggle source
# File lib/teachers_pet/actions/base.rb, line 11
def initialize(opts={})
  @options = opts.symbolize_keys
end

Public Instance Methods

execute(command) click to toggle source
# File lib/teachers_pet/actions/base.rb, line 94
def execute(command)
  return system(command)
end
init_client() click to toggle source
# File lib/teachers_pet/actions/base.rb, line 45
def init_client
  puts "=" * 50
  puts "Authenticating to GitHub..."
  octokit = Octokit::Client.new(self.octokit_config)
  @client = TeachersPet::ClientDecorator.new(octokit)
end
octokit_config() click to toggle source
# File lib/teachers_pet/actions/base.rb, line 15
def octokit_config
  opts = {
    api_endpoint: self.options[:api],
    web_endpoint: self.options[:web],
    login: self.options[:username],
    # Organizations can get big, pull in all pages
    auto_paginate: true
  }

  if self.options[:token]
    if self.options[:token].eql?('token')
      print 'Please enter your GitHub token: '
      opts[:access_token] = STDIN.noecho(&:gets).chomp
    else
      opts[:access_token] = self.options[:token]
    end
  elsif self.options[:password]
    if self.options[:password].eql?('password')
      print 'Please enter your GitHub password: '
      opts[:password] = STDIN.noecho(&:gets).chomp
    else
      opts[:password] = self.options[:password]
    end
  else
    raise Thor::RequiredArgumentMissingError.new("No value provided for option --password or --token")
  end

  opts
end
read_file(filename) click to toggle source
# File lib/teachers_pet/actions/base.rb, line 52
def read_file(filename)
  map = Hash.new
  File.open(filename).each_line do |team|
    # Team can be a single user, or a team name and multiple users
    # Trim whitespace, otherwise issues occur
    team.strip!
    items = team.split(' ')
    items.each do |item|
      abort("No users can be named 'owners' (in any case)") if 'owners'.eql?(item.downcase)
    end

    if map[items[0]].nil?
      map[items[0]] = Array.new
      puts " -> #{items[0]}"
      if (items.size > 1)
        print "  \\-> members: "
        1.upto(items.size - 1) do |i|
          print "#{items[i]} "
          map[items[0]] << items[i]
        end
        print "\n"
      else
        map[items[0]] << items[0]
      end
    end
  end

  map
end
read_members_file() click to toggle source
# File lib/teachers_pet/actions/base.rb, line 88
def read_members_file
  file = self.options[:members]
  puts "Loading members to add:"
  read_file(file).keys
end
read_students_file() click to toggle source
# File lib/teachers_pet/actions/base.rb, line 82
def read_students_file
  student_file = self.options[:students]
  puts "Loading students:"
  read_file(student_file)
end