diaspora/lib/collect_user_photos.rb
2010-11-04 10:17:19 -07:00

28 lines
748 B
Ruby

module PhotoMover
def self.move_photos(user)
Dir.chdir Rails.root
temp_dir = "tmp/exports/#{user.id}"
FileUtils::mkdir_p temp_dir
Dir.chdir 'tmp/exports'
photos = user.visible_posts(:person_id => user.person.id, :_type => 'Photo')
photos_dir = "#{user.id}/photos"
FileUtils::mkdir_p photos_dir
photos.each do |photo|
current_photo_location = "#{Rails.root}/public/uploads/images/#{photo.image_filename}"
new_photo_location = "#{photos_dir}/#{photo.image_filename}"
FileUtils::cp current_photo_location new_photo_location
end
system("tar", "cf #{user.id}.tar #{user.id}")
FileUtils::rm_r user.id, :secure => true, :force => true
"#{Rails.root}/#{temp_dir}.tar"
end
end