2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-08-19 04:40:56 -04:00
|
|
|
class CategorySerializer < SiteCategorySerializer
|
2014-02-12 17:24:25 -05:00
|
|
|
attributes :read_restricted,
|
|
|
|
:available_groups,
|
|
|
|
:auto_close_hours,
|
2014-10-10 12:21:44 -04:00
|
|
|
:auto_close_based_on_last_post,
|
2014-02-12 17:24:25 -05:00
|
|
|
:group_permissions,
|
|
|
|
:position,
|
2014-02-27 07:44:21 -05:00
|
|
|
:email_in,
|
2014-02-27 10:36:33 -05:00
|
|
|
:email_in_allow_strangers,
|
2017-11-15 11:36:52 -05:00
|
|
|
:mailinglist_mirror,
|
2016-12-18 08:38:55 -05:00
|
|
|
:all_topics_wiki,
|
2021-04-14 01:54:09 -04:00
|
|
|
:allow_unlimited_owner_edits_on_first_post,
|
2014-07-09 22:01:46 -04:00
|
|
|
:can_delete,
|
2014-07-16 15:43:44 -04:00
|
|
|
:cannot_delete_reason,
|
2015-09-10 17:04:21 -04:00
|
|
|
:is_special,
|
2015-06-09 16:07:37 -04:00
|
|
|
:allow_badges,
|
2016-05-30 16:37:06 -04:00
|
|
|
:custom_fields,
|
2019-03-18 03:25:45 -04:00
|
|
|
:topic_featured_link_allowed,
|
2019-04-17 17:12:32 -04:00
|
|
|
:search_priority,
|
2021-06-27 15:46:11 -04:00
|
|
|
:reviewable_by_group_name,
|
|
|
|
:default_slow_mode_seconds
|
2019-04-17 17:12:32 -04:00
|
|
|
|
|
|
|
def reviewable_by_group_name
|
|
|
|
object.reviewable_by_group.name
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_reviewable_by_group_name?
|
2020-07-14 12:36:19 -04:00
|
|
|
SiteSetting.enable_category_group_moderation? && object.reviewable_by_group_id.present?
|
2019-04-17 17:12:32 -04:00
|
|
|
end
|
2013-05-10 02:47:47 -04:00
|
|
|
|
2013-07-13 21:24:16 -04:00
|
|
|
def group_permissions
|
2023-01-09 07:20:10 -05:00
|
|
|
@group_permissions ||=
|
|
|
|
begin
|
|
|
|
perms =
|
|
|
|
object
|
|
|
|
.category_groups
|
|
|
|
.joins(:group)
|
|
|
|
.includes(:group)
|
|
|
|
.merge(Group.visible_groups(scope&.user, "groups.name ASC", include_everyone: true))
|
|
|
|
.map { |cg| { permission_type: cg.permission_type, group_name: cg.group.name } }
|
|
|
|
|
|
|
|
if perms.length == 0 && !object.read_restricted
|
|
|
|
perms << {
|
|
|
|
permission_type: CategoryGroup.permission_types[:full],
|
|
|
|
group_name: Group[:everyone]&.name.presence || :everyone,
|
2022-03-31 02:39:01 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2023-01-09 07:20:10 -05:00
|
|
|
perms
|
2013-07-13 21:24:16 -04:00
|
|
|
end
|
2013-05-10 02:47:47 -04:00
|
|
|
end
|
|
|
|
|
2022-04-07 23:14:06 -04:00
|
|
|
def include_group_permissions?
|
|
|
|
scope&.can_edit?(object)
|
|
|
|
end
|
|
|
|
|
2021-06-02 13:18:45 -04:00
|
|
|
def include_available_groups?
|
|
|
|
scope && scope.can_edit?(object)
|
|
|
|
end
|
|
|
|
|
2013-05-10 02:47:47 -04:00
|
|
|
def available_groups
|
2013-07-16 01:44:07 -04:00
|
|
|
Group.order(:name).pluck(:name) - group_permissions.map { |g| g[:group_name] }
|
2013-05-10 02:47:47 -04:00
|
|
|
end
|
2013-02-21 18:09:56 -05:00
|
|
|
|
2014-02-12 17:24:25 -05:00
|
|
|
def can_delete
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2015-09-11 12:14:45 -04:00
|
|
|
def include_is_special?
|
2023-01-09 07:20:10 -05:00
|
|
|
[
|
|
|
|
SiteSetting.meta_category_id,
|
|
|
|
SiteSetting.staff_category_id,
|
|
|
|
SiteSetting.uncategorized_category_id,
|
|
|
|
].include? object.id
|
2015-09-10 17:04:21 -04:00
|
|
|
end
|
|
|
|
|
2015-09-11 12:14:45 -04:00
|
|
|
def is_special
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2014-02-12 17:24:25 -05:00
|
|
|
def include_can_delete?
|
|
|
|
scope && scope.can_delete?(object)
|
|
|
|
end
|
|
|
|
|
2021-09-22 09:01:25 -04:00
|
|
|
def include_cannot_delete_reason?
|
2014-07-16 15:43:44 -04:00
|
|
|
!include_can_delete? && scope && scope.can_edit?(object)
|
|
|
|
end
|
|
|
|
|
2014-02-27 07:44:21 -05:00
|
|
|
def include_email_in?
|
|
|
|
scope && scope.can_edit?(object)
|
|
|
|
end
|
|
|
|
|
2014-02-27 10:36:33 -05:00
|
|
|
def include_email_in_allow_strangers?
|
|
|
|
scope && scope.can_edit?(object)
|
|
|
|
end
|
|
|
|
|
2020-06-24 03:07:52 -04:00
|
|
|
def include_notification_level?
|
|
|
|
scope && scope.user
|
|
|
|
end
|
|
|
|
|
2016-02-03 07:58:59 -05:00
|
|
|
def notification_level
|
2016-02-03 08:19:08 -05:00
|
|
|
user = scope && scope.user
|
2020-04-28 12:05:53 -04:00
|
|
|
object.notification_level ||
|
2023-01-09 07:20:10 -05:00
|
|
|
(user && CategoryUser.where(user: user, category: object).first.try(:notification_level)) ||
|
|
|
|
CategoryUser.default_notification_level
|
2016-02-03 07:58:59 -05:00
|
|
|
end
|
|
|
|
|
2019-03-16 07:48:57 -04:00
|
|
|
def custom_fields
|
|
|
|
object.custom_fields
|
|
|
|
end
|
2019-03-24 22:29:56 -04:00
|
|
|
|
|
|
|
def include_custom_fields?
|
|
|
|
true
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|