2018-12-13 13:39:08 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# Finder for retrieving the pending todos of a user, optionally filtered using
|
|
|
|
# various fields.
|
|
|
|
#
|
|
|
|
# While this finder is a bit more verbose compared to use
|
|
|
|
# `where(params.slice(...))`, it allows us to decouple the input parameters from
|
|
|
|
# the actual column names. For example, if we ever decide to use separate
|
|
|
|
# columns for target types (e.g. `issue_id`, `merge_request_id`, etc), we no
|
|
|
|
# longer need to change _everything_ that uses this finder. Instead, we just
|
|
|
|
# change the various `by_*` methods in this finder, without having to touch
|
|
|
|
# everything that uses it.
|
|
|
|
class PendingTodosFinder
|
2021-04-29 21:17:54 +05:30
|
|
|
attr_reader :users, :params
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
# users - The list of users to retrieve the todos for.
|
2018-12-13 13:39:08 +05:30
|
|
|
# params - A Hash containing columns and values to use for filtering todos.
|
2021-04-29 21:17:54 +05:30
|
|
|
def initialize(users, params = {})
|
|
|
|
@users = users
|
2018-12-13 13:39:08 +05:30
|
|
|
@params = params
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute
|
2021-04-29 21:17:54 +05:30
|
|
|
todos = Todo.for_user(users)
|
|
|
|
todos = todos.pending
|
2018-12-13 13:39:08 +05:30
|
|
|
todos = by_project(todos)
|
|
|
|
todos = by_target_id(todos)
|
|
|
|
todos = by_target_type(todos)
|
2021-09-04 01:27:46 +05:30
|
|
|
todos = by_discussion(todos)
|
2022-05-07 20:08:51 +05:30
|
|
|
todos = by_commit_id(todos)
|
|
|
|
by_action(todos)
|
2018-12-13 13:39:08 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def by_project(todos)
|
|
|
|
if (id = params[:project_id])
|
|
|
|
todos.for_project(id)
|
|
|
|
else
|
|
|
|
todos
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def by_target_id(todos)
|
|
|
|
if (id = params[:target_id])
|
|
|
|
todos.for_target(id)
|
|
|
|
else
|
|
|
|
todos
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def by_target_type(todos)
|
|
|
|
if (type = params[:target_type])
|
|
|
|
todos.for_type(type)
|
|
|
|
else
|
|
|
|
todos
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def by_commit_id(todos)
|
|
|
|
if (id = params[:commit_id])
|
|
|
|
todos.for_commit(id)
|
|
|
|
else
|
|
|
|
todos
|
|
|
|
end
|
|
|
|
end
|
2021-09-04 01:27:46 +05:30
|
|
|
|
|
|
|
def by_discussion(todos)
|
|
|
|
if (discussion = params[:discussion])
|
|
|
|
todos.for_note(discussion.notes)
|
|
|
|
else
|
|
|
|
todos
|
|
|
|
end
|
|
|
|
end
|
2022-05-07 20:08:51 +05:30
|
|
|
|
|
|
|
def by_action(todos)
|
|
|
|
return todos if params[:action].blank?
|
|
|
|
|
|
|
|
todos.for_action(params[:action])
|
|
|
|
end
|
2018-12-13 13:39:08 +05:30
|
|
|
end
|