Sha256: e47651e8bbac3bc2d568f44dbeee452bf8773ca834df1ea2ce49599d5d4008d8

Contents?: true

Size: 1.77 KB

Versions: 15

Compression:

Stored size: 1.77 KB

Contents

require 'commander'

module CredentialsManager
  class CLI
    include Commander::Methods

    # Parses command options and executes actions
    def run
      program :name, 'CredentialsManager'
      program :version, Fastlane::VERSION
      program :description, 'Manage credentials for fastlane tools.'

      # Command to add entry to Keychain
      command :add do |c|
        c.syntax = 'fastlane-credentials add'
        c.description = 'Adds a fastlane credential to the keychain.'

        c.option '--username username', String, 'Username to add.'
        c.option '--password password', String, 'Password to add.'

        c.action do |args, options|
          username = options.username || ask('Username: ')
          password = options.password || ask('Password: ') { |q| q.echo = '*' }

          add(username, password)

          puts "Credential #{username}:#{'*' * password.length} added to keychain."
        end
      end

      # Command to remove credential from Keychain
      command :remove do |c|
        c.syntax = 'fastlane-credentials remove'
        c.description = 'Removes a fastlane credential from the keychain.'

        c.option '--username username', String, 'Username to remove.'

        c.action do |args, options|
          username = options.username || ask('Username: ')

          remove(username)
        end
      end

      run!
    end

    private

    # Add entry to Apple Keychain using AccountManager
    def add(username, password)
      CredentialsManager::AccountManager.new(
        user: username,
        password: password
      ).add_to_keychain
    end

    # Remove entry from Apple Keychain using AccountManager
    def remove(username)
      CredentialsManager::AccountManager.new(
        user: username
      ).remove_from_keychain
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
fastlane-2.6.0 credentials_manager/lib/credentials_manager/cli.rb
fastlane-2.5.0 credentials_manager/lib/credentials_manager/cli.rb
fastlane-2.4.0 credentials_manager/lib/credentials_manager/cli.rb
fastlane-2.3.1 credentials_manager/lib/credentials_manager/cli.rb
fastlane-2.3.0 credentials_manager/lib/credentials_manager/cli.rb
fastlane-2.2.0 credentials_manager/lib/credentials_manager/cli.rb
fastlane-2.1.3 credentials_manager/lib/credentials_manager/cli.rb
fastlane-2.1.2 credentials_manager/lib/credentials_manager/cli.rb
fastlane-2.1.1 credentials_manager/lib/credentials_manager/cli.rb
fastlane-2.1.0 credentials_manager/lib/credentials_manager/cli.rb
fastlane-2.0.5 credentials_manager/lib/credentials_manager/cli.rb
fastlane-2.0.4 credentials_manager/lib/credentials_manager/cli.rb
fastlane-2.0.3 credentials_manager/lib/credentials_manager/cli.rb
fastlane-2.0.2 credentials_manager/lib/credentials_manager/cli.rb
fastlane-2.0.1 credentials_manager/lib/credentials_manager/cli.rb