2017-05-22 03:01:33 -04:00
|
|
|
class TopicTimestampChanger
|
2017-05-22 04:03:49 -04:00
|
|
|
class InvalidTimestampError < StandardError; end
|
|
|
|
|
|
|
|
def initialize(timestamp:, topic: nil, topic_id: nil)
|
|
|
|
@topic = topic || Topic.with_deleted.find(topic_id)
|
2015-07-25 12:06:49 -04:00
|
|
|
@posts = @topic.posts
|
2017-05-22 04:03:49 -04:00
|
|
|
@current_timestamp = Time.zone.now
|
|
|
|
@timestamp = Time.zone.at(timestamp)
|
|
|
|
|
|
|
|
raise InvalidTimestampError if @timestamp.to_f > @current_timestamp.to_f
|
|
|
|
|
2015-07-25 12:06:49 -04:00
|
|
|
@time_difference = calculate_time_difference
|
|
|
|
end
|
|
|
|
|
|
|
|
def change!
|
|
|
|
ActiveRecord::Base.transaction do
|
2015-10-19 22:12:52 -04:00
|
|
|
last_posted_at = @timestamp
|
2015-07-25 12:06:49 -04:00
|
|
|
|
|
|
|
@posts.each do |post|
|
|
|
|
if post.is_first_post?
|
|
|
|
update_post(post, @timestamp)
|
|
|
|
else
|
2015-10-19 22:12:52 -04:00
|
|
|
new_created_at = Time.at(post.created_at.to_f + @time_difference)
|
2017-05-22 04:03:49 -04:00
|
|
|
new_created_at = @current_timestamp if new_created_at > @current_timestamp
|
2015-10-19 22:12:52 -04:00
|
|
|
last_posted_at = new_created_at if new_created_at > last_posted_at
|
|
|
|
update_post(post, new_created_at)
|
2015-07-25 12:06:49 -04:00
|
|
|
end
|
|
|
|
end
|
2015-10-19 22:12:52 -04:00
|
|
|
|
|
|
|
update_topic(last_posted_at)
|
2017-04-03 05:28:41 -04:00
|
|
|
|
|
|
|
yield(@topic) if block_given?
|
2015-07-25 12:06:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Burst the cache for stats
|
|
|
|
[AdminDashboardData, About].each { |klass| $redis.del klass.stats_cache_key }
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def calculate_time_difference
|
|
|
|
@timestamp - @topic.created_at
|
|
|
|
end
|
|
|
|
|
2015-10-19 22:12:52 -04:00
|
|
|
def update_topic(last_posted_at)
|
2015-07-25 12:06:49 -04:00
|
|
|
@topic.update_attributes(
|
|
|
|
created_at: @timestamp,
|
|
|
|
updated_at: @timestamp,
|
2015-10-19 22:12:52 -04:00
|
|
|
bumped_at: @timestamp,
|
|
|
|
last_posted_at: last_posted_at
|
2015-07-25 12:06:49 -04:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_post(post, timestamp)
|
|
|
|
post.update_attributes(created_at: timestamp, updated_at: timestamp)
|
|
|
|
end
|
|
|
|
end
|