2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-05-20 21:43:47 -04:00
|
|
|
#mixin for all guardian methods dealing with category permissions
|
2014-01-09 18:25:14 -05:00
|
|
|
module CategoryGuardian
|
2014-04-15 02:49:22 -04:00
|
|
|
|
2014-01-09 18:25:14 -05:00
|
|
|
# Creating Method
|
2014-04-15 02:49:22 -04:00
|
|
|
def can_create_category?(parent = nil)
|
|
|
|
is_admin? ||
|
|
|
|
(
|
2020-08-19 10:41:40 -04:00
|
|
|
SiteSetting.moderators_manage_categories_and_groups &&
|
2014-04-15 02:49:22 -04:00
|
|
|
is_moderator?
|
|
|
|
)
|
2014-01-09 18:25:14 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# Editing Method
|
|
|
|
def can_edit_category?(category)
|
2014-04-15 02:49:22 -04:00
|
|
|
is_admin? ||
|
|
|
|
(
|
2020-08-19 10:41:40 -04:00
|
|
|
SiteSetting.moderators_manage_categories_and_groups &&
|
2014-04-15 02:49:22 -04:00
|
|
|
is_moderator? &&
|
|
|
|
can_see_category?(category)
|
|
|
|
)
|
2014-01-09 18:25:14 -05:00
|
|
|
end
|
|
|
|
|
2021-06-27 22:39:13 -04:00
|
|
|
def can_edit_serialized_category?(category_id:, read_restricted:)
|
|
|
|
is_admin? ||
|
|
|
|
(
|
|
|
|
SiteSetting.moderators_manage_categories_and_groups &&
|
|
|
|
is_moderator? &&
|
|
|
|
can_see_serialized_category?(category_id: category_id, read_restricted: read_restricted)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2014-01-09 18:25:14 -05:00
|
|
|
def can_delete_category?(category)
|
2014-04-15 02:49:22 -04:00
|
|
|
can_edit_category?(category) &&
|
2014-08-22 12:25:22 -04:00
|
|
|
category.topic_count <= 0 &&
|
2014-02-12 17:24:25 -05:00
|
|
|
!category.uncategorized? &&
|
|
|
|
!category.has_children?
|
2014-01-09 18:25:14 -05:00
|
|
|
end
|
|
|
|
|
2021-06-23 03:21:11 -04:00
|
|
|
def can_see_serialized_category?(category_id:, read_restricted: true)
|
|
|
|
# Guard to ensure only a boolean is passed in
|
|
|
|
read_restricted = true unless !!read_restricted == read_restricted
|
|
|
|
|
|
|
|
return true if !read_restricted
|
|
|
|
secure_category_ids.include?(category_id)
|
|
|
|
end
|
|
|
|
|
2014-01-09 18:25:14 -05:00
|
|
|
def can_see_category?(category)
|
2016-07-02 06:21:14 -04:00
|
|
|
return false unless category
|
2016-06-27 08:36:57 -04:00
|
|
|
return true if is_admin?
|
|
|
|
return true if !category.read_restricted
|
|
|
|
return true if is_staged? && category.email_in.present? && category.email_in_allow_strangers
|
2016-02-24 05:30:17 -05:00
|
|
|
secure_category_ids.include?(category.id)
|
2014-01-09 18:25:14 -05:00
|
|
|
end
|
|
|
|
|
2020-07-23 09:50:00 -04:00
|
|
|
def can_edit_category_description?(category)
|
|
|
|
can_perform_action_available_to_group_moderators?(category.topic)
|
|
|
|
end
|
|
|
|
|
2014-01-09 18:25:14 -05:00
|
|
|
def secure_category_ids
|
|
|
|
@secure_category_ids ||= @user.secure_category_ids
|
|
|
|
end
|
|
|
|
|
|
|
|
# all allowed category ids
|
|
|
|
def allowed_category_ids
|
2015-09-22 23:13:34 -04:00
|
|
|
@allowed_category_ids ||=
|
|
|
|
begin
|
|
|
|
unrestricted = Category.where(read_restricted: false).pluck(:id)
|
|
|
|
unrestricted.concat(secure_category_ids)
|
|
|
|
end
|
2014-01-09 18:25:14 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def topic_create_allowed_category_ids
|
|
|
|
@topic_create_allowed_category_ids ||= @user.topic_create_allowed_category_ids
|
|
|
|
end
|
2016-12-05 07:31:43 -05:00
|
|
|
|
|
|
|
def topic_featured_link_allowed_category_ids
|
2016-12-15 17:46:43 -05:00
|
|
|
@topic_featured_link_allowed_category_ids = Category.where(topic_featured_link_allowed: true).pluck(:id)
|
2016-12-05 07:31:43 -05:00
|
|
|
end
|
2014-02-06 22:11:52 -05:00
|
|
|
end
|