2018-09-11 15:08:34 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-20 08:59:59 -05:00
|
|
|
# TodosFinder
|
2016-02-17 22:20:31 -05:00
|
|
|
#
|
2016-02-20 08:59:59 -05:00
|
|
|
# Used to filter Todos by set of params
|
2016-02-17 22:20:31 -05:00
|
|
|
#
|
|
|
|
# Arguments:
|
|
|
|
# current_user - which user use
|
|
|
|
# params:
|
|
|
|
# action_id: integer
|
|
|
|
# author_id: integer
|
|
|
|
# project_id; integer
|
2016-07-11 02:10:04 -04:00
|
|
|
# state: 'pending' (default) or 'done'
|
2016-02-17 22:20:31 -05:00
|
|
|
# type: 'Issue' or 'MergeRequest'
|
|
|
|
#
|
|
|
|
|
2016-02-20 08:59:59 -05:00
|
|
|
class TodosFinder
|
2017-12-11 09:21:06 -05:00
|
|
|
prepend FinderWithCrossProjectAccess
|
|
|
|
include FinderMethods
|
2018-07-16 09:35:19 -04:00
|
|
|
include Gitlab::Utils::StrongMemoize
|
2017-12-11 09:21:06 -05:00
|
|
|
|
|
|
|
requires_cross_project_access unless: -> { project? }
|
|
|
|
|
2017-02-21 18:32:18 -05:00
|
|
|
NONE = '0'.freeze
|
2016-02-17 22:20:31 -05:00
|
|
|
|
2018-09-20 09:18:04 -04:00
|
|
|
TODO_TYPES = Set.new(%w(Issue MergeRequest Epic)).freeze
|
|
|
|
|
2016-02-17 22:20:31 -05:00
|
|
|
attr_accessor :current_user, :params
|
|
|
|
|
2016-06-30 11:34:19 -04:00
|
|
|
def initialize(current_user, params = {})
|
2016-02-17 22:20:31 -05:00
|
|
|
@current_user = current_user
|
|
|
|
@params = params
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute
|
2016-06-01 19:44:35 -04:00
|
|
|
items = current_user.todos
|
2016-02-17 22:20:31 -05:00
|
|
|
items = by_action_id(items)
|
2016-06-22 13:15:09 -04:00
|
|
|
items = by_action(items)
|
2016-02-17 22:20:31 -05:00
|
|
|
items = by_author(items)
|
|
|
|
items = by_state(items)
|
|
|
|
items = by_type(items)
|
2018-07-16 09:35:19 -04:00
|
|
|
items = by_group(items)
|
2016-08-12 08:29:59 -04:00
|
|
|
# Filtering by project HAS TO be the last because we use
|
|
|
|
# the project IDs yielded by the todos query thus far
|
|
|
|
items = by_project(items)
|
2016-02-17 22:20:31 -05:00
|
|
|
|
2016-07-26 17:21:20 -04:00
|
|
|
sort(items)
|
2016-02-17 22:20:31 -05:00
|
|
|
end
|
|
|
|
|
2018-09-20 11:05:26 -04:00
|
|
|
# Returns `true` if the current user has any todos for the given target.
|
|
|
|
#
|
|
|
|
# target - The value of the `target_type` column, such as `Issue`.
|
|
|
|
def any_for_target?(target)
|
|
|
|
current_user.todos.any_for_target?(target)
|
|
|
|
end
|
|
|
|
|
2016-02-17 22:20:31 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
def action_id?
|
2017-06-02 13:11:26 -04:00
|
|
|
action_id.present? && Todo::ACTION_NAMES.key?(action_id.to_i)
|
2016-02-17 22:20:31 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def action_id
|
|
|
|
params[:action_id]
|
|
|
|
end
|
|
|
|
|
2016-06-22 13:15:09 -04:00
|
|
|
def to_action_id
|
|
|
|
Todo::ACTION_NAMES.key(action.to_sym)
|
|
|
|
end
|
|
|
|
|
|
|
|
def action?
|
|
|
|
action.present? && to_action_id
|
|
|
|
end
|
|
|
|
|
|
|
|
def action
|
|
|
|
params[:action]
|
|
|
|
end
|
|
|
|
|
2016-02-17 22:20:31 -05:00
|
|
|
def author?
|
|
|
|
params[:author_id].present?
|
|
|
|
end
|
|
|
|
|
|
|
|
def author
|
2018-09-20 09:18:04 -04:00
|
|
|
strong_memoize(:author) do
|
2016-02-17 22:20:31 -05:00
|
|
|
if author? && params[:author_id] != NONE
|
|
|
|
User.find(params[:author_id])
|
|
|
|
end
|
2018-09-20 09:18:04 -04:00
|
|
|
end
|
2016-02-17 22:20:31 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def project?
|
|
|
|
params[:project_id].present?
|
|
|
|
end
|
|
|
|
|
2018-07-16 09:35:19 -04:00
|
|
|
def group?
|
|
|
|
params[:group_id].present?
|
|
|
|
end
|
|
|
|
|
2016-02-17 22:20:31 -05:00
|
|
|
def project
|
2018-09-20 09:18:04 -04:00
|
|
|
strong_memoize(:project) do
|
|
|
|
Project.find_without_deleted(params[:project_id]) if project?
|
2016-02-17 22:20:31 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-07-16 09:35:19 -04:00
|
|
|
def group
|
|
|
|
strong_memoize(:group) do
|
|
|
|
Group.find(params[:group_id])
|
2018-06-13 12:11:10 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-02-17 22:20:31 -05:00
|
|
|
def type?
|
2018-09-20 09:18:04 -04:00
|
|
|
type.present? && TODO_TYPES.include?(type)
|
2016-02-17 22:20:31 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def type
|
|
|
|
params[:type]
|
|
|
|
end
|
|
|
|
|
2016-07-26 17:21:20 -04:00
|
|
|
def sort(items)
|
2018-09-20 09:18:04 -04:00
|
|
|
if params[:sort]
|
|
|
|
items.sort_by_attribute(params[:sort])
|
|
|
|
else
|
|
|
|
items.order_id_desc
|
|
|
|
end
|
2016-07-26 17:21:20 -04:00
|
|
|
end
|
|
|
|
|
2016-06-22 13:15:09 -04:00
|
|
|
def by_action(items)
|
|
|
|
if action?
|
2018-09-20 09:18:04 -04:00
|
|
|
items.for_action(to_action_id)
|
|
|
|
else
|
|
|
|
items
|
2016-06-22 13:15:09 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-02-17 22:20:31 -05:00
|
|
|
def by_action_id(items)
|
|
|
|
if action_id?
|
2018-09-20 09:18:04 -04:00
|
|
|
items.for_action(action_id)
|
|
|
|
else
|
|
|
|
items
|
2016-02-17 22:20:31 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def by_author(items)
|
|
|
|
if author?
|
2018-09-20 09:18:04 -04:00
|
|
|
items.for_author(author)
|
|
|
|
else
|
|
|
|
items
|
2016-02-17 22:20:31 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def by_project(items)
|
|
|
|
if project?
|
2018-09-20 09:18:04 -04:00
|
|
|
items.for_project(project)
|
|
|
|
else
|
|
|
|
items
|
2018-07-16 09:35:19 -04:00
|
|
|
end
|
|
|
|
end
|
2016-02-17 22:20:31 -05:00
|
|
|
|
2018-07-16 09:35:19 -04:00
|
|
|
def by_group(items)
|
2018-09-20 09:18:04 -04:00
|
|
|
if group?
|
|
|
|
items.for_group_and_descendants(group)
|
|
|
|
else
|
|
|
|
items
|
|
|
|
end
|
2018-07-16 09:35:19 -04:00
|
|
|
end
|
|
|
|
|
2016-02-17 22:20:31 -05:00
|
|
|
def by_state(items)
|
2018-09-20 09:18:04 -04:00
|
|
|
if params[:state].to_s == 'done'
|
2016-02-17 22:20:31 -05:00
|
|
|
items.done
|
|
|
|
else
|
|
|
|
items.pending
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def by_type(items)
|
|
|
|
if type?
|
2018-09-20 09:18:04 -04:00
|
|
|
items.for_type(type)
|
|
|
|
else
|
|
|
|
items
|
2016-02-17 22:20:31 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|