Skip to content

Instantly share code, notes, and snippets.

@ismasan
Last active September 28, 2018 14:09
Show Gist options
  • Save ismasan/4b80aa53c3bb66c4b9aad904d3340688 to your computer and use it in GitHub Desktop.
Save ismasan/4b80aa53c3bb66c4b9aad904d3340688 to your computer and use it in GitHub Desktop.
Download all product images for a Bootic shop
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