Sha256: ba8ec652b8891806c515f993e365019cc0754787d342cc529db1543cbfb0f8a4

Contents?: true

Size: 1.62 KB

Versions: 6

Compression:

Stored size: 1.62 KB

Contents

module Imap; end

module Imap::Backup
  class Setup; end

  # Implements interactively requesting information from the user
  class Setup::Asker
    # @param highline [Higline] the configured Highline instance
    def initialize(highline)
      @highline = highline
    end

    # Asks for a email address
    #
    # @param default [String] the existing email address
    # @return [String] the email address
    def email(default = "")
      highline.ask("email address: ") do |q|
        q.default               = default
        q.validate              = EMAIL_MATCHER
        q.responses[:not_valid] = "Enter a valid email address "
      end
    end

    # Asks for a password
    #
    # @return [String] the password
    def password
      password     = highline.ask("password: ")        { |q| q.echo = false }
      confirmation = highline.ask("repeat password: ") { |q| q.echo = false }
      if password != confirmation
        return nil if !highline.agree(
          "the password and confirmation did not match.\nContinue? (y/n) "
        )

        return self.password
      end
      password
    end

    # Asks for a email address using the configured menu handler
    #
    # @param default [String] the existing email address
    # @return [String] the email address
    def self.email(default = "")
      new(Setup.highline).email(default)
    end

    # Asks for a password using the configured menu handler
    #
    # @return [String] the password
    def self.password
      new(Setup.highline).password
    end

    private

    EMAIL_MATCHER = /^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]+$/i.freeze

    attr_reader :highline
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
imap-backup-14.6.1 lib/imap/backup/setup/asker.rb
imap-backup-14.6.0 lib/imap/backup/setup/asker.rb
imap-backup-14.5.2 lib/imap/backup/setup/asker.rb
imap-backup-14.5.1 lib/imap/backup/setup/asker.rb
imap-backup-14.5.0 lib/imap/backup/setup/asker.rb
imap-backup-14.4.5 lib/imap/backup/setup/asker.rb