Last active
September 28, 2018 14:09
-
-
Save ismasan/4b80aa53c3bb66c4b9aad904d3340688 to your computer and use it in GitHub Desktop.
Download all product images for a Bootic shop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'open-uri' | |
require 'fileutils' | |
## USAGE | |
# S=<subdominio> bootic runner images.rb | |
# | |
subdomain = ENV.fetch('S') | |
s = root.all_shops(subdomains: subdomain).first | |
prs = s.products(status: 'all').full_set | |
shop_dir = File.join(".", subdomain) | |
prs.each do |pr| | |
pr = pr.self | |
next unless pr.has?(:images) | |
pr.images.each do |img| | |
prod_dir = File.join(shop_dir, pr.slug) | |
begin | |
file = open(img.rels[:original].href) | |
FileUtils.mkdir_p prod_dir | |
path = File.join(".", prod_dir, img.file_name) | |
File.open(path, 'wb') do |io| | |
io.write file.read | |
end | |
puts "downloaded #{path}" | |
rescue StandardError => e | |
puts "ERR: #{path} - #{e.class.name} #{e.message}" | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment