55 lines
1.8 KiB
Ruby
55 lines
1.8 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module PackagesHelper
|
|
def package_sort_path(options = {})
|
|
"#{request.path}?#{options.to_param}"
|
|
end
|
|
|
|
def nuget_package_registry_url(project_id)
|
|
expose_url(api_v4_projects_packages_nuget_index_path(id: project_id, format: '.json'))
|
|
end
|
|
|
|
def package_registry_instance_url(registry_type)
|
|
expose_url("api/#{::API::API.version}/packages/#{registry_type}")
|
|
end
|
|
|
|
def package_registry_project_url(project_id, registry_type = :maven)
|
|
project_api_path = expose_path(api_v4_projects_path(id: project_id))
|
|
package_registry_project_path = "#{project_api_path}/packages/#{registry_type}"
|
|
expose_url(package_registry_project_path)
|
|
end
|
|
|
|
def package_from_presenter(package)
|
|
presenter = ::Packages::Detail::PackagePresenter.new(package)
|
|
|
|
presenter.detail_view.to_json
|
|
end
|
|
|
|
def pypi_registry_url(project_id)
|
|
full_url = expose_url(api_v4_projects_packages_pypi_simple_package_name_path({ id: project_id, package_name: '' }, true))
|
|
full_url.sub!('://', '://__token__:<your_personal_token>@')
|
|
end
|
|
|
|
def packages_coming_soon_enabled?(resource)
|
|
::Feature.enabled?(:packages_coming_soon, resource) && ::Gitlab.dev_env_or_com?
|
|
end
|
|
|
|
def packages_coming_soon_data(resource)
|
|
return unless packages_coming_soon_enabled?(resource)
|
|
|
|
{
|
|
project_path: ::Gitlab.com? ? 'gitlab-org/gitlab' : 'gitlab-org/gitlab-test',
|
|
suggested_contributions: help_page_path('user/packages/index', anchor: 'suggested-contributions')
|
|
}
|
|
end
|
|
|
|
def packages_list_data(type, resource)
|
|
{
|
|
resource_id: resource.id,
|
|
page_type: type,
|
|
empty_list_help_url: help_page_path('administration/packages/index'),
|
|
empty_list_illustration: image_path('illustrations/no-packages.svg'),
|
|
coming_soon_json: packages_coming_soon_data(resource).to_json
|
|
}
|
|
end
|
|
end
|