diaspora/lib/share_visibility_converter.rb
2012-09-15 18:52:12 +02:00

53 lines
1.6 KiB
Ruby

#we dont have the environment, and it is not carring over from the migration
unless defined?(Person)
class Person < ActiveRecord::Base
belongs_to :owner, :class_name => 'User'
end
end
unless defined?(User)
class User < ActiveRecord::Base
serialize :hidden_shareables, Hash
end
end
unless defined?(Contact)
class Contact < ActiveRecord::Base
belongs_to :user
end
end
unless defined?(ShareVisibility)
class ShareVisibility < ActiveRecord::Base
belongs_to :contact
end
end
class ShareVisibilityConverter
RECENT = 2 # number of weeks to do in the migration
def self.copy_hidden_share_visibilities_to_users(only_recent = false)
query = ShareVisibility.where(:hidden => true).includes(:contact => :user)
query = query.where('share_visibilities.updated_at > ?', RECENT.weeks.ago) if only_recent
count = query.count
puts "Updating #{count} records in batches of 1000..."
batch_count = 1
query.find_in_batches do |visibilities|
puts "Updating batch ##{batch_count} of #{(count/1000)+1}..."
batch_count += 1
visibilities.each do |visibility|
begin
type = visibility.shareable_type
id = visibility.shareable_id.to_s
u = visibility.contact.user
u.hidden_shareables ||= {}
u.hidden_shareables[type] ||= []
u.hidden_shareables[type] << id unless u.hidden_shareables[type].include?(id)
u.save!(:validate => false)
rescue => e
puts "ERROR: #{e.message} skipping pv with id: #{visibility.id}"
end
end
end
end
end