1
0
Fork 0
mirror of https://github.com/nishiki/manage-password.git synced 2025-02-21 10:20:05 +00:00
mpw/MPW/Config.rb

159 lines
4.8 KiB
Ruby
Raw Normal View History

2014-01-29 20:49:39 +01:00
#!/usr/bin/ruby
# author: nishiki
# mail: nishiki@yaegashi.fr
# info: a simple script who manage your passwords
module MPW
require 'rubygems'
require 'yaml'
require 'i18n'
class Config
attr_accessor :error_msg
attr_accessor :key
2014-02-02 14:20:24 +01:00
attr_accessor :share_keys
2014-01-29 20:49:39 +01:00
attr_accessor :lang
attr_accessor :file_gpg
attr_accessor :timeout_pwd
attr_accessor :last_update
2014-01-30 23:08:38 +01:00
attr_accessor :sync_type
2014-01-29 20:49:39 +01:00
attr_accessor :sync_host
attr_accessor :sync_port
2014-01-30 23:08:38 +01:00
attr_accessor :sync_user
2014-01-29 20:49:39 +01:00
attr_accessor :sync_pwd
2014-01-30 23:08:38 +01:00
attr_accessor :sync_path
2014-01-29 20:49:39 +01:00
attr_accessor :last_update
# Constructor
# @args: file_config -> the specify config file
def initialize(file_config=nil)
@error_msg = nil
2014-02-02 10:16:10 +01:00
@file_config = "#{Dir.home}/.mpw.cfg"
2014-01-29 20:49:39 +01:00
if !file_config.nil? && !file_config.empty?
@file_config = file_config
end
end
# Create a new config file
# @args: key -> the gpg key to encrypt
2014-02-02 14:20:24 +01:00
# share_keys -> multiple keys to share the password with other people
2014-01-29 20:49:39 +01:00
# lang -> the software language
# file_gpg -> the file who is encrypted
# timeout_pwd -> time to save the password
2014-01-30 23:08:38 +01:00
# sync_type -> the type to synchronization
2014-01-29 20:49:39 +01:00
# sync_host -> the server host for synchronization
# sync_port -> the server port for synchronization
2014-01-30 23:08:38 +01:00
# sync_user -> the user for synchronization
2014-01-29 20:49:39 +01:00
# sync_pwd -> the password for synchronization
# sync_suffix -> the suffix file (optionnal)
# @rtrn: true if le config file is create
2014-02-02 14:20:24 +01:00
def setup(key, share_keys, lang, file_gpg, timeout_pwd, sync_type, sync_host, sync_port, sync_user, sync_pwd, sync_path)
2014-01-29 20:49:39 +01:00
if not key =~ /[a-zA-Z0-9.-_]+\@[a-zA-Z0-9]+\.[a-zA-Z]+/
@error_msg = I18n.t('error.config.key_bad_format')
return false
end
2014-02-02 14:20:24 +01:00
2014-02-02 17:34:05 +01:00
share_keys = share_keys.nil? ? '' : share_keys
if !share_keys.empty?
2014-02-02 14:20:24 +01:00
share_keys.split.each do |k|
if not k =~ /[a-zA-Z0-9.-_]+\@[a-zA-Z0-9]+\.[a-zA-Z]+/
@error_msg = I18n.t('error.config.key_bad_format')
return false
end
end
end
2014-01-29 20:49:39 +01:00
if file_gpg.empty?
2014-02-02 10:16:10 +01:00
file_gpg = "#{Dir.home}/.mpw.gpg"
2014-01-29 20:49:39 +01:00
end
timeout_pwd = timeout_pwd.empty? ? 60 : timeout_pwd.to_i
config = {'config' => {'key' => key,
2014-02-02 14:20:24 +01:00
'share_keys' => share_keys,
2014-01-29 20:49:39 +01:00
'lang' => lang,
'file_gpg' => file_gpg,
'timeout_pwd' => timeout_pwd,
2014-01-30 23:08:38 +01:00
'sync_type' => sync_type,
2014-01-29 20:49:39 +01:00
'sync_host' => sync_host,
'sync_port' => sync_port,
2014-01-30 23:08:38 +01:00
'sync_user' => sync_user,
2014-01-29 20:49:39 +01:00
'sync_pwd' => sync_pwd,
2014-01-30 23:08:38 +01:00
'sync_path' => sync_path,
2014-01-29 20:49:39 +01:00
'last_update' => 0 }}
2014-01-30 23:08:38 +01:00
File.open(@file_config, 'w') do |file|
file << config.to_yaml
2014-01-29 20:49:39 +01:00
end
2014-01-30 23:08:38 +01:00
2014-01-29 20:49:39 +01:00
return true
2014-01-30 23:08:38 +01:00
rescue Exception => e
@error_msg = "#{I18n.t('error.config.write')}\n#{e}"
return false
2014-01-29 20:49:39 +01:00
end
# Check the config file
# @rtrn: true if the config file is correct
2014-02-02 10:16:10 +01:00
def checkconfig
2014-01-30 23:08:38 +01:00
config = YAML::load_file(@file_config)
@key = config['config']['key']
2014-02-02 14:20:24 +01:00
@share_keys = config['config']['share_keys']
2014-01-30 23:08:38 +01:00
@lang = config['config']['lang']
@file_gpg = config['config']['file_gpg']
@timeout_pwd = config['config']['timeout_pwd'].to_i
@sync_type = config['config']['sync_type']
@sync_host = config['config']['sync_host']
@sync_port = config['config']['sync_port']
@sync_user = config['config']['sync_user']
@sync_pwd = config['config']['sync_pwd']
@sync_path = config['config']['sync_path']
@last_update = config['config']['last_update'].to_i
if @key.empty? || @file_gpg.empty?
@error_msg = I18n.t('error.config.check')
2014-01-29 20:49:39 +01:00
return false
end
2014-01-30 23:08:38 +01:00
I18n.locale = @lang.to_sym
2014-01-29 20:49:39 +01:00
return true
2014-01-30 23:08:38 +01:00
rescue Exception => e
@error_msg = "#{I18n.t('error.config.check')}\n#{e}"
return false
2014-01-29 20:49:39 +01:00
end
# Set the last update when there is a sync
# @rtrn: true is the file has been updated
2014-01-30 23:08:38 +01:00
def set_last_update
2014-01-29 20:49:39 +01:00
config = {'config' => {'key' => @key,
2014-02-02 14:20:24 +01:00
'share_keys' => @share_keys,
2014-01-29 20:49:39 +01:00
'lang' => @lang,
'file_gpg' => @file_gpg,
'timeout_pwd' => @timeout_pwd,
2014-01-30 23:08:38 +01:00
'sync_type' => @sync_type,
2014-01-29 20:49:39 +01:00
'sync_host' => @sync_host,
'sync_port' => @sync_port,
2014-01-30 23:08:38 +01:00
'sync_user' => @sync_user,
2014-01-29 20:49:39 +01:00
'sync_pwd' => @sync_pwd,
2014-01-30 23:08:38 +01:00
'sync_path' => @sync_path,
2014-01-29 20:49:39 +01:00
'last_update' => Time.now.to_i }}
2014-01-30 23:08:38 +01:00
File.open(@file_config, 'w') do |file|
file << config.to_yaml
2014-01-29 20:49:39 +01:00
end
2014-01-30 23:08:38 +01:00
2014-01-29 20:49:39 +01:00
return true
2014-01-30 23:08:38 +01:00
rescue Exception => e
@error_msg = "#{I18n.t('error.config.write')}\n#{e}"
return false
2014-01-29 20:49:39 +01:00
end
end
end