Sha256: 58f5b841413a754faf1002a8d6fbe7efeb87a496a970aedd707b5911c9ea56d4

Contents?: true

Size: 1.94 KB

Versions: 17

Compression:

Stored size: 1.94 KB

Contents

module TreasureData
module Command

  def account(op)
    op.banner << "\noptions:\n"

    force = false
    op.on('-f', '--force', 'overwrite current account setting', TrueClass) {|b|
      force = true
    }

    user_name = op.cmd_parse

    conf = nil
    begin
      conf = Config.read
    rescue ConfigError
    end
    if conf && conf['account.apikey']
      unless force
        if conf['account.user']
          $stderr.puts "Account is already configured with '#{conf['account.user']}' account."
        else
          $stderr.puts "Account is already configured."
        end
        $stderr.puts "Add '-f' option to overwrite."
        exit 0
      end
    end

    unless user_name
      begin
        print "User name: "
        line = STDIN.gets || ""
        user_name = line.strip
      rescue Interrupt
        $stderr.puts "\ncanceled."
        exit 1
      end
    end

    if user_name.empty?
      $stderr.puts "canceled."
      exit 0
    end

    client = nil

    3.times do
      begin
        system "stty -echo"  # TODO termios
        print "Password (typing will be hidden): "
        password = STDIN.gets || ""
        password = password[0..-2]  # strip \n
      rescue Interrupt
        $stderr.print "\ncanceled."
        exit 1
      ensure
        system "stty echo"   # TODO termios
        print "\n"
      end

      if password.empty?
        $stderr.puts "canceled."
        exit 0
      end

      begin
        # enalbe SSL for the authentication
        client = Client.authenticate(user_name, password, :ssl=>true)
      rescue TreasureData::AuthError
        $stderr.puts "User name or password mismatched."
      end

      break if client
    end
    return unless client

    $stderr.puts "Authenticated successfully."

    conf ||= Config.new
    conf["account.user"] = user_name
    conf["account.apikey"] = client.apikey
    conf.save

    $stderr.puts "Use '#{$prog} db:create <db_name>' to create a database."
  end

end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
td-0.10.35 lib/td/command/account.rb
td-0.10.34 lib/td/command/account.rb
td-0.10.33 lib/td/command/account.rb
td-0.10.32 lib/td/command/account.rb
td-0.10.31 lib/td/command/account.rb
td-0.10.30 lib/td/command/account.rb
td-0.10.29 lib/td/command/account.rb
td-0.10.28 lib/td/command/account.rb
td-0.10.27 lib/td/command/account.rb
td-0.10.26 lib/td/command/account.rb
td-0.10.25 lib/td/command/account.rb
td-0.10.24 lib/td/command/account.rb
td-0.10.23 lib/td/command/account.rb
td-0.10.22 lib/td/command/account.rb
td-0.10.21 lib/td/command/account.rb
td-0.10.20 lib/td/command/account.rb
td-0.10.19 lib/td/command/account.rb