mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 18:23:43 +08:00
3be4924b99
The automation plugin has 4 custom field types that are array typed. However, array typed custom fields are deprecated and should be migrated to JSON type. This commit does a couple of things: 1. Migrate all four custom fields to JSON 2. Fix a couple of small bugs that have been discovered while migrating the custom fields to JSON (see the comments on this commit's PR for details https://github.com/discourse/discourse/pull/26939)
35 lines
1.1 KiB
Ruby
35 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module DiscourseAutomation
|
|
module PostExtension
|
|
extend ActiveSupport::Concern
|
|
|
|
prepended { validate :discourse_automation_topic_required_words }
|
|
|
|
def discourse_automation_topic_required_words
|
|
return if !SiteSetting.discourse_automation_enabled
|
|
return if self.post_type == Post.types[:small_action]
|
|
return if !topic
|
|
return if topic.custom_fields[DiscourseAutomation::AUTOMATION_IDS_CUSTOM_FIELD].blank?
|
|
|
|
topic.custom_fields[DiscourseAutomation::AUTOMATION_IDS_CUSTOM_FIELD].each do |automation_id|
|
|
automation = DiscourseAutomation::Automation.find_by(id: automation_id)
|
|
next if automation&.script != DiscourseAutomation::Scripts::TOPIC_REQUIRED_WORDS
|
|
|
|
words = automation.fields.find_by(name: "words")&.metadata&.[]("value")
|
|
next if words.blank?
|
|
|
|
if words.none? { |word| raw.include?(word) }
|
|
errors.add(
|
|
:base,
|
|
I18n.t(
|
|
"discourse_automation.scriptables.topic_required_words.errors.must_include_word",
|
|
words: words.join(", "),
|
|
),
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|