2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-05-09 15:37:34 +08:00
|
|
|
class BasicGroupSerializer < ApplicationSerializer
|
2015-01-24 01:25:43 +08:00
|
|
|
attributes :id,
|
|
|
|
:automatic,
|
|
|
|
:name,
|
2017-05-05 14:34:47 +08:00
|
|
|
:display_name,
|
2015-01-24 01:25:43 +08:00
|
|
|
:user_count,
|
2017-08-29 00:32:08 +08:00
|
|
|
:mentionable_level,
|
|
|
|
:messageable_level,
|
2017-07-04 03:26:46 +08:00
|
|
|
:visibility_level,
|
2015-01-24 01:25:43 +08:00
|
|
|
:automatic_membership_email_domains,
|
2015-04-10 10:17:28 +08:00
|
|
|
:primary_group,
|
2015-09-02 04:52:05 +08:00
|
|
|
:title,
|
2015-12-07 19:39:28 +08:00
|
|
|
:grant_trust_level,
|
2015-12-15 06:17:09 +08:00
|
|
|
:incoming_email,
|
2016-03-03 02:18:17 +08:00
|
|
|
:has_messages,
|
2016-08-17 00:34:04 +08:00
|
|
|
:flair_url,
|
2016-08-27 05:15:37 +08:00
|
|
|
:flair_bg_color,
|
2016-12-05 16:18:24 +08:00
|
|
|
:flair_color,
|
|
|
|
:bio_raw,
|
2016-12-07 12:06:56 +08:00
|
|
|
:bio_cooked,
|
2019-04-18 10:44:30 +08:00
|
|
|
:bio_excerpt,
|
2017-07-28 10:37:10 +08:00
|
|
|
:public_admission,
|
|
|
|
:public_exit,
|
2016-12-13 16:16:26 +08:00
|
|
|
:allow_membership_requests,
|
2017-04-21 03:47:25 +08:00
|
|
|
:full_name,
|
2017-08-08 17:53:02 +08:00
|
|
|
:default_notification_level,
|
2018-03-19 18:28:57 +08:00
|
|
|
:membership_request_template,
|
|
|
|
:is_group_user,
|
2019-08-14 21:30:04 +08:00
|
|
|
:is_group_owner,
|
|
|
|
:members_visibility_level,
|
2019-08-27 20:09:00 +08:00
|
|
|
:can_see_members,
|
|
|
|
:publish_read_state
|
2015-12-07 19:39:28 +08:00
|
|
|
|
2017-05-05 14:34:47 +08:00
|
|
|
def include_display_name?
|
|
|
|
object.automatic
|
|
|
|
end
|
|
|
|
|
|
|
|
def display_name
|
|
|
|
if auto_group_name = Group::AUTO_GROUP_IDS[object.id]
|
|
|
|
I18n.t("groups.default_names.#{auto_group_name}")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-18 10:44:30 +08:00
|
|
|
def bio_excerpt
|
2019-11-12 00:42:08 +08:00
|
|
|
PrettyText.excerpt(object.bio_cooked, 110, keep_emoji_images: true) if object.bio_cooked.present?
|
2019-04-18 10:44:30 +08:00
|
|
|
end
|
|
|
|
|
2015-12-07 19:39:28 +08:00
|
|
|
def include_incoming_email?
|
2016-12-05 16:18:24 +08:00
|
|
|
staff?
|
|
|
|
end
|
|
|
|
|
2018-12-14 23:47:00 +08:00
|
|
|
def include_automatic_membership_email_domains?
|
|
|
|
scope.is_admin?
|
|
|
|
end
|
|
|
|
|
2018-03-19 18:28:57 +08:00
|
|
|
def include_has_messages?
|
2018-05-17 18:10:17 +08:00
|
|
|
staff? || scope.can_see_group_messages?(object)
|
2016-12-05 16:18:24 +08:00
|
|
|
end
|
|
|
|
|
2018-03-19 18:28:57 +08:00
|
|
|
def include_bio_raw?
|
2018-04-17 18:14:19 +08:00
|
|
|
staff? || (include_is_group_owner? && is_group_owner)
|
2016-12-05 16:18:24 +08:00
|
|
|
end
|
|
|
|
|
2018-03-19 18:28:57 +08:00
|
|
|
def include_is_group_user?
|
|
|
|
user_group_ids.present?
|
|
|
|
end
|
|
|
|
|
|
|
|
def is_group_user
|
|
|
|
user_group_ids.include?(object.id)
|
|
|
|
end
|
2016-12-05 16:18:24 +08:00
|
|
|
|
2018-03-19 18:28:57 +08:00
|
|
|
def include_is_group_owner?
|
|
|
|
owner_group_ids.present?
|
2015-12-07 19:39:28 +08:00
|
|
|
end
|
2018-03-19 18:28:57 +08:00
|
|
|
|
|
|
|
def is_group_owner
|
|
|
|
owner_group_ids.include?(object.id)
|
|
|
|
end
|
|
|
|
|
2019-08-14 21:30:04 +08:00
|
|
|
def can_see_members
|
|
|
|
scope.can_see_group_members?(object)
|
|
|
|
end
|
|
|
|
|
2018-03-19 18:28:57 +08:00
|
|
|
private
|
|
|
|
|
2018-06-07 13:28:18 +08:00
|
|
|
def staff?
|
|
|
|
@staff ||= scope.is_staff?
|
|
|
|
end
|
2018-03-19 18:28:57 +08:00
|
|
|
|
2018-06-07 13:28:18 +08:00
|
|
|
def user_group_ids
|
|
|
|
@options[:user_group_ids]
|
|
|
|
end
|
2018-03-19 18:28:57 +08:00
|
|
|
|
2018-06-07 13:28:18 +08:00
|
|
|
def owner_group_ids
|
|
|
|
@options[:owner_group_ids]
|
|
|
|
end
|
2013-05-08 13:20:38 +08:00
|
|
|
end
|