FIX: Remove auto-close topic timer on unsolved.

https://meta.discourse.org/t/unsolving-a-topic-does-not-remove-autoclose/94907
This commit is contained in:
Guo Xiang Tan 2018-08-31 12:03:42 +08:00
parent 93a64c4aa1
commit 46258a5b11
2 changed files with 70 additions and 14 deletions

View File

@ -61,25 +61,28 @@ SQL
isolate_namespace DiscourseSolved isolate_namespace DiscourseSolved
end end
AUTO_CLOSE_TOPIC_TIMER_CUSTOM_FIELD = "solved_auto_close_topic_timer_id".freeze
def self.accept_answer!(post, acting_user) def self.accept_answer!(post, acting_user)
topic = post.topic topic = post.topic
accepted_id = topic.custom_fields["accepted_answer_post_id"].to_i accepted_id = topic.custom_fields["accepted_answer_post_id"].to_i
if accepted_id > 0 if accepted_id > 0
if p2 = Post.find_by(id: accepted_id) if p2 = Post.find_by(id: accepted_id)
p2.custom_fields["is_accepted_answer"] = nil p2.custom_fields["is_accepted_answer"] = nil
p2.save! p2.save!
if defined?(UserAction::SOLVED) if defined?(UserAction::SOLVED)
UserAction.where(action_type: UserAction::SOLVED, target_post_id: p2.id).destroy_all UserAction.where(
action_type: UserAction::SOLVED,
target_post_id: p2.id
).destroy_all
end end
end end
end end
post.custom_fields["is_accepted_answer"] = "true" post.custom_fields["is_accepted_answer"] = "true"
topic.custom_fields["accepted_answer_post_id"] = post.id topic.custom_fields["accepted_answer_post_id"] = post.id
topic.save!
post.save!
if defined?(UserAction::SOLVED) if defined?(UserAction::SOLVED)
UserAction.log_action!( UserAction.log_action!(
@ -105,23 +108,40 @@ SQL
) )
end end
if (auto_close_hours = SiteSetting.solved_topics_auto_close_hours) > (0) && !topic.closed auto_close_hours = SiteSetting.solved_topics_auto_close_hours
topic.set_or_create_timer(
if (auto_close_hours > 0) && !topic.closed
topic_timer = topic.set_or_create_timer(
TopicTimer.types[:close], TopicTimer.types[:close],
auto_close_hours, auto_close_hours,
based_on_last_post: true based_on_last_post: true
) )
topic.custom_fields[
AUTO_CLOSE_TOPIC_TIMER_CUSTOM_FIELD
] = topic_timer.id
MessageBus.publish("/topic/#{topic.id}", reload_topic: true) MessageBus.publish("/topic/#{topic.id}", reload_topic: true)
end end
topic.save!
post.save!
DiscourseEvent.trigger(:accepted_solution, post) DiscourseEvent.trigger(:accepted_solution, post)
end end
def self.unaccept_answer!(post) def self.unaccept_answer!(post)
post.custom_fields["is_accepted_answer"] = nil post.custom_fields["is_accepted_answer"] = nil
post.topic.custom_fields["accepted_answer_post_id"] = nil post.topic.custom_fields["accepted_answer_post_id"] = nil
post.topic.save! topic = post.topic
if timer_id = topic.custom_fields[AUTO_CLOSE_TOPIC_TIMER_CUSTOM_FIELD]
topic_timer = TopicTimer.find_by(id: timer_id)
topic_timer.destroy! if topic_timer
topic.custom_fields[AUTO_CLOSE_TOPIC_TIMER_CUSTOM_FIELD] = nil
end
topic.save!
post.save! post.save!
# TODO remove_action! does not allow for this type of interface # TODO remove_action! does not allow for this type of interface
@ -141,7 +161,6 @@ SQL
) )
notification.destroy! if notification notification.destroy! if notification
DiscourseEvent.trigger(:unaccepted_solution, post) DiscourseEvent.trigger(:unaccepted_solution, post)
end end
end end

View File

@ -41,20 +41,32 @@ RSpec.describe "Managing Posts solved status" do
end end
it 'can mark a post as the accepted answer correctly' do it 'can mark a post as the accepted answer correctly' do
freeze_time
post "/solution/accept.json", params: { id: p1.id } post "/solution/accept.json", params: { id: p1.id }
expect(response.status).to eq(200)
expect(p1.reload.custom_fields["is_accepted_answer"]).to eq("true") expect(p1.reload.custom_fields["is_accepted_answer"]).to eq("true")
expect(topic.public_topic_timer.status_type).to eq(TopicTimer.types[:close]) expect(topic.public_topic_timer.status_type)
.to eq(TopicTimer.types[:close])
expect(topic.custom_fields[
DiscourseSolved::AUTO_CLOSE_TOPIC_TIMER_CUSTOM_FIELD
].to_i).to eq(topic.public_topic_timer.id)
expect(topic.public_topic_timer.execute_at) expect(topic.public_topic_timer.execute_at)
.to be_within(1.second).of(Time.zone.now + 2.hours) .to eq(Time.zone.now + 2.hours)
expect(topic.public_topic_timer.based_on_last_post).to eq(true) expect(topic.public_topic_timer.based_on_last_post).to eq(true)
end end
it 'does not set a timer when the topic is closed' do it 'does not set a timer when the topic is closed' do
topic.update!(closed: true) topic.update!(closed: true)
post "/solution/accept.json", params: { id: p1.id } post "/solution/accept.json", params: { id: p1.id }
expect(response.status).to eq(200)
p1.reload p1.reload
topic.reload topic.reload
@ -63,4 +75,29 @@ RSpec.describe "Managing Posts solved status" do
expect(topic.closed).to eq(true) expect(topic.closed).to eq(true)
end end
end end
describe '#unaccept' do
before do
sign_in(user)
end
describe 'when solved_topics_auto_close_hours is enabled' do
before do
SiteSetting.solved_topics_auto_close_hours = 2
DiscourseSolved.accept_answer!(p1, user)
end
it 'should unmark the post as solved' do
expect do
post "/solution/unaccept.json", params: { id: p1.id }
end.to change { topic.reload.public_topic_timer }.to(nil)
expect(response.status).to eq(200)
p1.reload
expect(p1.custom_fields["is_accepted_answer"]).to eq(nil)
expect(p1.topic.custom_fields["accepted_answer_post_id"]).to eq(nil)
end
end
end
end end