2016-09-20 00:08:04 -04:00
|
|
|
class LabelsFinder < UnionFinder
|
2016-09-19 16:16:16 -04:00
|
|
|
def initialize(current_user, params = {})
|
|
|
|
@current_user = current_user
|
|
|
|
@params = params
|
|
|
|
end
|
|
|
|
|
2016-10-28 05:31:45 -04:00
|
|
|
def execute(skip_authorization: false)
|
|
|
|
@skip_authorization = skip_authorization
|
2016-11-16 04:51:47 -05:00
|
|
|
items = find_union(label_ids, Label) || Label.none
|
2016-09-19 16:16:16 -04:00
|
|
|
items = with_title(items)
|
|
|
|
sort(items)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2016-10-28 05:31:45 -04:00
|
|
|
attr_reader :current_user, :params, :skip_authorization
|
2016-09-19 16:16:16 -04:00
|
|
|
|
2016-09-20 00:08:04 -04:00
|
|
|
def label_ids
|
2016-09-19 16:16:16 -04:00
|
|
|
label_ids = []
|
2016-09-29 14:50:14 -04:00
|
|
|
|
2016-11-16 04:51:47 -05:00
|
|
|
if project?
|
|
|
|
if project
|
|
|
|
label_ids << project.group.labels if project.group.present?
|
|
|
|
label_ids << project.labels
|
|
|
|
end
|
2016-09-29 14:50:14 -04:00
|
|
|
else
|
|
|
|
label_ids << Label.where(group_id: projects.group_ids)
|
|
|
|
label_ids << Label.where(project_id: projects.select(:id))
|
|
|
|
end
|
|
|
|
|
|
|
|
label_ids
|
2016-09-19 16:16:16 -04:00
|
|
|
end
|
|
|
|
|
2016-09-20 10:55:31 -04:00
|
|
|
def sort(items)
|
2016-10-19 09:59:31 -04:00
|
|
|
items.reorder(title: :asc)
|
2016-09-20 10:55:31 -04:00
|
|
|
end
|
|
|
|
|
2016-09-19 16:16:16 -04:00
|
|
|
def with_title(items)
|
2016-10-25 02:04:38 -04:00
|
|
|
return items if title.nil?
|
|
|
|
return items.none if title.blank?
|
|
|
|
|
|
|
|
items.where(title: title)
|
2016-09-19 16:16:16 -04:00
|
|
|
end
|
|
|
|
|
2016-11-16 04:51:47 -05:00
|
|
|
def group?
|
|
|
|
params[:group_id].present?
|
2016-09-19 16:16:16 -04:00
|
|
|
end
|
|
|
|
|
2016-11-16 04:51:47 -05:00
|
|
|
def project?
|
|
|
|
params[:project_id].present?
|
2016-09-19 16:16:16 -04:00
|
|
|
end
|
|
|
|
|
2016-11-16 04:51:47 -05:00
|
|
|
def projects?
|
|
|
|
params[:project_ids].present?
|
2016-09-29 14:50:14 -04:00
|
|
|
end
|
|
|
|
|
2016-09-19 16:16:16 -04:00
|
|
|
def title
|
2016-10-25 02:04:38 -04:00
|
|
|
params[:title] || params[:name]
|
2016-09-19 16:16:16 -04:00
|
|
|
end
|
|
|
|
|
2016-09-29 14:50:14 -04:00
|
|
|
def project
|
|
|
|
return @project if defined?(@project)
|
|
|
|
|
2016-11-16 04:51:47 -05:00
|
|
|
if project?
|
|
|
|
@project = Project.find(params[:project_id])
|
|
|
|
@project = nil unless authorized_to_read_labels?(@project)
|
2016-09-29 14:50:14 -04:00
|
|
|
else
|
|
|
|
@project = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
@project
|
|
|
|
end
|
|
|
|
|
2016-09-19 16:16:16 -04:00
|
|
|
def projects
|
|
|
|
return @projects if defined?(@projects)
|
|
|
|
|
2016-11-16 04:51:47 -05:00
|
|
|
@projects = skip_authorization ? Project.all : ProjectsFinder.new.execute(current_user)
|
|
|
|
@projects = @projects.in_namespace(params[:group_id]) if group?
|
|
|
|
@projects = @projects.where(id: params[:project_ids]) if projects?
|
2016-09-20 10:55:31 -04:00
|
|
|
@projects = @projects.reorder(nil)
|
2016-09-19 16:16:16 -04:00
|
|
|
|
|
|
|
@projects
|
|
|
|
end
|
2016-09-29 14:50:14 -04:00
|
|
|
|
2016-11-16 04:51:47 -05:00
|
|
|
def authorized_to_read_labels?(project)
|
|
|
|
return true if skip_authorization
|
|
|
|
|
|
|
|
Ability.allowed?(current_user, :read_label, project)
|
2016-09-29 14:50:14 -04:00
|
|
|
end
|
2016-09-19 16:16:16 -04:00
|
|
|
end
|