Commit 2df72783 authored by Brett Walker's avatar Brett Walker

Refactor of entity_leave_service

to clean up specs and CodeReuse/ActiveRecord
parent ac0af237
...@@ -90,6 +90,7 @@ class Issue < ApplicationRecord ...@@ -90,6 +90,7 @@ class Issue < ApplicationRecord
alias_method :issuing_parent, :project alias_method :issuing_parent, :project
scope :in_projects, ->(project_ids) { where(project_id: project_ids) } scope :in_projects, ->(project_ids) { where(project_id: project_ids) }
scope :not_in_projects, ->(project_ids) { where.not(project_id: project_ids) }
scope :with_due_date, -> { where.not(due_date: nil) } scope :with_due_date, -> { where.not(due_date: nil) }
scope :without_due_date, -> { where(due_date: nil) } scope :without_due_date, -> { where(due_date: nil) }
......
...@@ -8,6 +8,7 @@ class IssueAssignee < ApplicationRecord ...@@ -8,6 +8,7 @@ class IssueAssignee < ApplicationRecord
scope :in_projects, ->(project_ids) { joins(:issue).where("issues.project_id in (?)", project_ids) } scope :in_projects, ->(project_ids) { joins(:issue).where("issues.project_id in (?)", project_ids) }
scope :on_issues, ->(issue_ids) { where(issue_id: issue_ids) } scope :on_issues, ->(issue_ids) { where(issue_id: issue_ids) }
scope :for_assignee, ->(user) { where(assignee: user) }
end end
IssueAssignee.prepend_if_ee('EE::IssueAssignee') IssueAssignee.prepend_if_ee('EE::IssueAssignee')
...@@ -7,16 +7,14 @@ module Todos ...@@ -7,16 +7,14 @@ module Todos
attr_reader :user, :entity attr_reader :user, :entity
# rubocop: disable CodeReuse/ActiveRecord
def initialize(user_id, entity_id, entity_type) def initialize(user_id, entity_id, entity_type)
unless %w(Group Project).include?(entity_type) unless %w(Group Project).include?(entity_type)
raise ArgumentError.new("#{entity_type} is not an entity user can leave") raise ArgumentError.new("#{entity_type} is not an entity user can leave")
end end
@user = User.find_by(id: user_id) @user = UserFinder.new(user_id).find_by_id
@entity = entity_type.constantize.find_by(id: entity_id) @entity = entity_type.constantize.find_by(id: entity_id) # rubocop: disable CodeReuse/ActiveRecord
end end
# rubocop: enable CodeReuse/ActiveRecord
def execute def execute
return unless entity && user return unless entity && user
...@@ -42,34 +40,37 @@ module Todos ...@@ -42,34 +40,37 @@ module Todos
end end
end end
# rubocop: disable CodeReuse/ActiveRecord
def remove_confidential_issue_todos def remove_confidential_issue_todos
Todo.where( Todo
target_id: confidential_issues.select(:id), target_type: Issue.name, user_id: user.id .for_target(confidential_issues.select(:id))
).delete_all .for_type(Issue.name)
.for_user(user)
.delete_all
end end
# rubocop: enable CodeReuse/ActiveRecord
# rubocop: disable CodeReuse/ActiveRecord
def remove_project_todos def remove_project_todos
# Issues are viewable by guests (even in private projects), so remove those todos # Issues are viewable by guests (even in private projects), so remove those todos
# from projects without guest access # from projects without guest access
Todo.where(project_id: non_authorized_guest_projects, user_id: user.id) Todo
.for_project(non_authorized_guest_projects)
.for_user(user)
.delete_all .delete_all
# MRs require reporter access, so remove those todos that are not authorized # MRs require reporter access, so remove those todos that are not authorized
Todo.where(project_id: non_authorized_reporter_projects, target_type: MergeRequest.name, user_id: user.id) Todo
.for_project(non_authorized_reporter_projects)
.for_type(MergeRequest.name)
.for_user(user)
.delete_all .delete_all
end end
# rubocop: enable CodeReuse/ActiveRecord
# rubocop: disable CodeReuse/ActiveRecord
def remove_group_todos def remove_group_todos
Todo.where(group_id: non_authorized_groups, user_id: user.id).delete_all Todo
.for_group(non_authorized_groups)
.for_user(user)
.delete_all
end end
# rubocop: enable CodeReuse/ActiveRecord
# rubocop: disable CodeReuse/ActiveRecord
def projects def projects
condition = case entity condition = case entity
when Project when Project
...@@ -78,55 +79,40 @@ module Todos ...@@ -78,55 +79,40 @@ module Todos
{ namespace_id: non_authorized_reporter_groups } { namespace_id: non_authorized_reporter_groups }
end end
Project.where(condition) Project.where(condition) # rubocop: disable CodeReuse/ActiveRecord
end end
# rubocop: enable CodeReuse/ActiveRecord
# rubocop: disable CodeReuse/ActiveRecord
def authorized_reporter_projects def authorized_reporter_projects
user.authorized_projects(Gitlab::Access::REPORTER).select(:id) user.authorized_projects(Gitlab::Access::REPORTER).select(:id)
end end
# rubocop: enable CodeReuse/ActiveRecord
# rubocop: disable CodeReuse/ActiveRecord
def authorized_guest_projects def authorized_guest_projects
user.authorized_projects(Gitlab::Access::GUEST).select(:id) user.authorized_projects(Gitlab::Access::GUEST).select(:id)
end end
# rubocop: enable CodeReuse/ActiveRecord
# rubocop: disable CodeReuse/ActiveRecord
def non_authorized_reporter_projects def non_authorized_reporter_projects
projects.where('id NOT IN (?)', authorized_reporter_projects) projects.id_not_in(authorized_reporter_projects)
end end
# rubocop: enable CodeReuse/ActiveRecord
# rubocop: disable CodeReuse/ActiveRecord
def non_authorized_guest_projects def non_authorized_guest_projects
projects.where('id NOT IN (?)', authorized_guest_projects) projects.id_not_in(authorized_guest_projects)
end end
# rubocop: enable CodeReuse/ActiveRecord
# rubocop: disable CodeReuse/ActiveRecord
def authorized_reporter_groups def authorized_reporter_groups
GroupsFinder.new(user, min_access_level: Gitlab::Access::REPORTER).execute.select(:id) GroupsFinder.new(user, min_access_level: Gitlab::Access::REPORTER).execute.select(:id)
end end
# rubocop: enable CodeReuse/ActiveRecord
# rubocop: disable CodeReuse/ActiveRecord
def non_authorized_groups def non_authorized_groups
return [] unless entity.is_a?(Namespace) return [] unless entity.is_a?(Namespace)
entity.self_and_descendants.select(:id) entity.self_and_descendants.select(:id)
.where('id NOT IN (?)', GroupsFinder.new(user).execute.select(:id)) .id_not_in(GroupsFinder.new(user).execute.select(:id))
end end
# rubocop: enable CodeReuse/ActiveRecord
# rubocop: disable CodeReuse/ActiveRecord
def non_authorized_reporter_groups def non_authorized_reporter_groups
entity.self_and_descendants.select(:id) entity.self_and_descendants.select(:id)
.where('id NOT IN (?)', authorized_reporter_groups) .id_not_in(authorized_reporter_groups)
end end
# rubocop: enable CodeReuse/ActiveRecord
def user_has_reporter_access? def user_has_reporter_access?
return unless entity.is_a?(Namespace) return unless entity.is_a?(Namespace)
...@@ -134,16 +120,16 @@ module Todos ...@@ -134,16 +120,16 @@ module Todos
entity.member?(User.find(user.id), Gitlab::Access::REPORTER) entity.member?(User.find(user.id), Gitlab::Access::REPORTER)
end end
# rubocop: disable CodeReuse/ActiveRecord
def confidential_issues def confidential_issues
assigned_ids = IssueAssignee.select(:issue_id).where(user_id: user.id) assigned_ids = IssueAssignee.select(:issue_id).for_assignee(user)
Issue.where(project_id: projects, confidential: true) Issue
.where('project_id NOT IN(?)', authorized_reporter_projects) .in_projects(projects)
.where('author_id != ?', user.id) .confidential_only
.where('id NOT IN (?)', assigned_ids) .not_in_projects(authorized_reporter_projects)
.not_authored_by(user)
.id_not_in(assigned_ids)
end end
# rubocop: enable CodeReuse/ActiveRecord
end end
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment