diaspora/lib/collect_user_photos.rb
Raphael 78f2f74186 Fix photo exporting, I'm not sure how to use
Kernel::system in this case, so using ``
2010-11-18 16:41:34 -08:00

25 lines
806 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
`tar c #{user.id} > #{user.id}.tar`
#system("tar", "c", "#{user.id}",">", "#{user.id}.tar")
FileUtils::rm_r "#{user.id.to_s}/", :secure => true, :force => true
"#{Rails.root}/#{temp_dir}.tar"
end
end