2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-08-12 04:59:00 +08:00
|
|
|
class About
|
2019-07-31 21:46:58 +08:00
|
|
|
class CategoryMods
|
|
|
|
include ActiveModel::Serialization
|
2024-04-05 14:38:54 +08:00
|
|
|
attr_reader :category, :moderators
|
2019-07-31 21:46:58 +08:00
|
|
|
|
2024-04-05 14:38:54 +08:00
|
|
|
def initialize(category, moderators)
|
|
|
|
@category = category
|
2019-07-31 21:46:58 +08:00
|
|
|
@moderators = moderators
|
|
|
|
end
|
2024-05-11 01:11:43 +08:00
|
|
|
|
|
|
|
def parent_category
|
|
|
|
category.parent_category
|
|
|
|
end
|
2019-07-31 21:46:58 +08:00
|
|
|
end
|
|
|
|
|
2014-08-12 04:59:00 +08:00
|
|
|
include ActiveModel::Serialization
|
2015-07-07 12:52:19 +08:00
|
|
|
include StatsCacheable
|
2014-08-12 04:59:00 +08:00
|
|
|
|
2015-07-07 12:52:19 +08:00
|
|
|
def self.stats_cache_key
|
|
|
|
"about-stats"
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.fetch_stats
|
2023-11-10 04:44:05 +08:00
|
|
|
Stat.api_stats
|
2015-07-07 12:52:19 +08:00
|
|
|
end
|
|
|
|
|
2019-07-31 21:46:58 +08:00
|
|
|
def initialize(user = nil)
|
|
|
|
@user = user
|
|
|
|
end
|
|
|
|
|
2014-08-12 06:15:35 +08:00
|
|
|
def version
|
|
|
|
Discourse::VERSION::STRING
|
|
|
|
end
|
|
|
|
|
2014-11-24 14:54:17 +08:00
|
|
|
def https
|
2016-06-27 17:26:43 +08:00
|
|
|
SiteSetting.force_https
|
2014-11-24 14:54:17 +08:00
|
|
|
end
|
|
|
|
|
2014-08-12 06:15:35 +08:00
|
|
|
def title
|
|
|
|
SiteSetting.title
|
|
|
|
end
|
|
|
|
|
|
|
|
def locale
|
|
|
|
SiteSetting.default_locale
|
|
|
|
end
|
|
|
|
|
|
|
|
def description
|
|
|
|
SiteSetting.site_description
|
|
|
|
end
|
|
|
|
|
2024-07-23 06:35:18 +08:00
|
|
|
def extended_site_description
|
|
|
|
SiteSetting.extended_site_description_cooked
|
|
|
|
end
|
|
|
|
|
|
|
|
def banner_image
|
|
|
|
url = SiteSetting.about_banner_image&.url
|
|
|
|
return if url.blank?
|
|
|
|
GlobalPath.full_cdn_url(url)
|
|
|
|
end
|
|
|
|
|
2024-08-07 16:11:41 +08:00
|
|
|
def site_creation_date
|
|
|
|
Discourse.site_creation_date
|
|
|
|
end
|
|
|
|
|
2014-08-12 04:59:00 +08:00
|
|
|
def moderators
|
2024-09-10 19:43:41 +08:00
|
|
|
@moderators ||=
|
|
|
|
apply_excluded_groups(
|
|
|
|
User.where(moderator: true, admin: false).human_users.order(last_seen_at: :desc),
|
|
|
|
)
|
2014-08-12 04:59:00 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def admins
|
2024-05-30 23:44:53 +08:00
|
|
|
@admins ||=
|
|
|
|
DiscoursePluginRegistry.apply_modifier(
|
|
|
|
:about_admins,
|
2024-09-10 19:43:41 +08:00
|
|
|
apply_excluded_groups(User.where(admin: true).human_users.order(last_seen_at: :desc)),
|
2024-05-30 23:44:53 +08:00
|
|
|
)
|
2014-08-12 04:59:00 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def stats
|
2024-08-29 18:16:57 +08:00
|
|
|
@stats ||= About.fetch_cached_stats
|
2014-08-12 04:59:00 +08:00
|
|
|
end
|
|
|
|
|
2019-07-31 21:46:58 +08:00
|
|
|
def category_moderators
|
2019-10-04 02:48:56 +08:00
|
|
|
allowed_cats = Guardian.new(@user).allowed_category_ids
|
|
|
|
return [] if allowed_cats.blank?
|
2021-03-28 16:25:30 +08:00
|
|
|
|
2024-09-04 09:38:46 +08:00
|
|
|
cats_with_mods = Category.joins(:category_moderation_groups).distinct.pluck(:id)
|
2021-03-28 16:25:30 +08:00
|
|
|
|
2019-10-04 02:48:56 +08:00
|
|
|
category_ids = cats_with_mods & allowed_cats
|
2019-07-31 21:46:58 +08:00
|
|
|
return [] if category_ids.blank?
|
2019-10-04 02:48:56 +08:00
|
|
|
|
|
|
|
per_cat_limit = category_mods_limit / category_ids.size
|
|
|
|
per_cat_limit = 1 if per_cat_limit < 1
|
2021-03-28 16:25:30 +08:00
|
|
|
|
2024-09-04 09:38:46 +08:00
|
|
|
results = DB.query(<<~SQL, category_ids:)
|
|
|
|
WITH moderator_users AS (
|
|
|
|
SELECT
|
|
|
|
cmg.category_id AS category_id,
|
|
|
|
u.id AS user_id,
|
|
|
|
u.last_seen_at,
|
|
|
|
ROW_NUMBER() OVER (PARTITION BY cmg.category_id, u.id ORDER BY u.last_seen_at DESC) as rn
|
|
|
|
FROM category_moderation_groups cmg
|
|
|
|
INNER JOIN group_users gu
|
|
|
|
ON cmg.group_id = gu.group_id
|
|
|
|
INNER JOIN users u
|
|
|
|
ON gu.user_id = u.id
|
|
|
|
WHERE cmg.category_id IN (:category_ids)
|
|
|
|
)
|
|
|
|
SELECT id AS category_id, user_ids
|
|
|
|
FROM categories
|
|
|
|
INNER JOIN (
|
|
|
|
SELECT
|
|
|
|
category_id,
|
|
|
|
(ARRAY_AGG(user_id ORDER BY last_seen_at DESC))[:#{per_cat_limit}] AS user_ids
|
|
|
|
FROM moderator_users
|
|
|
|
WHERE rn = 1
|
|
|
|
GROUP BY category_id
|
|
|
|
) X
|
|
|
|
ON X.category_id = id
|
|
|
|
ORDER BY position
|
2019-07-31 21:46:58 +08:00
|
|
|
SQL
|
2021-03-28 16:25:30 +08:00
|
|
|
|
2024-04-05 14:38:54 +08:00
|
|
|
cats = Category.where(id: results.map(&:category_id)).index_by(&:id)
|
2021-03-31 05:12:53 +08:00
|
|
|
mods = User.where(id: results.map(&:user_ids).flatten.uniq).index_by(&:id)
|
2021-03-28 16:25:30 +08:00
|
|
|
|
2024-04-05 14:38:54 +08:00
|
|
|
results.map { |row| CategoryMods.new(cats[row.category_id], mods.values_at(*row.user_ids)) }
|
2019-07-31 21:46:58 +08:00
|
|
|
end
|
2019-10-04 02:48:56 +08:00
|
|
|
|
|
|
|
def category_mods_limit
|
|
|
|
@category_mods_limit || 100
|
|
|
|
end
|
|
|
|
|
|
|
|
def category_mods_limit=(number)
|
|
|
|
@category_mods_limit = number
|
|
|
|
end
|
2024-09-10 19:43:41 +08:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def apply_excluded_groups(query)
|
|
|
|
group_ids = SiteSetting.about_page_hidden_groups_map
|
|
|
|
return query if group_ids.blank?
|
|
|
|
|
|
|
|
query.joins(
|
|
|
|
DB.sql_fragment(
|
|
|
|
"LEFT JOIN group_users ON group_id IN (:group_ids) AND user_id = users.id",
|
|
|
|
group_ids:,
|
|
|
|
),
|
|
|
|
).where("group_users.id": nil)
|
|
|
|
end
|
2014-08-12 04:59:00 +08:00
|
|
|
end
|