debian-mirror-gitlab/app/services/todo_service.rb

346 lines
10 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2016-04-02 18:10:28 +05:30
# TodoService class
#
2016-06-22 15:30:34 +05:30
# Used for creating/updating todos after certain user actions
2016-04-02 18:10:28 +05:30
#
# Ex.
# TodoService.new.new_issue(issue, current_user)
#
class TodoService
# When create an issue we should:
#
# * create a todo for assignee if issue is assigned
# * create a todo for each mentioned user on issue
#
def new_issue(issue, current_user)
new_issuable(issue, current_user)
end
# When update an issue we should:
#
# * mark all pending todos related to the issue for the current user as done
#
2017-08-17 22:00:37 +05:30
def update_issue(issue, current_user, skip_users = [])
update_issuable(issue, current_user, skip_users)
2016-04-02 18:10:28 +05:30
end
# When close an issue we should:
#
# * mark all pending todos related to the target for the current user as done
#
def close_issue(issue, current_user)
mark_pending_todos_as_done(issue, current_user)
end
2018-03-17 18:26:18 +05:30
# When we destroy a todo target we should:
2016-09-29 09:46:39 +05:30
#
2018-03-17 18:26:18 +05:30
# * refresh the todos count cache for all users with todos on the target
2016-09-29 09:46:39 +05:30
#
2018-03-17 18:26:18 +05:30
# This needs to yield back to the caller to destroy the target, because it
# collects the todo users before the todos themselves are deleted, then
# updates the todo counts for those users.
#
def destroy_target(target)
2018-12-13 13:39:08 +05:30
todo_users = UsersWithPendingTodosFinder.new(target).execute.to_a
2018-03-17 18:26:18 +05:30
yield target
todo_users.each(&:update_todos_count_cache)
2016-09-29 09:46:39 +05:30
end
2016-04-02 18:10:28 +05:30
# When we reassign an issue we should:
#
# * create a pending todo for new assignee if issue is assigned
#
2018-03-17 18:26:18 +05:30
def reassigned_issue(issue, current_user, old_assignees = [])
create_assignment_todo(issue, current_user, old_assignees)
2016-04-02 18:10:28 +05:30
end
# When create a merge request we should:
#
# * creates a pending todo for assignee if merge request is assigned
# * create a todo for each mentioned user on merge request
#
def new_merge_request(merge_request, current_user)
new_issuable(merge_request, current_user)
end
# When update a merge request we should:
#
# * create a todo for each mentioned user on merge request
#
2017-08-17 22:00:37 +05:30
def update_merge_request(merge_request, current_user, skip_users = [])
update_issuable(merge_request, current_user, skip_users)
2016-04-02 18:10:28 +05:30
end
# When close a merge request we should:
#
# * mark all pending todos related to the target for the current user as done
#
def close_merge_request(merge_request, current_user)
mark_pending_todos_as_done(merge_request, current_user)
end
# When we reassign a merge request we should:
#
# * creates a pending todo for new assignee if merge request is assigned
#
def reassigned_merge_request(merge_request, current_user)
create_assignment_todo(merge_request, current_user)
end
# When merge a merge request we should:
#
# * mark all pending todos related to the target for the current user as done
#
def merge_merge_request(merge_request, current_user)
mark_pending_todos_as_done(merge_request, current_user)
end
2016-06-02 11:05:42 +05:30
# When a build fails on the HEAD of a merge request we should:
#
2018-11-08 19:23:39 +05:30
# * create a todo for each merge participant
2016-06-02 11:05:42 +05:30
#
def merge_request_build_failed(merge_request)
2018-11-08 19:23:39 +05:30
merge_request.merge_participants.each do |user|
create_build_failed_todo(merge_request, user)
end
2016-06-02 11:05:42 +05:30
end
# When a new commit is pushed to a merge request we should:
#
# * mark all pending todos related to the merge request for that user as done
#
def merge_request_push(merge_request, current_user)
mark_pending_todos_as_done(merge_request, current_user)
end
# When a build is retried to a merge request we should:
#
2018-11-08 19:23:39 +05:30
# * mark all pending todos related to the merge request as done for each merge participant
2016-06-02 11:05:42 +05:30
#
def merge_request_build_retried(merge_request)
2018-11-08 19:23:39 +05:30
merge_request.merge_participants.each do |user|
mark_pending_todos_as_done(merge_request, user)
end
2017-08-17 22:00:37 +05:30
end
2018-11-08 19:23:39 +05:30
# When a merge request could not be merged due to its unmergeable state we should:
2017-08-17 22:00:37 +05:30
#
2018-11-08 19:23:39 +05:30
# * create a todo for each merge participant
2017-08-17 22:00:37 +05:30
#
def merge_request_became_unmergeable(merge_request)
2018-11-08 19:23:39 +05:30
merge_request.merge_participants.each do |user|
create_unmergeable_todo(merge_request, user)
end
2016-06-02 11:05:42 +05:30
end
2016-04-02 18:10:28 +05:30
# When create a note we should:
#
# * mark all pending todos related to the noteable for the note author as done
# * create a todo for each mentioned user on note
#
def new_note(note, current_user)
handle_note(note, current_user)
end
# When update a note we should:
#
# * mark all pending todos related to the noteable for the current user as done
# * create a todo for each new user mentioned on note
#
2017-08-17 22:00:37 +05:30
def update_note(note, current_user, skip_users = [])
handle_note(note, current_user, skip_users)
2016-04-02 18:10:28 +05:30
end
# When an emoji is awarded we should:
#
# * mark all pending todos related to the awardable for the current user as done
#
def new_award_emoji(awardable, current_user)
mark_pending_todos_as_done(awardable, current_user)
end
2016-04-02 18:10:28 +05:30
# When marking pending todos as done we should:
#
# * mark all pending todos related to the target for the current user as done
#
def mark_pending_todos_as_done(target, user)
2016-06-02 11:05:42 +05:30
attributes = attributes_for_target(target)
pending_todos(user, attributes).update_all(state: :done)
2016-06-22 15:30:34 +05:30
user.update_todos_count_cache
end
# When user marks some todos as done
def mark_todos_as_done(todos, current_user)
2017-09-10 17:25:29 +05:30
update_todos_state(todos, current_user, :done)
2016-09-13 17:45:13 +05:30
end
def mark_todos_as_done_by_ids(ids, current_user)
2017-09-10 17:25:29 +05:30
todos = todos_by_ids(ids, current_user)
mark_todos_as_done(todos, current_user)
2017-08-17 22:00:37 +05:30
end
2016-06-22 15:30:34 +05:30
2017-08-17 22:00:37 +05:30
# When user marks some todos as pending
def mark_todos_as_pending(todos, current_user)
2017-09-10 17:25:29 +05:30
update_todos_state(todos, current_user, :pending)
2017-08-17 22:00:37 +05:30
end
def mark_todos_as_pending_by_ids(ids, current_user)
2017-09-10 17:25:29 +05:30
todos = todos_by_ids(ids, current_user)
mark_todos_as_pending(todos, current_user)
2016-04-02 18:10:28 +05:30
end
# When user marks an issue as todo
def mark_todo(issuable, current_user)
attributes = attributes_for_todo(issuable.project, issuable, current_user, Todo::MARKED)
create_todos(current_user, attributes)
end
2016-09-13 17:45:13 +05:30
def todo_exist?(issuable, current_user)
2018-12-13 13:39:08 +05:30
TodosFinder.new(current_user).any_for_target?(issuable)
2016-09-13 17:45:13 +05:30
end
2016-04-02 18:10:28 +05:30
private
2017-09-10 17:25:29 +05:30
def todos_by_ids(ids, current_user)
2018-12-13 13:39:08 +05:30
current_user.todos_limited_to(Array(ids))
2017-09-10 17:25:29 +05:30
end
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
def update_todos_state(todos, current_user, state)
2018-12-13 13:39:08 +05:30
todos_ids = todos.update_state(state)
2017-08-17 22:00:37 +05:30
current_user.update_todos_count_cache
2018-12-13 13:39:08 +05:30
2017-08-17 22:00:37 +05:30
todos_ids
end
2016-06-02 11:05:42 +05:30
def create_todos(users, attributes)
Array(users).map do |user|
2016-06-02 11:05:42 +05:30
next if pending_todos(user, attributes).exists?
2018-03-17 18:26:18 +05:30
2016-08-24 12:49:21 +05:30
todo = Todo.create(attributes.merge(user_id: user.id))
2016-06-22 15:30:34 +05:30
user.update_todos_count_cache
2016-08-24 12:49:21 +05:30
todo
2016-04-02 18:10:28 +05:30
end
end
def new_issuable(issuable, author)
create_assignment_todo(issuable, author)
create_mention_todos(issuable.project, issuable, author)
end
2017-08-17 22:00:37 +05:30
def update_issuable(issuable, author, skip_users = [])
# Skip toggling a task list item in a description
2016-06-22 15:30:34 +05:30
return if toggling_tasks?(issuable)
2017-08-17 22:00:37 +05:30
create_mention_todos(issuable.project, issuable, author, nil, skip_users)
end
2016-06-22 15:30:34 +05:30
def toggling_tasks?(issuable)
issuable.previous_changes.include?('description') &&
issuable.tasks? && issuable.updated_tasks.any?
end
2017-08-17 22:00:37 +05:30
def handle_note(note, author, skip_users = [])
2018-03-27 19:54:05 +05:30
return unless note.can_create_todo?
2016-04-02 18:10:28 +05:30
project = note.project
target = note.noteable
mark_pending_todos_as_done(target, author)
2017-08-17 22:00:37 +05:30
create_mention_todos(project, target, author, note, skip_users)
2016-04-02 18:10:28 +05:30
end
2018-03-17 18:26:18 +05:30
def create_assignment_todo(issuable, author, old_assignees = [])
2017-08-17 22:00:37 +05:30
if issuable.assignees.any?
2018-03-17 18:26:18 +05:30
assignees = issuable.assignees - old_assignees
2016-06-02 11:05:42 +05:30
attributes = attributes_for_todo(issuable.project, issuable, author, Todo::ASSIGNED)
2018-03-17 18:26:18 +05:30
create_todos(assignees, attributes)
2016-04-02 18:10:28 +05:30
end
end
2018-11-18 11:00:15 +05:30
def create_mention_todos(parent, target, author, note = nil, skip_users = [])
2017-08-17 22:00:37 +05:30
# Create Todos for directly addressed users
2018-11-18 11:00:15 +05:30
directly_addressed_users = filter_directly_addressed_users(parent, note || target, author, skip_users)
attributes = attributes_for_todo(parent, target, author, Todo::DIRECTLY_ADDRESSED, note)
2017-08-17 22:00:37 +05:30
create_todos(directly_addressed_users, attributes)
# Create Todos for mentioned users
2018-11-18 11:00:15 +05:30
mentioned_users = filter_mentioned_users(parent, note || target, author, skip_users)
attributes = attributes_for_todo(parent, target, author, Todo::MENTIONED, note)
2016-06-02 11:05:42 +05:30
create_todos(mentioned_users, attributes)
2016-04-02 18:10:28 +05:30
end
2017-08-17 22:00:37 +05:30
def create_build_failed_todo(merge_request, todo_author)
attributes = attributes_for_todo(merge_request.project, merge_request, todo_author, Todo::BUILD_FAILED)
create_todos(todo_author, attributes)
end
2018-11-08 19:23:39 +05:30
def create_unmergeable_todo(merge_request, todo_author)
attributes = attributes_for_todo(merge_request.project, merge_request, todo_author, Todo::UNMERGEABLE)
create_todos(todo_author, attributes)
2016-06-02 11:05:42 +05:30
end
def attributes_for_target(target)
attributes = {
2017-08-17 22:00:37 +05:30
project_id: target&.project&.id,
2016-06-02 11:05:42 +05:30
target_id: target.id,
target_type: target.class.name,
commit_id: nil
}
if target.is_a?(Commit)
attributes.merge!(target_id: nil, commit_id: target.id)
2016-04-02 18:10:28 +05:30
end
2016-06-02 11:05:42 +05:30
attributes
2016-04-02 18:10:28 +05:30
end
2016-06-02 11:05:42 +05:30
def attributes_for_todo(project, target, author, action, note = nil)
attributes_for_target(target).merge!(
2018-11-18 11:00:15 +05:30
project_id: project&.id,
2016-06-02 11:05:42 +05:30
author_id: author.id,
action: action,
note: note
2016-04-02 18:10:28 +05:30
)
end
2016-06-02 11:05:42 +05:30
2018-11-18 11:00:15 +05:30
def filter_todo_users(users, parent, target)
reject_users_without_access(users, parent, target).uniq
2017-08-17 22:00:37 +05:30
end
2018-11-18 11:00:15 +05:30
def filter_mentioned_users(parent, target, author, skip_users = [])
2017-08-17 22:00:37 +05:30
mentioned_users = target.mentioned_users(author) - skip_users
2018-11-18 11:00:15 +05:30
filter_todo_users(mentioned_users, parent, target)
2017-08-17 22:00:37 +05:30
end
2018-11-18 11:00:15 +05:30
def filter_directly_addressed_users(parent, target, author, skip_users = [])
2017-08-17 22:00:37 +05:30
directly_addressed_users = target.directly_addressed_users(author) - skip_users
2018-11-18 11:00:15 +05:30
filter_todo_users(directly_addressed_users, parent, target)
2016-06-02 11:05:42 +05:30
end
2018-11-18 11:00:15 +05:30
def reject_users_without_access(users, parent, target)
if target.is_a?(Note) && target.for_issuable?
2016-06-02 11:05:42 +05:30
target = target.noteable
end
2016-11-03 12:29:30 +05:30
if target.is_a?(Issuable)
select_users(users, :"read_#{target.to_ability_name}", target)
2016-06-02 11:05:42 +05:30
else
2018-11-18 11:00:15 +05:30
select_users(users, :read_project, parent)
2016-06-02 11:05:42 +05:30
end
end
def select_users(users, ability, subject)
users.select do |user|
user.can?(ability.to_sym, subject)
end
end
def pending_todos(user, criteria = {})
2018-12-13 13:39:08 +05:30
PendingTodosFinder.new(user, criteria).execute
2016-06-02 11:05:42 +05:30
end
2016-04-02 18:10:28 +05:30
end