2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-25 01:26:49 -06:00
|
|
|
class GroupShowSerializer < BasicGroupSerializer
|
2020-05-25 00:38:47 -05:00
|
|
|
attributes :is_group_user, :is_group_owner, :is_group_owner_display, :mentionable, :messageable, :flair_icon, :flair_type
|
2016-11-25 01:26:49 -06:00
|
|
|
|
|
|
|
def include_is_group_user?
|
2017-07-27 03:51:25 -05:00
|
|
|
authenticated?
|
2016-11-25 01:26:49 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
def is_group_user
|
2016-11-29 02:25:02 -06:00
|
|
|
!!fetch_group_user
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_is_group_owner?
|
2020-08-18 11:30:08 -05:00
|
|
|
authenticated? && fetch_group_user&.owner
|
2016-11-29 02:25:02 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
def is_group_owner
|
2020-08-18 11:30:08 -05:00
|
|
|
true
|
2016-11-29 02:25:02 -06:00
|
|
|
end
|
|
|
|
|
2018-06-12 16:57:26 -05:00
|
|
|
def include_is_group_owner_display?
|
|
|
|
authenticated?
|
|
|
|
end
|
|
|
|
|
|
|
|
def is_group_owner_display
|
|
|
|
!!fetch_group_user&.owner
|
|
|
|
end
|
|
|
|
|
2017-07-27 03:51:25 -05:00
|
|
|
def include_mentionable?
|
|
|
|
authenticated?
|
|
|
|
end
|
|
|
|
|
2017-10-02 03:50:27 -05:00
|
|
|
def include_messageable?
|
|
|
|
authenticated?
|
|
|
|
end
|
|
|
|
|
2017-07-27 03:51:25 -05:00
|
|
|
def mentionable
|
|
|
|
Group.mentionable(scope.user).exists?(id: object.id)
|
|
|
|
end
|
|
|
|
|
2017-08-28 11:32:08 -05:00
|
|
|
def messageable
|
|
|
|
Group.messageable(scope.user).exists?(id: object.id)
|
|
|
|
end
|
|
|
|
|
2020-05-25 00:38:47 -05:00
|
|
|
def include_flair_icon?
|
2020-08-04 11:41:14 -05:00
|
|
|
flair_icon.present? && (is_group_owner || scope.is_admin?)
|
2020-05-25 00:38:47 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def include_flair_type?
|
2020-08-04 11:41:14 -05:00
|
|
|
flair_type.present? && (is_group_owner || scope.is_admin?)
|
2020-05-25 00:38:47 -05:00
|
|
|
end
|
|
|
|
|
2016-11-29 02:25:02 -06:00
|
|
|
private
|
|
|
|
|
2017-07-27 03:51:25 -05:00
|
|
|
def authenticated?
|
|
|
|
scope.authenticated?
|
|
|
|
end
|
|
|
|
|
2016-11-29 02:25:02 -06:00
|
|
|
def fetch_group_user
|
2020-09-10 21:08:06 -05:00
|
|
|
return @group_user if defined?(@group_user)
|
|
|
|
@group_user = object.group_users.find_by(user: scope.user)
|
2016-11-25 01:26:49 -06:00
|
|
|
end
|
|
|
|
end
|