Last active
December 17, 2015 02:18
-
-
Save kshsieh/5534202 to your computer and use it in GitHub Desktop.
thoughts?
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
# note that these need to be viewable ids | |
vagrant_img_ids = [] | |
# try setting attachment_meta to nil and set_metadata! | |
# if that doesn't work add it to a new array and check the bucket for duplicate original images | |
Image.where(:viewable_type => 'User::Info').each do |img| | |
if img.attachment.width(:fw_500) == nil | |
img.update_attribute(:attachment_meta, nil) | |
img.set_metadata! | |
# check again if it didn't work, well fuck, check the bucket | |
if img.attachment.width(:fw_500) == nil | |
vagrant_img_ids << img.viewable_id | |
end | |
end | |
end | |
connection = Fog::Storage.new({ | |
:provider => 'AWS', | |
:aws_access_key_id => CONFIG[:access_key_id], | |
:aws_secret_access_key => CONFIG[:secret_access_key] | |
}) | |
bucket = connection.directories.get('artsicledev') | |
# go through remaining images | |
# check if buckets have duplicate original images | |
# if so find the one that has 0 content, it is bad file | |
# delete it and make sure the good file's filename is normalized? | |
outliers = [] | |
files_to_destroy = [] | |
vagrant_img_ids.each do |img| | |
files = bucket.files.all({'prefix' => "assets/avatar/#{img}/original"}) | |
case files.count | |
when 1 | |
# s'all good | |
when 2 | |
# use normalized file name and replace data with correct data | |
# normalized file name is empty and will be named bad_file | |
# good_file has image data but incorrect file name | |
files.each do |file| | |
if file.content_length == 0 | |
bad_file = file | |
else | |
good_file = file | |
end | |
right_key = bad_file.key | |
good_file.copy(bucket.key, right_key) | |
files_to_destroy << good_file.key | |
img.attachment.reprocess! | |
end | |
else | |
outliers << img | |
end | |
end | |
outliers | |
files_to_destroy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment