1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
|
require 'net/sftp'
require 'find'
class SftpDirPublisher
CHECKSUM_FILENAME = ".checksums"
attr_reader :host, :username, :password, :remote_dir, :local_dir
def initialize(host, username, password, remote_dir, local_dir)
@host = host
@username = username
@password = password
@remote_dir = remote_dir
@local_dir = local_dir
@verbose = true
end
def upload
create_checksums
puts_if_verbose "Connecting to #{@host}..."
Net::SFTP.start(@host, @username, @password, :timeout=>30) do |sftp|
puts_if_verbose "Fetching checksums..."
local_checksums = YAML::load(File.open( local_path(CHECKSUM_FILENAME) ))
remote_checksums = {}
begin
checksums_src = ''
sftp.open_handle( server_path(CHECKSUM_FILENAME) ) do |handle|
checksums_src = sftp.read(handle)
end
remote_checksums = YAML::load(checksums_src) unless checksums_src.nil? or checksums_src==''
rescue Net::SFTP::Operations::StatusException=>se
end
puts_if_verbose "Comparing checksum data..."
to_upload, to_remove = hash_diff(local_checksums, remote_checksums)
if to_upload.length > 0 or to_remove.length > 0
puts_if_verbose "Differences found:"
to_upload.each {|f| puts_if_verbose " - (Upload) #{f}" }
to_remove.each {|f| puts_if_verbose " - (Delete) #{f}"}
puts_if_verbose "Beginning sync..."
to_upload.each do |filename|
begin
puts_if_verbose " - #{remote_path(filename)}"
dir_name = File.dirname(filename)
dir_segs = dir_name.split('/')
prog_path = []
dir_segs.each do |partial_dir|
begin
prog_path << partial_dir
sftp.mkdir( remote_path( prog_path ), :permissions=>0755 )
puts_if_verbose " + #{remote_path( prog_path )}"
rescue Net::SFTP::Operations::StatusException=>se
end
end
sftp.put_file local_path(filename), remote_path(filename)
sftp.open_handle( remote_path(filename) ) do |handle|
sftp.fsetstat( handle, :permissions=>0644 )
end
rescue Net::SFTP::Operations::StatusException=>se
puts_if_verbose " ! Error uploading '#{filename}': #{se}"
puts_if_verbose; puts_if_verbose "Halted execution of upload."
exit(1)
end
end
to_remove.each do |filename|
begin
sftp.remove remote_path(filename)
puts_if_verbose " x #{remote_path(filename)}"
rescue
puts_if_verbose " ! Error removing '#{filename}': #{$!}"
end
end
begin
sftp.put_file local_path(CHECKSUM_FILENAME), remote_path(CHECKSUM_FILENAME)
sftp.open_handle( remote_path(CHECKSUM_FILENAME) ) do |handle|
sftp.fsetstat( handle, :permissions=>0644 )
end
rescue
puts_if_verbose " ! Error uploading '#{CHECKSUM_FILENAME}': #{$!}"
end
summary = "#{to_upload.length} file(s) uploaded"
summary += ", #{to_remove.length} files(s) deleted" if to_remove.length > 0
puts summary
else
puts "No changes made. The server is up to date!"
end
puts "Done."
end
end
protected
def create_checksums
checksums = generate_from(@local_dir)
File.open(local_path(CHECKSUM_FILENAME), 'w') do |f|
f.write checksums.to_yaml
end
checksums
end
def hash_diff(source={}, target={})
src_files = source.fetch('files', {})
tgt_files = target.fetch('files', {})
to_update = []; to_delete = []; to_upload = []
tgt_files.each do |filename, checksum|
if src_files.has_key? filename
to_update << filename unless src_files[filename] == checksum
else
to_delete << filename
end
end
to_upload = src_files.keys - tgt_files.keys
[[to_upload, to_update].flatten, to_delete]
end
def generate_from(cache_dir)
checksums = { 'generated_on'=>Time.now, 'files'=>{} }
puts "Generating checksums from #{cache_dir}"
Find.find( cache_dir ) do |f|
next if File.directory?( f )
checksums['files'][f.gsub("#{cache_dir}/", '')] = Digest::MD5.hexdigest( File.read(f) )
end
checksums
end
def server_path(path)
[@remote_dir, path].flatten.join('/')
end
alias_method :remote_path, :server_path
def local_path(path)
File.join(@local_dir, path)
end
def puts_if_verbose(msg='')
puts(msg) if @verbose
end
end
|