class Pwl::Commands::Init

Public Instance Methods

call(args, options) click to toggle source
# File lib/pwl/commands/init.rb, line 4
def call(args, options)
  locker_file = locker_file(options, true)
  msg "Attempting to initialize new locker at #{locker_file}" if options.verbose

  # Locker checks this too, but we want to fail fast.
  exit_with(:is_dir, options.verbose, :file => locker_file) if File.exists?(locker_file) && File.directory?(locker_file)
  exit_with(:file_exists, options.verbose, :file => locker_file) if File.exists?(locker_file) && !options.force

  begin
    begin
      master_password = get_password('Enter new master password:', options.gui)
    end while begin
      validate!(master_password) # Basic idea from http://stackoverflow.com/questions/136793/is-there-a-do-while-loop-in-ruby
    rescue Pwl::InvalidMasterPasswordError => e
      msg e.message
      options.gui || STDIN.tty? # only continue the loop when in interactive mode
    end

    # Ask for password confirmation if running in interactive mode (terminal)
    if STDIN.tty? && master_password != get_password('Enter master password again:', options.gui)
      exit_with(:passwords_dont_match, options.verbose)
    end
  rescue Pwl::Dialog::Cancelled
    exit_with(:aborted, options.verbose)
  end

  new_locker(options, master_password)
  msg "Successfully initialized new locker at #{locker_file}" if options.verbose
end