gitlab-org--gitlab-foss/app/finders/group_projects_finder.rb

43 lines
1.1 KiB
Ruby
Raw Normal View History

2016-03-20 20:03:53 +00:00
class GroupProjectsFinder < UnionFinder
def initialize(group, options = {})
@group = group
2016-03-20 20:03:53 +00:00
@options = options
end
def execute(current_user = nil)
segments = group_projects(current_user)
find_union(segments, Project)
end
private
def group_projects(current_user)
only_owned = @options.fetch(:only_owned, false)
2016-03-20 20:30:08 +00:00
only_shared = @options.fetch(:only_shared, false)
2016-03-20 20:03:53 +00:00
projects = []
if current_user
if @group.users.include?(current_user)
2016-03-20 20:30:08 +00:00
projects << @group.projects unless only_shared
projects << @group.shared_projects unless only_owned
2016-03-20 20:03:53 +00:00
else
2016-03-20 20:30:08 +00:00
unless only_shared
2016-03-20 20:03:53 +00:00
projects << @group.projects.visible_to_user(current_user)
projects << @group.projects.public_to_user(current_user)
end
2016-03-20 20:30:08 +00:00
unless only_owned
2016-03-20 20:03:53 +00:00
projects << @group.shared_projects.visible_to_user(current_user)
projects << @group.shared_projects.public_to_user(current_user)
end
end
else
2016-03-20 20:30:08 +00:00
projects << @group.projects.public_only unless only_shared
projects << @group.shared_projects.public_only unless only_owned
2016-03-20 20:03:53 +00:00
end
projects
end
end