64 lines
2.0 KiB
Ruby
64 lines
2.0 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
return unless badge_grouping = BadgeGrouping.find_by(name: "Community")
|
|
|
|
helpdesk_query = <<-SQL
|
|
SELECT post_id, user_id, created_at AS granted_at
|
|
FROM (
|
|
SELECT p.id AS post_id, p.user_id, pcf.created_at,
|
|
ROW_NUMBER() OVER (PARTITION BY p.user_id ORDER BY pcf.created_at) AS row_number
|
|
FROM post_custom_fields pcf
|
|
JOIN badge_posts p ON pcf.post_id = p.id
|
|
JOIN topics t ON p.topic_id = t.id
|
|
WHERE pcf.name = 'is_accepted_answer'
|
|
AND p.user_id <> t.user_id -- ignore topics solved by OP
|
|
AND (:backfill OR p.id IN (:post_ids))
|
|
) x
|
|
WHERE row_number = 1
|
|
SQL
|
|
|
|
Badge.seed(:name) do |badge|
|
|
badge.name = I18n.t("badges.helpdesk.name")
|
|
badge.icon = "check-square"
|
|
badge.badge_type_id = 3
|
|
badge.badge_grouping = badge_grouping
|
|
badge.description = I18n.t("badges.helpdesk.description")
|
|
badge.query = helpdesk_query
|
|
badge.listable = true
|
|
badge.target_posts = true
|
|
badge.enabled = false
|
|
badge.trigger = Badge::Trigger::PostRevision
|
|
badge.auto_revoke = true
|
|
badge.show_posts = true
|
|
badge.system = true
|
|
end
|
|
|
|
tech_support_query = <<-SQL
|
|
SELECT p.user_id, MAX(pcf.created_at) AS granted_at
|
|
FROM post_custom_fields pcf
|
|
JOIN badge_posts p ON pcf.post_id = p.id
|
|
JOIN topics t ON p.topic_id = t.id
|
|
WHERE pcf.name = 'is_accepted_answer'
|
|
AND p.user_id <> t.user_id -- ignore topics solved by OP
|
|
AND (:backfill OR p.id IN (:post_ids))
|
|
GROUP BY p.user_id
|
|
HAVING COUNT(*) >= 10
|
|
SQL
|
|
|
|
Badge.seed(:name) do |badge|
|
|
badge.name = I18n.t("badges.tech_support.name")
|
|
badge.icon = "check-square"
|
|
badge.badge_type_id = 2
|
|
badge.badge_grouping = badge_grouping
|
|
badge.description = I18n.t("badges.tech_support.description")
|
|
badge.query = tech_support_query
|
|
badge.listable = true
|
|
badge.allow_title = true
|
|
badge.target_posts = false
|
|
badge.enabled = false
|
|
badge.trigger = Badge::Trigger::PostRevision
|
|
badge.auto_revoke = true
|
|
badge.show_posts = false
|
|
badge.system = true
|
|
end
|