mirror of
https://github.com/nishiki/manage-password.git
synced 2024-11-27 15:43:04 +00:00
81 lines
1.7 KiB
Ruby
81 lines
1.7 KiB
Ruby
#!/usr/bin/ruby
|
|
# author: nishiki
|
|
# mail: nishiki@yaegashi.fr
|
|
|
|
require 'rubygems'
|
|
require 'i18n'
|
|
require 'net/ftp'
|
|
|
|
module MPW
|
|
class FTP
|
|
|
|
attr_accessor :error_msg
|
|
attr_accessor :enable
|
|
|
|
# Constructor
|
|
# @args: host -> the server host
|
|
# port -> ther connection port
|
|
# gpg_key -> the gpg key
|
|
# password -> the remote password
|
|
# suffix -> the suffix file
|
|
def initialize(host, user, password, path, port=nil)
|
|
@error_msg = nil
|
|
@enable = false
|
|
|
|
@host = host
|
|
@user = user
|
|
@password = password
|
|
@path = path
|
|
@port = port.instance_of?(Integer) ? 21 : port
|
|
end
|
|
|
|
# Connect to server
|
|
# @rtrn: false if the connection fail
|
|
def connect
|
|
Net::FTP.open(@host) do |ftp|
|
|
ftp.login(@user, @password)
|
|
@enable = true
|
|
end
|
|
rescue Exception => e
|
|
@error_msg = "#{I18n.t('error.sync.connection')}\n#{e}"
|
|
@enable = false
|
|
else
|
|
return @enable
|
|
end
|
|
|
|
# Get data on server
|
|
# @args: gpg_password -> the gpg password
|
|
# @rtrn: nil if nothing data or error
|
|
def get(file_tmp)
|
|
return false if not @enable
|
|
|
|
Net::FTP.open(@host) do |ftp|
|
|
ftp.login(@user, @password)
|
|
ftp.gettextfile(@path, file_tmp)
|
|
end
|
|
|
|
return true
|
|
rescue Exception => e
|
|
@error_msg = "#{I18n.t('error.sync.download')}\n#{e}"
|
|
return false
|
|
end
|
|
|
|
# Update the remote data
|
|
# @args: data -> the data to send on server
|
|
# @rtrn: false if there is a problem
|
|
def update(file_gpg)
|
|
return true if not @enable
|
|
|
|
Net::FTP.open(@host) do |ftp|
|
|
ftp.login(@user, @password)
|
|
ftp.puttextfile(file_gpg, @path)
|
|
end
|
|
|
|
return true
|
|
rescue Exception => e
|
|
@error_msg = "#{I18n.t('error.sync.upload')}\n#{e}"
|
|
return false
|
|
end
|
|
|
|
end
|
|
end
|