debian-mirror-gitlab/app/models/concerns/participable.rb

115 lines
3 KiB
Ruby
Raw Normal View History

2018-11-20 20:47:30 +05:30
# frozen_string_literal: true
2015-09-11 14:41:01 +05:30
# == Participable concern
#
# Contains functionality related to objects that can have participants, such as
# an author, an assignee and people mentioned in its description or comments.
#
# Usage:
#
2019-07-07 11:18:12 +05:30
# class Issue < ApplicationRecord
2015-09-11 14:41:01 +05:30
# include Participable
#
# # ...
#
# participant :author
# participant :assignee
# participant :notes
#
# participant -> (current_user, ext) do
# ext.analyze('...')
# end
2015-09-11 14:41:01 +05:30
# end
#
# issue = Issue.last
# users = issue.participants
module Participable
extend ActiveSupport::Concern
2018-11-20 20:47:30 +05:30
class_methods do
# Adds a list of participant attributes. Attributes can either be symbols or
# Procs.
#
# When using a Proc instead of a Symbol the Proc will be given two
# arguments:
#
# 1. The current user (as an instance of User)
# 2. An instance of `Gitlab::ReferenceExtractor`
#
# It is expected that a Proc populates the given reference extractor
# instance with data. The return value of the Proc is ignored.
#
# attr - The name of the attribute or a Proc
def participant(attr)
participant_attrs << attr
2015-09-11 14:41:01 +05:30
end
2016-08-24 12:49:21 +05:30
end
2015-09-11 14:41:01 +05:30
2016-08-24 12:49:21 +05:30
included do
# Accessor for participant attributes.
cattr_accessor :participant_attrs, instance_accessor: false do
[]
2015-09-11 14:41:01 +05:30
end
end
# Returns the users participating in a discussion.
#
# This method processes attributes of objects in breadth-first order.
#
# Returns an Array of User instances.
def participants(current_user = nil)
2018-03-17 18:26:18 +05:30
all_participants[current_user]
2016-06-22 15:30:34 +05:30
end
private
2018-03-17 18:26:18 +05:30
def all_participants
@all_participants ||= Hash.new do |hash, user|
hash[user] = raw_participants(user)
end
end
2016-06-22 15:30:34 +05:30
def raw_participants(current_user = nil)
current_user ||= author
ext = Gitlab::ReferenceExtractor.new(project, current_user)
participants = Set.new
process = [self]
2015-09-11 14:41:01 +05:30
until process.empty?
source = process.pop
2015-10-24 18:46:33 +05:30
case source
when User
participants << source
when Participable
source.class.participant_attrs.each do |attr|
if attr.respond_to?(:call)
source.instance_exec(current_user, ext, &attr)
else
2018-03-17 18:26:18 +05:30
process << source.__send__(attr) # rubocop:disable GitlabSecurity/PublicSend
end
end
when Enumerable, ActiveRecord::Relation
# This uses reverse_each so we can use "pop" to get the next value to
# process (in order). Using unshift instead of pop would require
# moving all Array values one index to the left (which can be
# expensive).
source.reverse_each { |obj| process << obj }
2015-09-11 14:41:01 +05:30
end
end
participants.merge(ext.users)
2015-09-11 14:41:01 +05:30
2018-10-15 14:42:47 +05:30
filter_by_ability(participants)
end
def filter_by_ability(participants)
2017-08-17 22:00:37 +05:30
case self
when PersonalSnippet
Ability.users_that_can_read_personal_snippet(participants.to_a, self)
else
Ability.users_that_can_read_project(participants.to_a, project)
end
2015-09-11 14:41:01 +05:30
end
end