mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
Rename PostTimestampChanger
-> TopicTimestampChanger
.
This commit is contained in:
parent
f57914ccd8
commit
4382a0bb07
@ -558,8 +558,10 @@ class TopicsController < ApplicationController
|
|||||||
guardian.ensure_can_change_post_timestamps!
|
guardian.ensure_can_change_post_timestamps!
|
||||||
|
|
||||||
begin
|
begin
|
||||||
PostTimestampChanger.new( topic_id: params[:topic_id].to_i,
|
TopicTimestampChanger.new(
|
||||||
timestamp: params[:timestamp].to_i ).change!
|
topic_id: params[:topic_id].to_i,
|
||||||
|
timestamp: params[:timestamp].to_i
|
||||||
|
).change!
|
||||||
|
|
||||||
render json: success_json
|
render json: success_json
|
||||||
rescue ActiveRecord::RecordInvalid
|
rescue ActiveRecord::RecordInvalid
|
||||||
|
@ -7,7 +7,7 @@ module Jobs
|
|||||||
topic = topic_timer.topic
|
topic = topic_timer.topic
|
||||||
return if topic.blank?
|
return if topic.blank?
|
||||||
|
|
||||||
PostTimestampChanger.new(timestamp: Time.zone.now, topic: topic).change! do
|
TopicTimestampChanger.new(timestamp: Time.zone.now, topic: topic).change! do
|
||||||
if topic.private_message?
|
if topic.private_message?
|
||||||
topic = TopicConverter.new(topic, Discourse.system_user)
|
topic = TopicConverter.new(topic, Discourse.system_user)
|
||||||
.convert_to_public_topic(topic_timer.category_id)
|
.convert_to_public_topic(topic_timer.category_id)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
class PostTimestampChanger
|
class TopicTimestampChanger
|
||||||
def initialize(params)
|
def initialize(params)
|
||||||
@topic = params[:topic] || Topic.with_deleted.find(params[:topic_id])
|
@topic = params[:topic] || Topic.with_deleted.find(params[:topic_id])
|
||||||
@posts = @topic.posts
|
@posts = @topic.posts
|
||||||
@ -9,12 +9,14 @@ class PostTimestampChanger
|
|||||||
def change!
|
def change!
|
||||||
ActiveRecord::Base.transaction do
|
ActiveRecord::Base.transaction do
|
||||||
last_posted_at = @timestamp
|
last_posted_at = @timestamp
|
||||||
|
now = Time.zone.now
|
||||||
|
|
||||||
@posts.each do |post|
|
@posts.each do |post|
|
||||||
if post.is_first_post?
|
if post.is_first_post?
|
||||||
update_post(post, @timestamp)
|
update_post(post, @timestamp)
|
||||||
else
|
else
|
||||||
new_created_at = Time.at(post.created_at.to_f + @time_difference)
|
new_created_at = Time.at(post.created_at.to_f + @time_difference)
|
||||||
|
new_created_at = now if new_created_at > now
|
||||||
last_posted_at = new_created_at if new_created_at > last_posted_at
|
last_posted_at = new_created_at if new_created_at > last_posted_at
|
||||||
update_post(post, new_created_at)
|
update_post(post, new_created_at)
|
||||||
end
|
end
|
@ -1,6 +1,6 @@
|
|||||||
require 'rails_helper'
|
require 'rails_helper'
|
||||||
|
|
||||||
describe PostTimestampChanger do
|
describe TopicTimestampChanger do
|
||||||
describe "change!" do
|
describe "change!" do
|
||||||
let(:old_timestamp) { Time.zone.now }
|
let(:old_timestamp) { Time.zone.now }
|
||||||
let(:new_timestamp) { old_timestamp + 1.day }
|
let(:new_timestamp) { old_timestamp + 1.day }
|
||||||
@ -9,25 +9,31 @@ describe PostTimestampChanger do
|
|||||||
let!(:p2) { Fabricate(:post, topic: topic, created_at: old_timestamp + 1.day) }
|
let!(:p2) { Fabricate(:post, topic: topic, created_at: old_timestamp + 1.day) }
|
||||||
let(:params) { { topic_id: topic.id, timestamp: new_timestamp.to_f } }
|
let(:params) { { topic_id: topic.id, timestamp: new_timestamp.to_f } }
|
||||||
|
|
||||||
it 'changes the timestamp of the topic and opening post' do
|
context 'new timestamp is in the future' do
|
||||||
PostTimestampChanger.new(params).change!
|
let(:new_timestamp) { old_timestamp + 2.day }
|
||||||
|
|
||||||
topic.reload
|
it 'changes the timestamp of the topic and opening post' do
|
||||||
[:created_at, :updated_at, :bumped_at].each do |column|
|
Timecop.freeze do
|
||||||
expect(topic.public_send(column)).to be_within_one_second_of(new_timestamp)
|
TopicTimestampChanger.new(params).change!
|
||||||
|
|
||||||
|
topic.reload
|
||||||
|
[:created_at, :updated_at, :bumped_at].each do |column|
|
||||||
|
expect(topic.public_send(column)).to be_within_one_second_of(new_timestamp)
|
||||||
|
end
|
||||||
|
|
||||||
|
p1.reload
|
||||||
|
[:created_at, :updated_at].each do |column|
|
||||||
|
expect(p1.public_send(column)).to be_within_one_second_of(new_timestamp)
|
||||||
|
end
|
||||||
|
|
||||||
|
expect(topic.last_posted_at).to be_within_one_second_of(p2.reload.created_at)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
p1.reload
|
|
||||||
[:created_at, :updated_at].each do |column|
|
|
||||||
expect(p1.public_send(column)).to be_within_one_second_of(new_timestamp)
|
|
||||||
end
|
|
||||||
|
|
||||||
expect(topic.last_posted_at).to be_within_one_second_of(p2.reload.created_at)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
describe 'predated timestamp' do
|
describe 'predated timestamp' do
|
||||||
it 'updates the timestamp of posts in the topic with the time difference applied' do
|
it 'updates the timestamp of posts in the topic with the time difference applied' do
|
||||||
PostTimestampChanger.new(params).change!
|
TopicTimestampChanger.new(params).change!
|
||||||
|
|
||||||
p2.reload
|
p2.reload
|
||||||
[:created_at, :updated_at].each do |column|
|
[:created_at, :updated_at].each do |column|
|
||||||
@ -40,7 +46,7 @@ describe PostTimestampChanger do
|
|||||||
let(:new_timestamp) { old_timestamp - 1.day }
|
let(:new_timestamp) { old_timestamp - 1.day }
|
||||||
|
|
||||||
it 'updates the timestamp of posts in the topic with the time difference applied' do
|
it 'updates the timestamp of posts in the topic with the time difference applied' do
|
||||||
PostTimestampChanger.new(params).change!
|
TopicTimestampChanger.new(params).change!
|
||||||
|
|
||||||
p2.reload
|
p2.reload
|
||||||
[:created_at, :updated_at].each do |column|
|
[:created_at, :updated_at].each do |column|
|
||||||
@ -53,7 +59,7 @@ describe PostTimestampChanger do
|
|||||||
$redis.set AdminDashboardData.stats_cache_key, "X"
|
$redis.set AdminDashboardData.stats_cache_key, "X"
|
||||||
$redis.set About.stats_cache_key, "X"
|
$redis.set About.stats_cache_key, "X"
|
||||||
|
|
||||||
PostTimestampChanger.new(params).change!
|
TopicTimestampChanger.new(params).change!
|
||||||
|
|
||||||
expect($redis.get(AdminDashboardData.stats_cache_key)).to eq(nil)
|
expect($redis.get(AdminDashboardData.stats_cache_key)).to eq(nil)
|
||||||
expect($redis.get(About.stats_cache_key)).to eq(nil)
|
expect($redis.get(About.stats_cache_key)).to eq(nil)
|
Loading…
x
Reference in New Issue
Block a user