Skip to content

Commit 2b6e17d

Browse files
authored
FEATURE: Prevents assign notification & change status on solved (#285)
* FEATURE: Prevents assign notification & change status on solved Relates to this [topic](https://meta.discourse.org/t/assign-plugin-for-informatica/256974/94) Add an event listener to `accepted_solution` event Add `assigns_reminder_assigned_topics_query` modifier to not notify if `prevent_assign_notification` setting is on. Add settings to prevent assign notification and change status on solved * DEV: Address review comments Update SiteSettings names. * DEV(WIP): Add tests for integration with discourse-assign Add test for integration with discourse-assign plugin checks if the assignment status is moved to `Done` * DEV: lint solved_spec.rb * DEV: Update test where it updates all assignments Change `on(:accepted_solution)` is defined Update test to use acting_user instead of admin * DEV: lint & add tests for assigns_reminder_assigned_topics_query Linted and added tests for `assigns_reminder_assigned_topics_query` modifier. * DEV: Update tests based on review feedback change plugin_initializer location update spec with new tests to test integration with discourse-assign * DEV: Add describe to spec for discourse-assign integration tests * DEV: update describe name for discourse-assing spec integration * DEV: Add more tests to spec for discourse-assign integration * DEV: Lint solved_spec * DEV: Lint and update spec to not have `p1` topic inside
1 parent 2c96c5b commit 2b6e17d

File tree

6 files changed

+114
-0
lines changed

6 files changed

+114
-0
lines changed

about.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"tests": {
3+
"requiredPlugins": [
4+
"https://github.com/discourse/discourse-assign"
5+
]
6+
}
7+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# frozen_string_literal: true
2+
3+
module DiscourseSolved
4+
class PluginInitializer
5+
attr_reader :plugin
6+
7+
def initialize(plugin)
8+
@plugin = plugin
9+
end
10+
11+
def apply_plugin_api
12+
# this method should be overridden by subclasses
13+
raise NotImplementedError
14+
end
15+
end
16+
17+
class AssignsReminderForTopicsQuery < PluginInitializer
18+
def apply_plugin_api
19+
plugin.register_modifier(:assigns_reminder_assigned_topics_query) do |query|
20+
next query if !SiteSetting.ignore_solved_topics_in_assigned_reminder
21+
query.where.not(
22+
id:
23+
TopicCustomField.where(
24+
name: ::DiscourseSolved::ACCEPTED_ANSWER_POST_ID_CUSTOM_FIELD,
25+
).pluck(:topic_id),
26+
)
27+
end
28+
end
29+
end
30+
end

config/locales/server.en.yml

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ en:
1111
solved_topics_auto_close_hours: "Auto close topic (n) hours after the last reply once the topic has been marked as solved. Set to 0 to disable auto closing."
1212
show_filter_by_solved_status: "Show a dropdown to filter a topic list by solved status."
1313
notify_on_staff_accept_solved: "Send notification to the topic creator when a post is marked as solution by a staff."
14+
ignore_solved_topics_in_assigned_reminder: "Prevent assigned reminder from including solved topics. only relevant when discourse-assign."
15+
assignment_status_on_solve: "When a topic is solved update all assignments to this status"
1416
disable_solved_education_message: "Disable education message for solved topics."
1517
accept_solutions_topic_author: "Allow the topic author to accept a solution."
1618
solved_add_schema_markup: "Add QAPage schema markup to HTML."

config/settings.yml

+5
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ discourse_solved:
3232
client: true
3333
notify_on_staff_accept_solved:
3434
default: false
35+
ignore_solved_topics_in_assigned_reminder:
36+
default: false
37+
assignment_status_on_solve:
38+
type: string
39+
default: ""
3540
disable_solved_education_message:
3641
default: false
3742
accept_solutions_topic_author:

plugin.rb

+12
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ class Engine < ::Rails::Engine
4545
require_relative "app/lib/web_hook_extension"
4646
require_relative "app/serializers/concerns/topic_answer_mixin"
4747

48+
require_relative "app/lib/plugin_initializers/assigned_reminder_exclude_solved"
49+
DiscourseSolved::AssignsReminderForTopicsQuery.new(self).apply_plugin_api
4850
module ::DiscourseSolved
4951
def self.accept_answer!(post, acting_user, topic: nil)
5052
topic ||= post.topic
@@ -585,4 +587,14 @@ def self.skip_db?
585587
required: true
586588
end
587589
end
590+
591+
if defined?(DiscourseAssign)
592+
on(:accepted_solution) do |post|
593+
next if SiteSetting.assignment_status_on_solve.blank?
594+
Assigner.new(post.topic, post.acting_user).assign(
595+
post.acting_user,
596+
status: SiteSetting.assignment_status_on_solve,
597+
)
598+
end
599+
end
588600
end

spec/integration/solved_spec.rb

+58
Original file line numberDiff line numberDiff line change
@@ -428,4 +428,62 @@
428428
expect(response.status).to eq(200)
429429
end
430430
end
431+
432+
context "with discourse-assign installed", if: defined?(DiscourseAssign) do
433+
let(:admin) { Fabricate(:admin) }
434+
fab!(:group)
435+
before do
436+
SiteSetting.solved_enabled = true
437+
SiteSetting.assign_enabled = true
438+
SiteSetting.enable_assign_status = true
439+
SiteSetting.assign_allowed_on_groups = "#{group.id}"
440+
SiteSetting.assigns_public = true
441+
SiteSetting.assignment_status_on_solve = "Done"
442+
SiteSetting.ignore_solved_topics_in_assigned_reminder = false
443+
group.add(p1.acting_user)
444+
group.add(user)
445+
446+
sign_in(user)
447+
end
448+
describe "updating assignment status on solve when assignment_status_on_solve is set" do
449+
it "update all assignments to this status when a post is accepted" do
450+
assigner = Assigner.new(p1.topic, user)
451+
result = assigner.assign(user)
452+
expect(result[:success]).to eq(true)
453+
454+
expect(p1.topic.assignment.status).to eq("New")
455+
DiscourseSolved.accept_answer!(p1, user)
456+
457+
expect(p1.reload.custom_fields["is_accepted_answer"]).to eq("true")
458+
expect(p1.topic.assignment.reload.status).to eq("Done")
459+
end
460+
461+
describe "assigned topic reminder"
462+
it "excludes solved topics when ignore_solved_topics_in_assigned_reminder is false" do
463+
other_topic = Fabricate(:topic, title: "Topic that should be there")
464+
post = Fabricate(:post, topic: other_topic, user: user)
465+
466+
other_topic2 = Fabricate(:topic, title: "Topic that should be there2")
467+
post2 = Fabricate(:post, topic: other_topic2, user: user)
468+
469+
Assigner.new(post.topic, user).assign(user)
470+
Assigner.new(post2.topic, user).assign(user)
471+
472+
reminder = PendingAssignsReminder.new
473+
topics = reminder.send(:assigned_topics, user, order: :asc)
474+
expect(topics.to_a.length).to eq(2)
475+
476+
DiscourseSolved.accept_answer!(post2, Discourse.system_user)
477+
topics = reminder.send(:assigned_topics, user, order: :asc)
478+
expect(topics.to_a.length).to eq(2)
479+
expect(topics).to include(other_topic2)
480+
481+
SiteSetting.ignore_solved_topics_in_assigned_reminder = true
482+
topics = reminder.send(:assigned_topics, user, order: :asc)
483+
expect(topics.to_a.length).to eq(1)
484+
expect(topics).not_to include(other_topic2)
485+
expect(topics).to include(other_topic)
486+
end
487+
end
488+
end
431489
end

0 commit comments

Comments
 (0)