debian-mirror-gitlab/app/finders/packages/maven/package_finder.rb

68 lines
1.7 KiB
Ruby
Raw Normal View History

2020-07-28 23:09:34 +05:30
# frozen_string_literal: true
2021-03-08 18:12:59 +05:30
2020-07-28 23:09:34 +05:30
module Packages
module Maven
class PackageFinder
attr_reader :path, :current_user, :project, :group
def initialize(path, current_user, project: nil, group: nil)
@path = path
@current_user = current_user
@project = project
@group = group
end
def execute
packages_with_path.last
end
def execute!
packages_with_path.last!
end
private
def base
if project
packages_for_a_single_project
elsif group
packages_for_multiple_projects
else
2021-03-08 18:12:59 +05:30
::Packages::Package.none
2020-07-28 23:09:34 +05:30
end
end
def packages_with_path
2021-03-08 18:12:59 +05:30
matching_packages = base.only_maven_packages_with_path(path)
matching_packages = matching_packages.order_by_package_file if versionless_package?(matching_packages)
matching_packages
2020-07-28 23:09:34 +05:30
end
2021-03-08 18:12:59 +05:30
def versionless_package?(matching_packages)
return if matching_packages.empty?
# if one matching package is versionless, they all are.
matching_packages.first&.version.nil?
2020-07-28 23:09:34 +05:30
end
# Produces a query that retrieves packages from a single project.
def packages_for_a_single_project
project.packages
end
# Produces a query that retrieves packages from multiple projects that
# the current user can view within a group.
def packages_for_multiple_projects
::Packages::Package.for_projects(projects_visible_to_current_user)
end
# Returns the projects that the current user can view within a group.
def projects_visible_to_current_user
2021-04-17 20:07:23 +05:30
group.all_projects
.public_or_visible_to_user(current_user)
2020-07-28 23:09:34 +05:30
end
end
end
end