458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
|
# File 'lib/cnvrg/files.rb', line 458
def download_multpile_files_s3(files, project_home)
begin
props = Cnvrg::Helpers.get_s3_props(files)
client = props[:client]
iv = props[:iv]
key = props[:key]
bucket = props[:bucket]
download_succ_count = 0
parallel_options = {
:progress => {
:title => "Download Progress",
:progress_mark => '=',
:format => "%b>>%i| %p%% %t",
:starting_at => 0,
:total => files["keys"].size,
:autofinish => true
},
in_threads: Cnvrg::Helpers.parallel_threads,
isolation: true
}
Parallel.map(files["keys"], parallel_options) do |f|
file_path = f["name"]
if file_path.end_with? "/"
if download_dir(file_path, file_path, project_home)
download_succ_count += 1
else
return Cnvrg::Result.new(false,"Could not create directory: #{file_path}")
raise Parallel::Kill
end
else
begin
file_key = Cnvrg::Helpers.decrypt(key,iv, f["path"])
resp = false
File.open(project_home+"/"+file_path, 'w+') do |file|
resp = client.get_object({bucket:bucket,
key:file_key}, target: file)
end
if resp
download_succ_count +=1
else
return Cnvrg::Result.new(false,"Could not create file: #{file_path}")
end
rescue => e
return Cnvrg::Result.new(false,"Could not create file: #{file_path}", e.message, e.backtrace)
raise Parallel::Kill
end
end
end
if download_succ_count == files["keys"].size
return Cnvrg::Result.new(true,"Done.\nDownloaded #{download_succ_count} files")
end
rescue => e
return Cnvrg::Result.new(false,"Could not download some files", e.message, e.backtrace)
end
end
|