2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
module Users
|
|
|
|
module ParticipableService
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
|
|
|
attr_reader :noteable
|
|
|
|
end
|
|
|
|
|
|
|
|
def noteable_owner
|
|
|
|
return [] unless noteable && noteable.author.present?
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
[user_as_hash(noteable.author)]
|
2018-10-15 14:42:47 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def participants_in_noteable
|
|
|
|
return [] unless noteable
|
|
|
|
|
|
|
|
users = noteable.participants(current_user)
|
|
|
|
sorted(users)
|
|
|
|
end
|
|
|
|
|
|
|
|
def sorted(users)
|
|
|
|
users.uniq.to_a.compact.sort_by(&:username).map do |user|
|
2019-07-07 11:18:12 +05:30
|
|
|
user_as_hash(user)
|
2018-10-15 14:42:47 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def groups
|
2019-07-07 11:18:12 +05:30
|
|
|
group_counts = GroupMember
|
2019-09-04 21:01:54 +05:30
|
|
|
.of_groups(current_user.authorized_groups)
|
2019-07-07 11:18:12 +05:30
|
|
|
.non_request
|
|
|
|
.count_users_by_group_id
|
|
|
|
|
|
|
|
current_user.authorized_groups.with_route.sort_by(&:path).map do |group|
|
|
|
|
group_as_hash(group, group_counts)
|
2018-10-15 14:42:47 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
def user_as_hash(user)
|
|
|
|
{
|
|
|
|
type: user.class.name,
|
|
|
|
username: user.username,
|
|
|
|
name: user.name,
|
|
|
|
avatar_url: user.avatar_url
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def group_as_hash(group, group_counts)
|
|
|
|
{
|
|
|
|
type: group.class.name,
|
|
|
|
username: group.full_path,
|
|
|
|
name: group.full_name,
|
|
|
|
avatar_url: group.avatar_url,
|
2020-01-01 13:55:28 +05:30
|
|
|
count: group_counts.fetch(group.id, 0),
|
|
|
|
mentionsDisabled: group.mentions_disabled
|
2019-07-07 11:18:12 +05:30
|
|
|
}
|
2018-10-15 14:42:47 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|