mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-05 08:41:11 +08:00
49 lines
1.6 KiB
Ruby
49 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Patreon
|
|
class Seed
|
|
def self.seed_content!
|
|
flair =
|
|
File.open(
|
|
"#{Rails.root}/plugins/discourse-patreon/public/images/patreon-logomark-color-on-white.png",
|
|
)
|
|
flair_upload =
|
|
UploadCreator.new(flair, "patreon-flair.png").create_for(Discourse.system_user.id)
|
|
|
|
default_group =
|
|
Group.where(name: "patrons").first_or_initialize(
|
|
visibility_level: Group.visibility_levels[:public],
|
|
primary_group: true,
|
|
title: "Patron",
|
|
flair_upload_id: flair_upload.id,
|
|
bio_raw:
|
|
"To get access to this group go to our [Patreon page](https://www.patreon.com/) and add your pledge.",
|
|
full_name: "Our Patreon supporters",
|
|
)
|
|
default_group.save!
|
|
|
|
badge =
|
|
Badge.where(name: "Patron").first_or_initialize(
|
|
description: "Active Patron",
|
|
badge_type_id: 1,
|
|
listable: true,
|
|
target_posts: false,
|
|
query:
|
|
"select user_id, created_at granted_at, NULL post_id from group_users where group_id = ( select g.id from groups g where g.name = 'patrons' )",
|
|
enabled: true,
|
|
auto_revoke: true,
|
|
badge_grouping_id: 2,
|
|
trigger: 0,
|
|
show_posts: false,
|
|
system: false,
|
|
image_upload_id: flair_upload.id,
|
|
long_description:
|
|
'To get access to this badge go to our <a href="https://www.patreon.com/">Patreon page</a> and add your pledge.',
|
|
)
|
|
badge.save!
|
|
|
|
basic_filter = { default_group.id.to_s => ["0"] }
|
|
Patreon.set("filters", basic_filter)
|
|
end
|
|
end
|
|
end
|