class Travis::CLI::Login
Attributes
user_login[RW]
Public Instance Methods
github()
click to toggle source
# File lib/travis/cli/login.rb, line 43 def github @github ||= begin load_gh Tools::Github.new(session.config['github']) do |g| g.note = "temporary token to identify with the travis command line client against #{api_endpoint}" g.manual_login = no_manual.nil? g.explode = explode? g.github_token = github_token g.auto_token = auto_token g.auto_password = auto_password g.github_login = user_login g.check_token = !skip_token_check? g.drop_token = true g.ask_login = proc { ask("Username: ") } g.ask_password = proc { |user| ask("Password for #{user}: ") { |q| q.echo = "*" } } g.ask_otp = proc { |user| ask("Two-factor authentication code for #{user}: ") } g.login_header = proc { login_header } g.debug = proc { |log| debug(log) } g.after_tokens = proc { g.explode = true and error("no suitable github token found") } end end end
list_token()
click to toggle source
# File lib/travis/cli/login.rb, line 22 def list_token github.after_tokens = proc { } github.each_token do |token| say token end end
login()
click to toggle source
# File lib/travis/cli/login.rb, line 29 def login session.access_token = nil github.with_token do |token| endpoint_config['access_token'] = github_auth(token) error("user mismatch: logged in as %p instead of %p" % [user.login, user_login]) if user_login and user.login != user_login error("#{user.login} has not granted Travis CI the required permissions, please log in via #{session.config['host']}") unless user.correct_scopes? success("Successfully logged in as #{user.login}!") end end
login_header()
click to toggle source
# File lib/travis/cli/login.rb, line 66 def login_header say "We need your #{color("GitHub login", :important)} to identify you." say "This information will #{color("not be sent to Travis CI", :important)}, only to #{color(github_endpoint.host, :info)}." say "The password will not be displayed." empty_line say "Try running with #{color("--github-token", :info)} or #{color("--auto", :info)} if you don't want to enter your password anyway." empty_line end
run()
click to toggle source
# File lib/travis/cli/login.rb, line 39 def run list_github_token ? list_token : login end