-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.rb
455 lines (345 loc) · 9.56 KB
/
app.rb
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
require 'bundler/setup'
require 'dotenv'
require 'rack/oauth2'
require 'exif'
require 'fileutils'
Dotenv.load
module AwaitJobs
def await_jobs
print "."
@jobs.select! do |job_id|
data = @client.post('move_batch/check', {
async_job_id: job_id
})
if data['.tag'] == 'failed'
@failed_jobs << job_id
end
# Only keep jobs that are still in progress
data['.tag'] == 'in_progress'
end
if @jobs.any?
sleep 5
await_jobs
else
puts "\n-> All batch move jobs complete."
end
end
def handle_failed_jobs
if @failed_jobs.any?
print " #{@failed_jobs.size} jobs failed:\n"
@failed_jobs.each { |job_id| puts " - #{job_id}" }
end
end
end
class Client
def initialize(host)
@token = Rack::OAuth2::AccessToken::Bearer.new(access_token: ENV['AUTH_TOKEN'])
@host = host
@json = @host == 'api.dropboxapi.com'
end
def post(endpoint, data = {})
if @json
body = data.to_json
headers = {
"Content-Type" => "application/json"
}
else
body = nil
headers = {
"Dropbox-API-Arg" => data.to_json
}
end
response = @token.post("https://#{@host}/2/files/#{endpoint}", body, headers)
@json ? JSON.parse(response.body) : response.body
end
end
class DateOrganiser
include AwaitJobs
def initialize
@client = Client.new('api.dropboxapi.com')
@files = {}
@folders = []
@jobs = []
@failed_jobs = []
end
def run!
puts "DateOrganiser"
puts "=============\n\n"
get_files
create_folders if (@files.keys - @folders).any?
move_files if @files.values.flatten.any?
if @jobs.any?
puts "Awaiting #{@jobs.length} batch move jobs:"
print "\n-> ."
await_jobs
handle_failed_jobs
end
puts "Finished.\n\n"
end
def get_files
print "Retrieving directory listing for 'Camera Uploads'..."
data = @client.post('list_folder', {
path: "/Camera Uploads",
recursive: false,
include_media_info: false,
include_deleted: false,
include_has_explicit_shared_members: false
})
parse_files_data(data)
puts " Done."
puts "-> Found #{@files.values.flatten.length} files to process, covering #{@files.keys.length} months."
puts "-> #{(@files.keys - @folders).length} folders need to be created."
end
def get_more_files(cursor)
data = @client.post('list_folder/continue', {
cursor: cursor
})
parse_files_data(data)
end
def parse_files_data(data)
data['entries'].each do |entry|
if entry['.tag'] == 'file'
# Parse the date group from the filename
# Example: "2012-11-18 05.36.26.jpg"
group = entry['name'][/^(\d{4}-\d{2})-\d{2}/, 1]
@files[group] ||= []
@files[group] << entry
elsif entry['.tag'] == 'folder'
@folders << entry['name']
end
end
if data['has_more']
get_more_files(data['cursor'])
end
end
def create_folders
(@files.keys - @folders).each do |folder_name|
print "Creating folder '#{folder_name}'..."
@client.post('create_folder', {
path: "/Camera Uploads/#{folder_name}"
})
puts " Done."
end
end
def move_files
print "Moving #{@files.values.flatten.length} files..."
entries = @files.reduce([]) do |entries, (group, files)|
entries += files.map do |entry|
{
from_path: entry['path_display'],
to_path: "/Camera Uploads/#{group}/#{entry['name']}"
}
end
end
data = @client.post('move_batch', {
entries: entries
})
puts " Done."
if data['.tag'] == 'async_job_id'
puts "-> Job ID: #{data['async_job_id']}"
@jobs << data['async_job_id']
end
end
end
class CameraOrganiser
IPHONE_NAMES = [
'iPhone SE',
'iPhone 5c',
'iPhone 3GS'
]
FOLDER_NAMES = {
iphone: 'iPhone',
videos: 'Videos',
other: 'Other'
}
include AwaitJobs
def initialize
@client = Client.new('api.dropboxapi.com')
@dl_client = Client.new('content.dropboxapi.com')
@jobs = []
@failed_jobs = []
end
def run!
puts "CameraOrganiser"
puts "===============\n\n"
get_folders
process_folders
if @jobs.any?
puts "Awaiting #{@jobs.length} batch move jobs:"
print "\n-> ."
await_jobs
handle_failed_jobs
end
puts "Finished.\n\n"
end
def get_folders
print "Retrieving list of folders in 'Camera Uploads'..."
data = @client.post('list_folder', {
path: '/Camera Uploads'
})
@folders = data['entries']
.select { |entry| entry['.tag'] == 'folder' }
.map { |entry| entry['path_display'] }
.sort
puts " Done."
end
def process_folders
puts "-> Processing #{@folders.length} folders."
@folders.each do |folder_path|
process_folder(folder_path)
end
end
def process_folder(folder_path)
print "Retrieving directory listing for '#{folder_path}'..."
data = @client.post('list_folder', {
path: folder_path
})
puts " Done."
puts "-> Scanning #{data['entries'].length} entries."
files = []
has_other_folder = false
has_videos_folder = false
has_iphone_folder = false
data['entries'].each do |entry|
if entry['.tag'] == 'folder'
has_other_folder = true if entry['name'] == FOLDER_NAMES[:other]
has_videos_folder = true if entry['name'] == FOLDER_NAMES[:videos]
has_iphone_folder = true if entry['name'] == FOLDER_NAMES[:iphone]
end
files << entry if entry['.tag'] == 'file'
end
grouped_files = files.reduce({ iphone: [], videos: [], other: [] }) do |hash, entry|
group = process_file(entry)
hash[group] << entry
hash
end
create_folder(folder_path, @other_folder_name) unless has_other_folder
create_folder(folder_path, @videos_folder_name) unless has_videos_folder
create_folder(folder_path, @iphone_folder_name) unless has_iphone_folder
grouped_files.each do |group, files|
destination = "#{folder_path}/#{FOLDER_NAMES[group]}"
move_files(files, destination) if files.any?
end
end
def process_file(entry)
# return if @processed_files.include?(entry['path_display'])
puts "Processing #{entry['name']}"
ext = entry['name'].split('.').last
if ext =~ /mov/i
return :videos
end
download_and_save_file(entry)
process_temp_file(entry)
# @processed_files << entry['path_display']
# File.open(@processed_file_path, 'a') do |file|
# file.puts entry['path_display']
# end
end
def download_and_save_file(entry)
body = @dl_client.post('download', {
path: entry['path_display']
})
File.open('./temp', 'w') { |file| file.write(body) }
end
def process_temp_file(entry)
exif = Exif::Data.new('./temp')
IPHONE_NAMES.include?(exif.model) ? :iphone : :other
rescue => e
# Can't read EXIF - not likely to be an iPhone photo
:other
ensure
File.unlink('./temp')
end
def move_files(files, folder_path)
entries = files.map do |entry|
{
from_path: entry['path_display'],
to_path: "#{folder_path}/#{entry['name']}"
}
end
print "Moving #{files.length} files into '#{folder_path}'..."
data = @client.post('move_batch', {
entries: entries
})
puts " Done."
if data['.tag'] == 'async_job_id'
puts "-> Job ID: #{data['async_job_id']}"
@jobs << data['async_job_id']
end
if @jobs.size > 10
puts "--- Reached max async jobs, awaiting..."
await_jobs
end
end
def create_folder(folder_path, folder_name)
print "Creating folder '#{folder_path}/#{folder_name}'..."
@client.post('create_folder', {
path: "#{folder_path}/#{folder_name}"
})
puts " Done."
end
end
class Downloader
include AwaitJobs
def initialize
@client = Client.new('api.dropboxapi.com')
@dl_client = Client.new('content.dropboxapi.com')
@target_directory = ENV['DOWNLOAD_ROOT']
@other_folder_name = 'Other'
end
def run!
puts "Downloader"
puts "===============\n\n"
get_folders
process_folders
puts "Finished.\n\n"
end
def get_folders
print "Retrieving list of folders in 'Camera Uploads'..."
data = @client.post('list_folder', {
path: '/Camera Uploads'
})
@folders = data['entries']
.select { |entry| entry['.tag'] == 'folder' }
.map { |entry| entry['path_display'] }
.sort
puts " Done."
puts "-> Found #{@folders.length} folders."
end
def process_folders
@folders.each do |folder_path|
process_folder(folder_path)
end
end
def process_folder(folder_path)
download_files(folder_path)
download_files("#{folder_path}/#{@other_folder_name}")
end
def download_files(folder_path)
files = get_files(folder_path)
print "Downloading #{files.length} files in '#{folder_path}'..."
files.each do |entry|
download_file(entry)
end
puts " Done."
end
def get_files(folder_path)
data = @client.post('list_folder', {
path: folder_path
})
if data['error']
return []
end
data['entries'].select { |entry| entry['.tag'] == 'file' }
end
def download_file(entry)
body = @dl_client.post('download', {
path: entry['path_display']
})
target_path = "#{@target_directory}#{entry['path_display']}"
target_directory = target_path.split('/').tap(&:pop).join('/')
FileUtils.mkdir_p(target_directory)
File.open(target_path, 'a') # Create the file
File.open(target_path, 'w') { |file| file.write(body) }
end
end