1
0
Fork 0
mirror of https://github.com/nishiki/manage-password.git synced 2025-02-23 11:10:13 +00:00
mpw/lib/mpw/ui/cli.rb

359 lines
9.9 KiB
Ruby
Raw Normal View History

2013-07-16 22:36:41 +02:00
#!/usr/bin/ruby
2016-06-30 22:02:45 +02:00
# MPW is a software to crypt and manage your passwords
# Copyright (C) 2016 Adrien Waksberg <mpw@yae.im>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
2013-07-16 22:36:41 +02:00
2013-12-20 17:38:58 +01:00
require 'readline'
2013-12-25 18:51:41 +01:00
require 'i18n'
2014-12-06 23:53:03 +01:00
require 'colorize'
require 'highline/import'
#TODO
require "#{APP_ROOT}/../lib/mpw/item.rb"
require "#{APP_ROOT}/../lib/mpw/mpw.rb"
2013-07-16 22:36:41 +02:00
2016-05-07 15:05:14 +02:00
module MPW
2013-07-16 22:36:41 +02:00
class Cli
2013-08-25 10:07:39 +02:00
# Constructor
2016-07-01 09:22:28 +02:00
# @args: config -> the config
# sync -> boolean for sync or not
def initialize(config, sync=true)
2014-01-15 23:11:39 +01:00
@config = config
2016-07-01 09:22:28 +02:00
@sync = sync
2013-07-16 22:36:41 +02:00
end
# Create a new config file
2013-12-25 18:51:41 +01:00
# @args: lang -> the software language
def setup(lang)
2016-05-14 17:01:44 +02:00
puts I18n.t('form.setup_config.title')
puts '--------------------'
2016-05-14 17:01:44 +02:00
language = ask(I18n.t('form.setup_config.lang', lang: lang)).to_s
key = ask(I18n.t('form.setup_config.gpg_key')).to_s
wallet_dir = ask(I18n.t('form.setup_config.wallet_dir', home: "#{@config.config_dir}")).to_s
2016-07-05 22:03:55 +02:00
gpg_exe = ask(I18n.t('form.setup_config.gpg_exe')).to_s
2014-11-16 19:39:38 +01:00
if language.nil? or language.empty?
2014-03-16 21:28:23 +01:00
language = lang
2014-02-02 14:20:24 +01:00
end
2014-03-16 21:28:23 +01:00
I18n.locale = language.to_sym
2013-12-25 18:51:41 +01:00
2016-07-05 22:03:55 +02:00
@config.setup(key, lang, wallet_dir, gpg_exe)
raise I18n.t('error.config.check') if not @config.is_valid?
2016-05-15 18:30:33 +02:00
puts "#{I18n.t('form.setup_config.valid')}".green
rescue Exception => e
puts "#{I18n.t('display.error')} #8: #{e}".red
exit 2
2013-07-17 22:31:28 +02:00
end
2014-03-16 21:28:23 +01:00
# Setup a new GPG key
def setup_gpg_key
puts I18n.t('form.setup_gpg_key.title')
puts '--------------------'
2014-03-18 21:08:09 +01:00
ask = ask(I18n.t('form.setup_gpg_key.ask')).to_s
2014-11-16 19:39:38 +01:00
if not ['Y', 'y', 'O', 'o'].include?(ask)
2016-05-15 18:30:33 +02:00
raise I18n.t('form.setup_gpg_key.no_create')
2014-03-18 21:08:09 +01:00
end
2014-03-16 21:28:23 +01:00
name = ask(I18n.t('form.setup_gpg_key.name')).to_s
password = ask(I18n.t('form.setup_gpg_key.password')) {|q| q.echo = false}
confirm = ask(I18n.t('form.setup_gpg_key.confirm_password')) {|q| q.echo = false}
if password != confirm
2016-05-15 18:30:33 +02:00
raise I18n.t('form.setup_gpg_key.error_password')
end
2014-03-16 21:28:23 +01:00
length = ask(I18n.t('form.setup_gpg_key.length')).to_s
expire = ask(I18n.t('form.setup_gpg_key.expire')).to_s
password = password.to_s
2014-03-16 21:28:23 +01:00
2014-11-16 19:39:38 +01:00
length = length.nil? or length.empty? ? 2048 : length.to_i
expire = expire.nil? or expire.empty? ? 0 : expire.to_i
2014-03-16 21:28:23 +01:00
puts I18n.t('form.setup_gpg_key.wait')
2016-05-15 18:30:33 +02:00
@config.setup_gpg_key(password, name, length, expire)
puts "#{I18n.t('form.setup_gpg_key.valid')}".green
rescue Exception => e
puts "#{I18n.t('display.error')} #8: #{e}".red
exit 2
2014-03-16 21:28:23 +01:00
end
2016-05-12 22:43:57 +02:00
# Setup wallet config for sync
def setup_wallet_config
config = {}
config['sync'] = {}
2016-05-14 17:01:44 +02:00
puts I18n.t('form.setup_wallet.title')
2016-05-12 22:43:57 +02:00
puts '--------------------'
2016-07-01 09:28:56 +02:00
config['sync']['type'] = ask(I18n.t('form.setup_wallet.sync_type')).to_s
config['sync']['host'] = ask(I18n.t('form.setup_wallet.sync_host')).to_s
config['sync']['port'] = ask(I18n.t('form.setup_wallet.sync_port')).to_s
config['sync']['user'] = ask(I18n.t('form.setup_wallet.sync_user')).to_s
config['sync']['password'] = ask(I18n.t('form.setup_wallet.sync_pwd')).to_s
config['sync']['path'] = ask(I18n.t('form.setup_wallet.sync_path')).to_s
2016-05-12 22:43:57 +02:00
@mpw.set_config(config)
@mpw.write_data
2016-05-14 17:01:44 +02:00
puts "#{I18n.t('form.setup_wallet.valid')}".green
2016-05-12 22:43:57 +02:00
rescue Exception => e
puts "#{I18n.t('display.error')} #10: #{e}".red
exit 2
end
2013-08-25 10:07:39 +02:00
# Request the GPG password and decrypt the file
2014-01-30 23:08:38 +01:00
def decrypt
2014-11-16 19:39:38 +01:00
if not defined?(@mpw)
@password = ask(I18n.t('display.gpg_password')) {|q| q.echo = false}
2016-07-05 22:03:55 +02:00
@mpw = MPW.new(@config.key, @wallet_file, @password, @config.gpg_exe)
2014-01-25 16:53:48 +01:00
end
@mpw.read_data
2016-07-01 09:22:28 +02:00
@mpw.sync if @sync
2016-05-05 23:46:48 +02:00
rescue Exception => e
puts "#{I18n.t('display.error')} #11: #{e}".red
exit 2
2013-07-17 22:31:28 +02:00
end
2013-07-16 22:36:41 +02:00
2013-08-25 10:07:39 +02:00
# Display the query's result
# @args: search -> the string to search
# protocol -> search from a particular protocol
2015-02-14 10:42:03 +01:00
def display(options={})
result = @mpw.list(options)
2013-07-16 22:36:41 +02:00
2015-01-17 00:05:40 +01:00
case result.length
when 0
puts I18n.t('display.nothing')
when 1
display_item(result.first)
else
i = 1
result.each do |item|
2015-01-17 00:05:40 +01:00
print "#{i}: ".cyan
print item.name
print " -> #{item.comment}".magenta if not item.comment.to_s.empty?
2015-01-17 00:05:40 +01:00
print "\n"
i += 1
end
choice = ask(I18n.t('form.select')).to_i
if choice >= 1 and choice < i
display_item(result[choice-1])
else
puts "#{I18n.t('display.warning')}: #{I18n.t('warning.select')}".yellow
2013-07-17 22:31:28 +02:00
end
2013-07-16 22:36:41 +02:00
end
end
# Display an item in the default format
2013-09-02 19:14:33 +02:00
# @args: item -> an array with the item information
2015-01-17 00:05:40 +01:00
def display_item(item)
2015-01-17 00:12:01 +01:00
puts '--------------------'.cyan
print 'Id: '.cyan
puts item.id
2015-01-17 00:12:01 +01:00
print "#{I18n.t('display.name')}: ".cyan
puts item.name
2015-01-17 00:12:01 +01:00
print "#{I18n.t('display.group')}: ".cyan
puts item.group
2015-01-17 00:12:01 +01:00
print "#{I18n.t('display.server')}: ".cyan
puts item.host
2015-01-17 00:12:01 +01:00
print "#{I18n.t('display.protocol')}: ".cyan
puts item.protocol
2015-01-17 00:12:01 +01:00
print "#{I18n.t('display.login')}: ".cyan
puts item.user
2015-01-17 00:12:01 +01:00
print "#{I18n.t('display.password')}: ".cyan
puts @mpw.get_password(item.id)
2015-01-17 00:12:01 +01:00
print "#{I18n.t('display.port')}: ".cyan
puts item.port
2015-01-17 00:12:01 +01:00
print "#{I18n.t('display.comment')}: ".cyan
puts item.comment
2013-09-02 19:14:33 +02:00
end
2016-05-07 10:04:07 +02:00
# Display the wallet
# @args: wallet -> the wallet name
def get_wallet(wallet=nil)
if wallet.to_s.empty?
wallets = Dir.glob("#{@config.wallet_dir}/*.mpw")
case wallets.length
when 0
puts I18n.t('display.nothing')
when 1
@wallet_file = wallets[0]
else
i = 1
wallets.each do |wallet|
print "#{i}: ".cyan
puts File.basename(wallet, '.mpw')
i += 1
end
choice = ask(I18n.t('form.select')).to_i
if choice >= 1 and choice < i
@wallet_file = wallets[choice-1]
else
puts "#{I18n.t('display.warning')}: #{I18n.t('warning.select')}".yellow
end
end
else
@wallet_file = "#{@config.wallet_dir}/#{wallet}.mpw"
end
end
2016-05-07 17:47:24 +02:00
# Add a new public key
# args: key -> the key name to add
2016-05-08 10:13:25 +02:00
# file -> gpg public file to import
def add_key(key, file=nil)
@mpw.add_key(key, file)
2016-05-07 14:36:57 +02:00
@mpw.write_data
2016-07-01 09:22:28 +02:00
@mpw.sync if @sync
2016-05-07 16:27:55 +02:00
2016-05-14 17:01:44 +02:00
puts "#{I18n.t('form.add_key.valid')}".green
2016-05-07 14:36:57 +02:00
rescue Exception => e
puts "#{I18n.t('display.error')} #13: #{e}".red
end
2016-05-07 17:47:24 +02:00
# Add new public key
# args: key -> the key name to delete
def delete_key(key)
@mpw.delete_key(key)
@mpw.write_data
2016-07-01 09:22:28 +02:00
@mpw.sync if @sync
2016-05-07 17:47:24 +02:00
2016-05-14 17:01:44 +02:00
puts "#{I18n.t('form.delete_key.valid')}".green
2016-05-07 17:47:24 +02:00
rescue Exception => e
puts "#{I18n.t('display.error')} #15: #{e}".red
end
2013-08-25 10:07:39 +02:00
# Form to add a new item
2014-02-02 10:16:10 +01:00
def add
2015-02-01 11:48:02 +01:00
options = {}
2016-05-14 17:01:44 +02:00
puts I18n.t('form.add_item.title')
puts '--------------------'
2016-05-14 17:01:44 +02:00
options[:name] = ask(I18n.t('form.add_item.name')).to_s
options[:group] = ask(I18n.t('form.add_item.group')).to_s
options[:host] = ask(I18n.t('form.add_item.server')).to_s
options[:protocol] = ask(I18n.t('form.add_item.protocol')).to_s
options[:user] = ask(I18n.t('form.add_item.login')).to_s
password = ask(I18n.t('form.add_item.password')).to_s
options[:port] = ask(I18n.t('form.add_item.port')).to_s
options[:comment] = ask(I18n.t('form.add_item.comment')).to_s
2015-02-01 11:48:02 +01:00
2016-05-07 15:05:14 +02:00
item = Item.new(options)
@mpw.add(item)
@mpw.set_password(item.id, password)
@mpw.write_data
2016-07-01 09:22:28 +02:00
@mpw.sync if @sync
2016-05-14 17:01:44 +02:00
puts "#{I18n.t('form.add_item.valid')}".green
2013-07-17 22:31:28 +02:00
end
2013-07-16 22:36:41 +02:00
2013-08-25 10:07:39 +02:00
# Update an item
# @args: id -> the item's id
2013-07-17 22:31:28 +02:00
def update(id)
item = @mpw.search_by_id(id)
2013-07-17 22:31:28 +02:00
2015-02-01 12:23:50 +01:00
if not item.nil?
options = {}
2016-05-14 17:01:44 +02:00
puts I18n.t('form.update_item.title')
puts '--------------------'
2016-05-14 17:01:44 +02:00
options[:name] = ask(I18n.t('form.update_item.name' , name: item.name)).to_s
options[:group] = ask(I18n.t('form.update_item.group' , group: item.group)).to_s
options[:host] = ask(I18n.t('form.update_item.server' , server: item.host)).to_s
options[:protocol] = ask(I18n.t('form.update_item.protocol', protocol: item.protocol)).to_s
options[:user] = ask(I18n.t('form.update_item.login' , login: item.user)).to_s
password = ask(I18n.t('form.update_item.password')).to_s
options[:port] = ask(I18n.t('form.update_item.port' , port: item.port)).to_s
options[:comment] = ask(I18n.t('form.update_item.comment' , comment: item.comment)).to_s
2015-02-01 12:23:50 +01:00
options.delete_if { |k,v| v.empty? }
2013-07-17 22:31:28 +02:00
item.update(options)
2016-05-05 23:14:28 +02:00
@mpw.set_password(item.id, password) if not password.empty?
@mpw.write_data
2016-07-01 09:22:28 +02:00
@mpw.sync if @sync
2016-05-14 17:01:44 +02:00
puts "#{I18n.t('form.update_item.valid')}".green
2013-07-17 22:31:28 +02:00
else
2014-01-26 11:39:53 +01:00
puts I18n.t('display.nothing')
2013-07-17 22:31:28 +02:00
end
2016-05-05 23:14:28 +02:00
rescue Exception => e
puts "#{I18n.t('display.error')} #14: #{e}".red
2013-07-17 22:31:28 +02:00
end
2013-07-16 22:36:41 +02:00
2013-08-25 10:07:39 +02:00
# Remove an item
# @args: id -> the item's id
# force -> no resquest a validation
2015-02-01 12:35:42 +01:00
def delete(id, force=false)
2016-05-05 23:24:08 +02:00
item = @mpw.search_by_id(id)
2013-08-26 21:23:35 +02:00
2016-05-05 23:24:08 +02:00
if item.nil?
2016-05-14 17:01:44 +02:00
puts I18n.t('form.delete_item.not_valid', id: id)
2016-05-05 23:24:08 +02:00
return
end
2016-05-05 23:24:08 +02:00
if not force
display_item(item)
2015-02-01 12:35:42 +01:00
2016-05-14 17:01:44 +02:00
confirm = ask("#{I18n.t('form.delete_item.ask', id: id)} (y/N) ").to_s
2016-05-05 23:24:08 +02:00
if not confirm =~ /^(y|yes|YES|Yes|Y)$/
return
2013-07-17 22:31:28 +02:00
end
2013-07-16 22:36:41 +02:00
end
2016-05-05 23:24:08 +02:00
item.delete
@mpw.write_data
2016-07-01 09:22:28 +02:00
@mpw.sync if @sync
2016-05-05 23:24:08 +02:00
2016-05-14 17:01:44 +02:00
puts "#{I18n.t('form.delete_item.valid', id: id)}".green
rescue Exception => e
puts "#{I18n.t('display.error')} #16: #{e}".red
2013-07-17 22:31:28 +02:00
end
2013-07-16 22:36:41 +02:00
2013-08-25 10:07:39 +02:00
# Export the items in a CSV file
# @args: file -> the destination file
def export(file)
@mpw.export(file)
2016-05-17 19:34:05 +02:00
puts "#{I18n.t('export.export.valid', file)}".green
rescue Exception => e
2016-05-14 17:01:44 +02:00
puts "#{I18n.t('display.error')} #17: #{e}".red
2013-07-25 19:51:43 +02:00
end
# Import items from a YAML file
2013-08-25 10:07:39 +02:00
# @args: file -> the import file
def import(file)
@mpw.import(file)
@mpw.write_data
2013-08-26 22:19:37 +02:00
puts "#{I18n.t('form.import.valid')}".green
rescue Exception => e
puts "#{I18n.t('display.error')} #18: #{e}".red
2013-07-25 19:51:43 +02:00
end
2013-07-16 22:36:41 +02:00
end
2016-05-07 15:05:14 +02:00
end