2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
# A collection of events to display in an event list.
|
|
|
|
#
|
|
|
|
# An EventCollection is meant to be used for displaying events to a user (e.g.
|
|
|
|
# in a controller), it's not suitable for building queries that are used for
|
|
|
|
# building other queries.
|
|
|
|
class EventCollection
|
2019-12-21 20:55:43 +05:30
|
|
|
include Gitlab::Utils::StrongMemoize
|
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
attr_reader :filter
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
# To prevent users from putting too much pressure on the database by cycling
|
|
|
|
# through thousands of events we put a limit on the number of pages.
|
|
|
|
MAX_PAGE = 10
|
|
|
|
|
|
|
|
# projects - An ActiveRecord::Relation object that returns the projects for
|
|
|
|
# which to retrieve events.
|
|
|
|
# filter - An EventFilter instance to use for filtering events.
|
2019-12-21 20:55:43 +05:30
|
|
|
def initialize(projects, limit: 20, offset: 0, filter: nil, groups: nil)
|
2017-09-10 17:25:29 +05:30
|
|
|
@projects = projects
|
|
|
|
@limit = limit
|
|
|
|
@offset = offset
|
2022-07-16 23:28:13 +05:30
|
|
|
@filter = filter || EventFilter.new(EventFilter::ALL)
|
2019-12-21 20:55:43 +05:30
|
|
|
@groups = groups
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
# Returns an Array containing the events.
|
|
|
|
def to_a
|
|
|
|
return [] if current_page > MAX_PAGE
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
relation = if groups
|
|
|
|
project_and_group_events
|
2017-09-10 17:25:29 +05:30
|
|
|
else
|
2020-03-13 15:44:24 +05:30
|
|
|
project_events
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
relation = paginate_events(relation)
|
2017-09-10 17:25:29 +05:30
|
|
|
relation.with_associations.to_a
|
|
|
|
end
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
def all_project_events
|
2020-07-28 23:09:34 +05:30
|
|
|
Event.from_union([project_events]).recent
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
private
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
def project_events
|
2022-07-16 23:28:13 +05:30
|
|
|
in_operator_optimized_relation('project_id', projects, Project)
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
def group_events
|
2022-07-16 23:28:13 +05:30
|
|
|
in_operator_optimized_relation('group_id', groups, Namespace)
|
2022-05-07 20:08:51 +05:30
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
def project_and_group_events
|
2022-07-16 23:28:13 +05:30
|
|
|
if EventFilter::PROJECT_ONLY_EVENT_TYPES.include?(filter.filter)
|
|
|
|
project_events
|
|
|
|
else
|
|
|
|
Event.from_union([project_events, group_events]).recent
|
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
def in_operator_optimized_relation(parent_column, parents, parent_model)
|
|
|
|
query_builder_params = if Feature.enabled?(:optimized_project_and_group_activity_queries)
|
|
|
|
array_data = {
|
|
|
|
scope_ids: parents.pluck(:id),
|
|
|
|
scope_model: parent_model,
|
|
|
|
mapping_column: parent_column
|
|
|
|
}
|
|
|
|
filter.in_operator_query_builder_params(array_data)
|
|
|
|
else
|
|
|
|
{
|
|
|
|
scope: filtered_events,
|
|
|
|
array_scope: parents.select(:id),
|
|
|
|
array_mapping_scope: -> (parent_id_expression) { Event.where(Event.arel_table[parent_column].eq(parent_id_expression)).reorder(id: :desc) },
|
|
|
|
finder_query: -> (id_expression) { Event.where(Event.arel_table[:id].eq(id_expression)) }
|
|
|
|
}
|
|
|
|
end
|
2022-05-07 20:08:51 +05:30
|
|
|
|
|
|
|
Gitlab::Pagination::Keyset::InOperatorOptimization::QueryBuilder
|
2022-07-16 23:28:13 +05:30
|
|
|
.new(**query_builder_params)
|
2022-05-07 20:08:51 +05:30
|
|
|
.execute
|
2022-07-16 23:28:13 +05:30
|
|
|
.limit(@limit + @offset)
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def filtered_events
|
2022-07-16 23:28:13 +05:30
|
|
|
filter.apply_filter(base_relation)
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def paginate_events(events)
|
|
|
|
events.limit(@limit).offset(@offset)
|
|
|
|
end
|
|
|
|
|
|
|
|
def base_relation
|
|
|
|
# We want to have absolute control over the event queries being built, thus
|
|
|
|
# we're explicitly opting out of any default scopes that may be set.
|
|
|
|
Event.unscoped.recent
|
|
|
|
end
|
|
|
|
|
|
|
|
def current_page
|
|
|
|
(@offset / @limit) + 1
|
|
|
|
end
|
|
|
|
|
|
|
|
def projects
|
|
|
|
@projects.except(:order)
|
|
|
|
end
|
2019-12-21 20:55:43 +05:30
|
|
|
|
|
|
|
def groups
|
|
|
|
strong_memoize(:groups) do
|
|
|
|
groups.except(:order) if @groups
|
|
|
|
end
|
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
2022-07-16 23:28:13 +05:30
|
|
|
|
|
|
|
EventCollection.prepend_mod
|