mirror of
https://github.com/discourse/discourse.git
synced 2024-11-21 16:38:15 -06:00
This reverts commit c0bcd979e3
.
This commit is contained in:
parent
367040024b
commit
9e4e591d60
@ -23,7 +23,6 @@ export default class AdminFlagsForm extends Component {
|
||||
@service site;
|
||||
|
||||
@tracked enabled = true;
|
||||
@tracked require_message = false;
|
||||
@tracked name;
|
||||
@tracked description;
|
||||
@tracked appliesTo;
|
||||
@ -34,7 +33,6 @@ export default class AdminFlagsForm extends Component {
|
||||
this.name = this.args.flag.name;
|
||||
this.description = this.args.flag.description;
|
||||
this.appliesTo = this.args.flag.applies_to;
|
||||
this.require_message = this.args.flag.require_message;
|
||||
this.enabled = this.args.flag.enabled;
|
||||
}
|
||||
}
|
||||
@ -100,7 +98,6 @@ export default class AdminFlagsForm extends Component {
|
||||
this.args.flag.name = response.flag.name;
|
||||
this.args.flag.description = response.flag.description;
|
||||
this.args.flag.applies_to = response.flag.applies_to;
|
||||
this.args.flag.require_message = response.flag.require_message;
|
||||
this.args.flag.enabled = response.flag.enabled;
|
||||
this.router.transitionTo("adminConfig.flags");
|
||||
})
|
||||
@ -115,7 +112,6 @@ export default class AdminFlagsForm extends Component {
|
||||
name: this.name,
|
||||
description: this.description,
|
||||
applies_to: this.appliesTo,
|
||||
require_message: this.require_message,
|
||||
enabled: this.enabled,
|
||||
};
|
||||
}
|
||||
@ -168,20 +164,6 @@ export default class AdminFlagsForm extends Component {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div class="control-group">
|
||||
<label class="checkbox-label admin-flag-form__require-reason">
|
||||
<Input @type="checkbox" @checked={{this.require_message}} />
|
||||
<div>
|
||||
{{i18n "admin.config_areas.flags.form.require_message"}}
|
||||
<div class="admin-flag-form__require-message-description">
|
||||
{{i18n
|
||||
"admin.config_areas.flags.form.require_message_description"
|
||||
}}
|
||||
</div>
|
||||
</div>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<div class="control-group">
|
||||
<label class="checkbox-label admin-flag-form__enabled">
|
||||
<Input @type="checkbox" @checked={{this.enabled}} />
|
||||
|
@ -35,7 +35,7 @@ export default Component.extend({
|
||||
return flag === selectedFlag;
|
||||
},
|
||||
|
||||
showMessageInput: and("flag.require_message", "selected"),
|
||||
showMessageInput: and("flag.is_custom_flag", "selected"),
|
||||
showConfirmation: and("flag.isIllegal", "selected"),
|
||||
showDescription: not("showMessageInput"),
|
||||
isNotifyUser: equal("flag.name_key", "notify_user"),
|
||||
|
@ -73,7 +73,7 @@ export default class Flag extends Component {
|
||||
}
|
||||
|
||||
get submitLabel() {
|
||||
if (this.selected?.require_message) {
|
||||
if (this.selected?.is_custom_flag) {
|
||||
return this.args.model.flagTarget.customSubmitLabel();
|
||||
}
|
||||
|
||||
@ -97,7 +97,7 @@ export default class Flag extends Component {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!this.selected.require_message) {
|
||||
if (!this.selected.is_custom_flag) {
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -119,7 +119,7 @@ export default class Flag extends Component {
|
||||
get canTakeAction() {
|
||||
return (
|
||||
!this.args.model.flagTarget.targetsTopic() &&
|
||||
!this.selected?.require_message &&
|
||||
!this.selected?.is_custom_flag &&
|
||||
this.currentUser.staff
|
||||
);
|
||||
}
|
||||
@ -184,7 +184,7 @@ export default class Flag extends Component {
|
||||
|
||||
@action
|
||||
createFlag(opts = {}) {
|
||||
if (this.selected.require_message) {
|
||||
if (this.selected.is_custom_flag) {
|
||||
opts.message = this.message;
|
||||
}
|
||||
this.args.model.flagTarget.create(this, opts);
|
||||
|
@ -1,8 +1,9 @@
|
||||
import { equal } from "@ember/object/computed";
|
||||
import { equal, not } from "@ember/object/computed";
|
||||
import RestModel from "discourse/models/rest";
|
||||
|
||||
export const MAX_MESSAGE_LENGTH = 500;
|
||||
|
||||
export default class PostActionType extends RestModel {
|
||||
@not("is_custom_flag") notCustomFlag;
|
||||
@equal("name_key", "illegal") isIllegal;
|
||||
}
|
||||
|
@ -568,7 +568,7 @@ export default {
|
||||
is_flag: false,
|
||||
icon: null,
|
||||
id: 1,
|
||||
require_message: false,
|
||||
is_custom_flag: false,
|
||||
},
|
||||
{
|
||||
name_key: "like",
|
||||
@ -578,7 +578,7 @@ export default {
|
||||
is_flag: false,
|
||||
icon: "heart",
|
||||
id: 2,
|
||||
require_message: false,
|
||||
is_custom_flag: false,
|
||||
},
|
||||
{
|
||||
name_key: "off_topic",
|
||||
@ -589,7 +589,7 @@ export default {
|
||||
is_flag: true,
|
||||
icon: null,
|
||||
id: 3,
|
||||
require_message: false,
|
||||
is_custom_flag: false,
|
||||
enabled: true,
|
||||
applies_to: ["Post", "Chat::Message"]
|
||||
},
|
||||
@ -603,7 +603,7 @@ export default {
|
||||
is_flag: true,
|
||||
icon: null,
|
||||
id: 4,
|
||||
require_message: false,
|
||||
is_custom_flag: false,
|
||||
enabled: true,
|
||||
applies_to: ["Post", "Topic", "Chat::Message"]
|
||||
},
|
||||
@ -615,7 +615,7 @@ export default {
|
||||
is_flag: false,
|
||||
icon: null,
|
||||
id: 5,
|
||||
require_message: false,
|
||||
is_custom_flag: false,
|
||||
enabled: true
|
||||
},
|
||||
{
|
||||
@ -627,7 +627,7 @@ export default {
|
||||
is_flag: true,
|
||||
icon: null,
|
||||
id: 8,
|
||||
require_message: false,
|
||||
is_custom_flag: false,
|
||||
enabled: true,
|
||||
applies_to: ["Post", "Topic", "Chat::Message"]
|
||||
},
|
||||
@ -641,7 +641,7 @@ export default {
|
||||
is_flag: true,
|
||||
icon: null,
|
||||
id: 6,
|
||||
require_message: true,
|
||||
is_custom_flag: true,
|
||||
enabled: true,
|
||||
applies_to: ["Post", "Topic", "Chat::Message"]
|
||||
},
|
||||
@ -654,7 +654,7 @@ export default {
|
||||
is_flag: true,
|
||||
icon: null,
|
||||
id: 7,
|
||||
require_message: true,
|
||||
is_custom_flag: true,
|
||||
enabled: true,
|
||||
applies_to: ["Post", "Topic", "Chat::Message"]
|
||||
},
|
||||
@ -668,7 +668,7 @@ export default {
|
||||
is_flag: true,
|
||||
icon: null,
|
||||
id: 4,
|
||||
require_message: false,
|
||||
is_custom_flag: false,
|
||||
enabled: true,
|
||||
applies_to: ["Post", "Topic", "Chat::Message"]
|
||||
},
|
||||
@ -680,7 +680,7 @@ export default {
|
||||
is_flag: true,
|
||||
icon: null,
|
||||
id: 8,
|
||||
require_message: false,
|
||||
is_custom_flag: false,
|
||||
enabled: true,
|
||||
applies_to: ["Post", "Topic", "Chat::Message"]
|
||||
},
|
||||
@ -692,7 +692,7 @@ export default {
|
||||
is_flag: true,
|
||||
icon: null,
|
||||
id: 7,
|
||||
require_message: true,
|
||||
is_custom_flag: true,
|
||||
enabled: true,
|
||||
applies_to: ["Post", "Topic", "Chat::Message"]
|
||||
},
|
||||
|
@ -278,7 +278,7 @@ PreloadStore.store("site", {
|
||||
is_flag: false,
|
||||
icon: null,
|
||||
id: 1,
|
||||
require_message: false,
|
||||
is_custom_flag: false,
|
||||
},
|
||||
{
|
||||
name_key: "like",
|
||||
@ -288,7 +288,7 @@ PreloadStore.store("site", {
|
||||
is_flag: false,
|
||||
icon: "heart",
|
||||
id: 2,
|
||||
require_message: false,
|
||||
is_custom_flag: false,
|
||||
},
|
||||
{
|
||||
name_key: "off_topic",
|
||||
@ -299,7 +299,7 @@ PreloadStore.store("site", {
|
||||
is_flag: true,
|
||||
icon: null,
|
||||
id: 3,
|
||||
require_message: false,
|
||||
is_custom_flag: false,
|
||||
},
|
||||
{
|
||||
name_key: "inappropriate",
|
||||
@ -310,7 +310,7 @@ PreloadStore.store("site", {
|
||||
is_flag: true,
|
||||
icon: null,
|
||||
id: 4,
|
||||
require_message: false,
|
||||
is_custom_flag: false,
|
||||
},
|
||||
{
|
||||
name_key: "vote",
|
||||
@ -320,7 +320,7 @@ PreloadStore.store("site", {
|
||||
is_flag: false,
|
||||
icon: null,
|
||||
id: 5,
|
||||
require_message: false,
|
||||
is_custom_flag: false,
|
||||
},
|
||||
{
|
||||
name_key: "spam",
|
||||
@ -331,7 +331,7 @@ PreloadStore.store("site", {
|
||||
is_flag: true,
|
||||
icon: null,
|
||||
id: 8,
|
||||
require_message: false,
|
||||
is_custom_flag: false,
|
||||
},
|
||||
{
|
||||
name_key: "notify_user",
|
||||
@ -342,7 +342,7 @@ PreloadStore.store("site", {
|
||||
is_flag: true,
|
||||
icon: null,
|
||||
id: 6,
|
||||
require_message: true,
|
||||
is_custom_flag: true,
|
||||
},
|
||||
{
|
||||
name_key: "notify_moderators",
|
||||
@ -353,7 +353,7 @@ PreloadStore.store("site", {
|
||||
is_flag: true,
|
||||
icon: null,
|
||||
id: 7,
|
||||
require_message: true,
|
||||
is_custom_flag: true,
|
||||
},
|
||||
],
|
||||
archetypes: [{ id: "regular", name: "Regular Topic", options: [] }],
|
||||
|
@ -56,15 +56,6 @@
|
||||
&__applies-to.select-kit.multi-select {
|
||||
width: 60%;
|
||||
}
|
||||
&__require-message-description {
|
||||
clear: both;
|
||||
flex-basis: 100%;
|
||||
font-size: var(--font-down-2);
|
||||
margin-top: 0.25em;
|
||||
}
|
||||
label {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
}
|
||||
|
||||
.admin-flags__header {
|
||||
|
@ -76,7 +76,7 @@ module Reports::ModeratorsActivity
|
||||
disagreed_by_id,
|
||||
deferred_by_id
|
||||
FROM post_actions
|
||||
WHERE post_action_type_id IN (#{PostActionType.flag_types_without_additional_message.values.join(",")})
|
||||
WHERE post_action_type_id IN (#{PostActionType.flag_types_without_custom.values.join(",")})
|
||||
AND created_at >= '#{report.start_date}'
|
||||
AND created_at <= '#{report.end_date}'
|
||||
),
|
||||
|
@ -63,7 +63,7 @@ end
|
||||
# description :text
|
||||
# notify_type :boolean default(FALSE), not null
|
||||
# auto_action_type :boolean default(FALSE), not null
|
||||
# require_message :boolean default(FALSE), not null
|
||||
# custom_type :boolean default(FALSE), not null
|
||||
# applies_to :string not null, is an Array
|
||||
# position :integer not null
|
||||
# enabled :boolean default(TRUE), not null
|
||||
|
@ -556,7 +556,7 @@ class Post < ActiveRecord::Base
|
||||
|
||||
def flags
|
||||
post_actions.where(
|
||||
post_action_type_id: PostActionType.flag_types_without_additional_message.values,
|
||||
post_action_type_id: PostActionType.flag_types_without_custom.values,
|
||||
deleted_at: nil,
|
||||
)
|
||||
end
|
||||
|
@ -61,9 +61,9 @@ class PostActionType < ActiveRecord::Base
|
||||
@public_type_ids ||= public_types.values
|
||||
end
|
||||
|
||||
def flag_types_without_additional_message
|
||||
return flag_settings.without_additional_message_types if overridden_by_plugin_or_skipped_db?
|
||||
flag_enum(all_flags.reject(&:require_message))
|
||||
def flag_types_without_custom
|
||||
return flag_settings.without_custom_types if overridden_by_plugin_or_skipped_db?
|
||||
flag_enum(all_flags.reject(&:custom_type))
|
||||
end
|
||||
|
||||
def flag_types
|
||||
@ -108,9 +108,9 @@ class PostActionType < ActiveRecord::Base
|
||||
flag_enum(all_flags.filter(&:enabled))
|
||||
end
|
||||
|
||||
def additional_message_types
|
||||
return flag_settings.with_additional_message if overridden_by_plugin_or_skipped_db?
|
||||
flag_enum(all_flags.select(&:require_message))
|
||||
def custom_types
|
||||
return flag_settings.custom_types if overridden_by_plugin_or_skipped_db?
|
||||
flag_enum(all_flags.select(&:custom_type))
|
||||
end
|
||||
|
||||
def names
|
||||
|
@ -1225,7 +1225,7 @@ class User < ActiveRecord::Base
|
||||
def flags_given_count
|
||||
PostAction.where(
|
||||
user_id: id,
|
||||
post_action_type_id: PostActionType.flag_types_without_additional_message.values,
|
||||
post_action_type_id: PostActionType.flag_types_without_custom.values,
|
||||
).count
|
||||
end
|
||||
|
||||
@ -1236,10 +1236,7 @@ class User < ActiveRecord::Base
|
||||
def flags_received_count
|
||||
posts
|
||||
.includes(:post_actions)
|
||||
.where(
|
||||
"post_actions.post_action_type_id" =>
|
||||
PostActionType.flag_types_without_additional_message.values,
|
||||
)
|
||||
.where("post_actions.post_action_type_id" => PostActionType.flag_types_without_custom.values)
|
||||
.count
|
||||
end
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class FlagSerializer < ApplicationSerializer
|
||||
attributes :id, :name, :name_key, :description, :applies_to, :position, :require_message, :enabled
|
||||
attributes :id, :name, :name_key, :description, :applies_to, :position, :enabled
|
||||
end
|
||||
|
@ -8,7 +8,7 @@ class PostActionTypeSerializer < ApplicationSerializer
|
||||
:description,
|
||||
:short_description,
|
||||
:is_flag,
|
||||
:require_message,
|
||||
:is_custom_flag,
|
||||
:enabled,
|
||||
:applies_to,
|
||||
:is_used,
|
||||
@ -16,8 +16,8 @@ class PostActionTypeSerializer < ApplicationSerializer
|
||||
|
||||
include ConfigurableUrls
|
||||
|
||||
def require_message
|
||||
!!PostActionType.additional_message_types[object.id]
|
||||
def is_custom_flag
|
||||
!!PostActionType.custom_types[object.id]
|
||||
end
|
||||
|
||||
def is_flag
|
||||
|
@ -15,7 +15,6 @@ class Flags::CreateFlag
|
||||
class Contract
|
||||
attribute :name, :string
|
||||
attribute :description, :string
|
||||
attribute :require_message, :boolean
|
||||
attribute :enabled, :boolean
|
||||
attribute :applies_to
|
||||
validates :name, presence: true
|
||||
@ -27,12 +26,11 @@ class Flags::CreateFlag
|
||||
|
||||
private
|
||||
|
||||
def instantiate_flag(name:, description:, applies_to:, require_message:, enabled:)
|
||||
def instantiate_flag(name:, description:, applies_to:, enabled:)
|
||||
Flag.new(
|
||||
name: name,
|
||||
description: description,
|
||||
applies_to: applies_to,
|
||||
require_message: require_message,
|
||||
enabled: enabled,
|
||||
notify_type: true,
|
||||
)
|
||||
@ -53,7 +51,6 @@ class Flags::CreateFlag
|
||||
name: flag.name,
|
||||
description: flag.description,
|
||||
applies_to: flag.applies_to,
|
||||
require_message: flag.require_message,
|
||||
enabled: flag.enabled,
|
||||
},
|
||||
)
|
||||
|
@ -17,7 +17,6 @@ class Flags::UpdateFlag
|
||||
class Contract
|
||||
attribute :name, :string
|
||||
attribute :description, :string
|
||||
attribute :require_message, :boolean
|
||||
attribute :enabled, :boolean
|
||||
attribute :applies_to
|
||||
validates :name, presence: true
|
||||
@ -45,14 +44,8 @@ class Flags::UpdateFlag
|
||||
guardian.can_edit_flag?(flag)
|
||||
end
|
||||
|
||||
def update(flag:, name:, description:, applies_to:, require_message:, enabled:)
|
||||
flag.update!(
|
||||
name: name,
|
||||
description: description,
|
||||
applies_to: applies_to,
|
||||
require_message: require_message,
|
||||
enabled: enabled,
|
||||
)
|
||||
def update(flag:, name:, description:, applies_to:, enabled:)
|
||||
flag.update!(name: name, description: description, applies_to: applies_to, enabled: enabled)
|
||||
end
|
||||
|
||||
def log(guardian:, flag:)
|
||||
@ -62,7 +55,6 @@ class Flags::UpdateFlag
|
||||
name: flag.name,
|
||||
description: flag.description,
|
||||
applies_to: flag.applies_to,
|
||||
require_message: flag.require_message,
|
||||
enabled: flag.enabled,
|
||||
},
|
||||
)
|
||||
|
@ -5512,8 +5512,6 @@ en:
|
||||
non_editable: "You cannot edit this flag because it is a system flag or has already been used in the review system, however you can still disable it."
|
||||
delete_flag: "Delete flag"
|
||||
non_deletable: "You cannot delete this flag because it is a system flag or has already been used in the review system, however you can still disable it."
|
||||
require_message: "Prompt users to provide additional reasons"
|
||||
require_message_description: "When this flag is selected, a text field will be displayed"
|
||||
more_options:
|
||||
title: "More options"
|
||||
move_up: "Move up"
|
||||
|
@ -5,7 +5,7 @@ Flag.seed do |s|
|
||||
s.name = "notify_user"
|
||||
s.notify_type = false
|
||||
s.auto_action_type = false
|
||||
s.require_message = true
|
||||
s.custom_type = true
|
||||
s.applies_to = %w[Post Chat::Message]
|
||||
end
|
||||
Flag.seed do |s|
|
||||
@ -13,7 +13,7 @@ Flag.seed do |s|
|
||||
s.name = "off_topic"
|
||||
s.notify_type = true
|
||||
s.auto_action_type = true
|
||||
s.require_message = false
|
||||
s.custom_type = false
|
||||
s.applies_to = %w[Post Chat::Message]
|
||||
end
|
||||
Flag.seed do |s|
|
||||
@ -21,7 +21,7 @@ Flag.seed do |s|
|
||||
s.name = "inappropriate"
|
||||
s.notify_type = true
|
||||
s.auto_action_type = true
|
||||
s.require_message = false
|
||||
s.custom_type = false
|
||||
s.applies_to = %w[Post Topic Chat::Message]
|
||||
end
|
||||
Flag.seed do |s|
|
||||
@ -29,7 +29,7 @@ Flag.seed do |s|
|
||||
s.name = "spam"
|
||||
s.notify_type = true
|
||||
s.auto_action_type = true
|
||||
s.require_message = false
|
||||
s.custom_type = false
|
||||
s.applies_to = %w[Post Topic Chat::Message]
|
||||
end
|
||||
Flag.seed do |s|
|
||||
@ -37,7 +37,7 @@ Flag.seed do |s|
|
||||
s.name = "illegal"
|
||||
s.notify_type = true
|
||||
s.auto_action_type = false
|
||||
s.require_message = true
|
||||
s.custom_type = true
|
||||
s.applies_to = %w[Post Topic Chat::Message]
|
||||
end
|
||||
Flag.seed do |s|
|
||||
@ -45,7 +45,7 @@ Flag.seed do |s|
|
||||
s.name = "notify_moderators"
|
||||
s.notify_type = true
|
||||
s.auto_action_type = false
|
||||
s.require_message = true
|
||||
s.custom_type = true
|
||||
s.applies_to = %w[Post Topic Chat::Message]
|
||||
end
|
||||
Flag.unscoped.seed do |s|
|
||||
@ -53,7 +53,7 @@ Flag.unscoped.seed do |s|
|
||||
s.name = "needs_approval"
|
||||
s.notify_type = false
|
||||
s.auto_action_type = false
|
||||
s.require_message = false
|
||||
s.custom_type = false
|
||||
s.score_type = true
|
||||
s.applies_to = %w[]
|
||||
end
|
||||
|
@ -1,7 +0,0 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class RenameFlagsCustomTypeToRequireMessage < ActiveRecord::Migration[7.0]
|
||||
def change
|
||||
rename_column :flags, :custom_type, :require_message
|
||||
end
|
||||
end
|
@ -73,7 +73,7 @@ module BadgeQueries
|
||||
SELECT pa.user_id, min(pa.id) id
|
||||
FROM post_actions pa
|
||||
JOIN badge_posts p on p.id = pa.post_id
|
||||
WHERE post_action_type_id IN (#{PostActionType.flag_types_without_additional_message.values.join(",")}) AND
|
||||
WHERE post_action_type_id IN (#{PostActionType.flag_types_without_custom.values.join(",")}) AND
|
||||
(:backfill OR pa.post_id IN (:post_ids) )
|
||||
GROUP BY pa.user_id
|
||||
) x
|
||||
|
@ -2,11 +2,11 @@
|
||||
|
||||
class FlagSettings
|
||||
attr_reader(
|
||||
:without_additional_message_types,
|
||||
:without_custom_types,
|
||||
:notify_types,
|
||||
:topic_flag_types,
|
||||
:auto_action_types,
|
||||
:additional_message_types,
|
||||
:custom_types,
|
||||
:names,
|
||||
)
|
||||
|
||||
@ -15,8 +15,8 @@ class FlagSettings
|
||||
@topic_flag_types = Enum.new
|
||||
@notify_types = Enum.new
|
||||
@auto_action_types = Enum.new
|
||||
@additional_message_types = Enum.new
|
||||
@without_additional_message_types = Enum.new
|
||||
@custom_types = Enum.new
|
||||
@without_custom_types = Enum.new
|
||||
@names = Enum.new
|
||||
end
|
||||
|
||||
@ -26,7 +26,7 @@ class FlagSettings
|
||||
topic_type: nil,
|
||||
notify_type: nil,
|
||||
auto_action_type: nil,
|
||||
require_message: nil,
|
||||
custom_type: nil,
|
||||
name: nil
|
||||
)
|
||||
@all_flag_types[name_key] = id
|
||||
@ -35,10 +35,10 @@ class FlagSettings
|
||||
@auto_action_types[name_key] = id if !!auto_action_type
|
||||
@names[id] = name if name
|
||||
|
||||
if !!require_message
|
||||
@additional_message_types[name_key] = id
|
||||
if !!custom_type
|
||||
@custom_types[name_key] = id
|
||||
else
|
||||
@without_additional_message_types[name_key] = id
|
||||
@without_custom_types[name_key] = id
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -38,8 +38,7 @@ module PostGuardian
|
||||
|
||||
taken = opts[:taken_actions].try(:keys).to_a
|
||||
is_flag =
|
||||
PostActionType.notify_flag_types[action_key] ||
|
||||
PostActionType.additional_message_types[action_key]
|
||||
PostActionType.notify_flag_types[action_key] || PostActionType.custom_types[action_key]
|
||||
already_taken_this_action = taken.any? && taken.include?(PostActionType.types[action_key])
|
||||
already_did_flagging = taken.any? && (taken & PostActionType.notify_flag_types.values).any?
|
||||
|
||||
|
@ -115,9 +115,7 @@ class PostActionCreator
|
||||
|
||||
# create meta topic / post if needed
|
||||
if @message.present? &&
|
||||
(PostActionType.additional_message_types.keys | %i[spam illegal]).include?(
|
||||
@post_action_name,
|
||||
)
|
||||
%i[notify_moderators notify_user spam illegal].include?(@post_action_name)
|
||||
creator = create_message_creator
|
||||
# We need to check if the creator exists because it's possible `create_message_creator` returns nil
|
||||
# in the event that a `post_action_notify_user_handler` evaluated to false, haulting the post creation.
|
||||
@ -327,7 +325,6 @@ class PostActionCreator
|
||||
"post_action_types.#{@post_action_name}.email_title",
|
||||
title: @post.topic.title,
|
||||
locale: SiteSetting.default_locale,
|
||||
default: I18n.t("post_action_types.illegal.email_title"),
|
||||
)
|
||||
|
||||
body =
|
||||
@ -336,7 +333,6 @@ class PostActionCreator
|
||||
message: @message,
|
||||
link: "#{Discourse.base_url}#{@post.url}",
|
||||
locale: SiteSetting.default_locale,
|
||||
default: I18n.t("post_action_types.illegal.email_body"),
|
||||
)
|
||||
|
||||
create_args = {
|
||||
@ -346,19 +342,7 @@ class PostActionCreator
|
||||
raw: body,
|
||||
}
|
||||
|
||||
if @post_action_name == :notify_user
|
||||
create_args[:subtype] = TopicSubtype.notify_user
|
||||
|
||||
create_args[:target_usernames] = @post.user.username
|
||||
|
||||
# Evaluate DiscoursePluginRegistry.post_action_notify_user_handlers.
|
||||
# If any return false, return early from this method
|
||||
handler_values =
|
||||
DiscoursePluginRegistry.post_action_notify_user_handlers.map do |handler|
|
||||
handler.call(@created_by, @post, @message)
|
||||
end
|
||||
return if handler_values.any? { |value| value == false }
|
||||
else
|
||||
if %i[notify_moderators spam illegal].include?(@post_action_name)
|
||||
create_args[:subtype] = TopicSubtype.notify_moderators
|
||||
create_args[:target_group_names] = [Group[:moderators].name]
|
||||
|
||||
@ -366,6 +350,24 @@ class PostActionCreator
|
||||
@post.topic&.category&.reviewable_by_group_id?
|
||||
create_args[:target_group_names] << @post.topic.category.reviewable_by_group.name
|
||||
end
|
||||
else
|
||||
create_args[:subtype] = TopicSubtype.notify_user
|
||||
|
||||
if @post_action_name == :notify_user
|
||||
create_args[:target_usernames] = @post.user.username
|
||||
|
||||
# Evaluate DiscoursePluginRegistry.post_action_notify_user_handlers.
|
||||
# If any return false, return early from this method
|
||||
handler_values =
|
||||
DiscoursePluginRegistry.post_action_notify_user_handlers.map do |handler|
|
||||
handler.call(@created_by, @post, @message)
|
||||
end
|
||||
return if handler_values.any? { |value| value == false }
|
||||
elsif @post_action_name != :notify_moderators
|
||||
# this is a hack to allow a PM with no recipients, we should think through
|
||||
# a cleaner technique, a PM with myself is valid for flagging
|
||||
"x"
|
||||
end
|
||||
end
|
||||
|
||||
PostCreator.new(@created_by, create_args)
|
||||
|
@ -542,7 +542,7 @@ class PostRevisor
|
||||
flaggers = []
|
||||
@post
|
||||
.post_actions
|
||||
.where(post_action_type_id: PostActionType.flag_types_without_additional_message.values)
|
||||
.where(post_action_type_id: PostActionType.flag_types_without_custom.values)
|
||||
.each do |action|
|
||||
flaggers << action.user if action.user
|
||||
action.remove_act!(Discourse.system_user)
|
||||
|
@ -21,7 +21,7 @@ RSpec.describe FlagSettings do
|
||||
settings.add(4, :inappropriate, topic_type: true)
|
||||
expect(settings.flag_types).to include(:inappropriate)
|
||||
expect(settings.topic_flag_types).to include(:inappropriate)
|
||||
expect(settings.without_additional_message_types).to include(:inappropriate)
|
||||
expect(settings.without_custom_types).to include(:inappropriate)
|
||||
end
|
||||
|
||||
it "will add a notify type" do
|
||||
@ -36,11 +36,11 @@ RSpec.describe FlagSettings do
|
||||
expect(settings.auto_action_types).to include(:notify_moderators)
|
||||
end
|
||||
|
||||
it "will add a type which requires message" do
|
||||
settings.add(7, :notify_user, require_message: true)
|
||||
it "will add a custom type" do
|
||||
settings.add(7, :notify_user, custom_type: true)
|
||||
expect(settings.flag_types).to include(:notify_user)
|
||||
expect(settings.additional_message_types).to include(:notify_user)
|
||||
expect(settings.without_additional_message_types).to be_empty
|
||||
expect(settings.custom_types).to include(:notify_user)
|
||||
expect(settings.without_custom_types).to be_empty
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -767,7 +767,7 @@ RSpec.describe PostAction do
|
||||
|
||||
# flags are already being tested
|
||||
all_types_except_flags =
|
||||
PostActionType.types.except(*PostActionType.flag_types_without_additional_message.keys)
|
||||
PostActionType.types.except(*PostActionType.flag_types_without_custom.keys)
|
||||
all_types_except_flags.values.each do |action|
|
||||
it "prevents user to act twice at the same time" do
|
||||
expect(PostActionCreator.new(eviltrout, post, action).perform).to be_success
|
||||
@ -783,25 +783,6 @@ RSpec.describe PostAction do
|
||||
expect(result.reviewable_score.meta_topic_id).to be_nil
|
||||
end
|
||||
|
||||
it "does not create a message for custom flag when message is not required" do
|
||||
flag_without_message =
|
||||
Fabricate(:flag, name: "flag without message", notify_type: true, require_message: false)
|
||||
|
||||
result =
|
||||
PostActionCreator.new(
|
||||
Discourse.system_user,
|
||||
post,
|
||||
PostActionType.types[:flag_without_message],
|
||||
message: "WAT",
|
||||
).perform
|
||||
|
||||
expect(result).to be_success
|
||||
expect(result.post_action.related_post_id).to be_nil
|
||||
expect(result.reviewable_score.meta_topic_id).to be_nil
|
||||
|
||||
flag_without_message.destroy!
|
||||
end
|
||||
|
||||
%i[notify_moderators notify_user spam].each do |post_action_type|
|
||||
it "creates a message for #{post_action_type}" do
|
||||
result =
|
||||
@ -816,25 +797,6 @@ RSpec.describe PostAction do
|
||||
end
|
||||
end
|
||||
|
||||
it "creates a message for custom flags when message is required" do
|
||||
flag_with_message =
|
||||
Fabricate(:flag, name: "flag with message", notify_type: true, require_message: true)
|
||||
|
||||
result =
|
||||
PostActionCreator.new(
|
||||
Discourse.system_user,
|
||||
post,
|
||||
PostActionType.types[:flag_with_message],
|
||||
message: "WAT",
|
||||
).perform
|
||||
|
||||
expect(result).to be_success
|
||||
expect(result.post_action.related_post_id).to be_present
|
||||
expect(result.reviewable_score.meta_topic_id).to be_present
|
||||
|
||||
flag_with_message.destroy!
|
||||
end
|
||||
|
||||
it "should raise the right errors when it fails to create a post" do
|
||||
user = Fabricate(:user)
|
||||
UserSilencer.new(user, Discourse.system_user).silence
|
||||
|
@ -351,7 +351,7 @@
|
||||
"is_flag": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"require_message": {
|
||||
"is_custom_flag": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"enabled": {
|
||||
@ -371,7 +371,7 @@
|
||||
"description",
|
||||
"short_description",
|
||||
"is_flag",
|
||||
"require_message",
|
||||
"is_custom_flag",
|
||||
"enabled",
|
||||
"applies_to",
|
||||
"is_used"
|
||||
@ -403,7 +403,7 @@
|
||||
"is_flag": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"require_message": {
|
||||
"is_custom_flag": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"enabled": {
|
||||
@ -423,7 +423,7 @@
|
||||
"description",
|
||||
"short_description",
|
||||
"is_flag",
|
||||
"require_message",
|
||||
"is_custom_flag",
|
||||
"enabled",
|
||||
"applies_to",
|
||||
"is_used"
|
||||
|
@ -7,7 +7,6 @@ RSpec.describe(Flags::CreateFlag) do
|
||||
name: name,
|
||||
description: description,
|
||||
applies_to: applies_to,
|
||||
require_message: require_message,
|
||||
enabled: enabled,
|
||||
)
|
||||
end
|
||||
@ -16,7 +15,6 @@ RSpec.describe(Flags::CreateFlag) do
|
||||
let(:description) { "custom flag description" }
|
||||
let(:applies_to) { ["Topic"] }
|
||||
let(:enabled) { true }
|
||||
let(:require_message) { true }
|
||||
|
||||
context "when user is not allowed to perform the action" do
|
||||
fab!(:current_user) { Fabricate(:user) }
|
||||
@ -74,7 +72,6 @@ RSpec.describe(Flags::CreateFlag) do
|
||||
expect(flag.name).to eq("custom flag name")
|
||||
expect(flag.description).to eq("custom flag description")
|
||||
expect(flag.applies_to).to eq(["Topic"])
|
||||
expect(flag.require_message).to be true
|
||||
expect(flag.enabled).to be true
|
||||
end
|
||||
|
||||
@ -83,7 +80,7 @@ RSpec.describe(Flags::CreateFlag) do
|
||||
expect(UserHistory.last).to have_attributes(
|
||||
custom_type: "create_flag",
|
||||
details:
|
||||
"name: custom flag name\ndescription: custom flag description\napplies_to: [\"Topic\"]\nrequire_message: true\nenabled: true",
|
||||
"name: custom flag name\ndescription: custom flag description\napplies_to: [\"Topic\"]\nenabled: true",
|
||||
)
|
||||
end
|
||||
end
|
||||
|
@ -10,7 +10,6 @@ RSpec.describe(Flags::UpdateFlag) do
|
||||
name: name,
|
||||
description: description,
|
||||
applies_to: applies_to,
|
||||
require_message: require_message,
|
||||
enabled: enabled,
|
||||
)
|
||||
end
|
||||
@ -20,7 +19,6 @@ RSpec.describe(Flags::UpdateFlag) do
|
||||
let(:name) { "edited custom flag name" }
|
||||
let(:description) { "edited custom flag description" }
|
||||
let(:applies_to) { ["Topic"] }
|
||||
let(:require_message) { true }
|
||||
let(:enabled) { false }
|
||||
|
||||
context "when user is not allowed to perform the action" do
|
||||
@ -76,7 +74,6 @@ RSpec.describe(Flags::UpdateFlag) do
|
||||
expect(flag.reload.name).to eq("edited custom flag name")
|
||||
expect(flag.description).to eq("edited custom flag description")
|
||||
expect(flag.applies_to).to eq(["Topic"])
|
||||
expect(flag.require_message).to be true
|
||||
expect(flag.enabled).to be false
|
||||
end
|
||||
|
||||
@ -85,7 +82,7 @@ RSpec.describe(Flags::UpdateFlag) do
|
||||
expect(UserHistory.last).to have_attributes(
|
||||
custom_type: "update_flag",
|
||||
details:
|
||||
"name: edited custom flag name\ndescription: edited custom flag description\napplies_to: [\"Topic\"]\nrequire_message: true\nenabled: false",
|
||||
"name: edited custom flag name\ndescription: edited custom flag description\napplies_to: [\"Topic\"]\nenabled: false",
|
||||
)
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user