Welcome to mirror list, hosted at ThFree Co, Russian Federation.

listing.rb « catalog « ci « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9baf5e7b2ccd8c6dc45638b4adeed95aae40f8c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# frozen_string_literal: true

module Ci
  module Catalog
    class Listing
      # This class is the SSoT to displaying the list of resources in the CI/CD Catalog.
      # This model is not directly backed by a table and joins catalog resources
      # with projects to return relevant data.

      MIN_SEARCH_LENGTH = 3

      def initialize(current_user)
        @current_user = current_user
      end

      def resources(namespace: nil, sort: nil, search: nil, scope: :all)
        relation = Ci::Catalog::Resource.published.joins(:project).includes(:project)
        relation = by_scope(relation, scope)
        relation = by_namespace(relation, namespace)
        relation = by_search(relation, search)

        case sort.to_s
        when 'name_desc' then relation.order_by_name_desc
        when 'name_asc' then relation.order_by_name_asc
        when 'latest_released_at_desc' then relation.order_by_latest_released_at_desc
        when 'latest_released_at_asc' then relation.order_by_latest_released_at_asc
        when 'created_at_asc' then relation.order_by_created_at_asc
        else
          relation.order_by_created_at_desc
        end
      end

      def find_resource(id:)
        resource = Ci::Catalog::Resource.find_by_id(id)

        return unless resource.present?
        return unless resource.published?
        return unless Ability.allowed?(current_user, :read_code, resource.project)

        resource
      end

      private

      attr_reader :current_user

      def by_namespace(relation, namespace)
        return relation unless namespace
        raise ArgumentError, 'Namespace is not a root namespace' unless namespace.root?

        relation.merge(Project.in_namespace(namespace.self_and_descendant_ids))
      end

      def by_search(relation, search)
        return relation unless search
        return relation.none if search.length < MIN_SEARCH_LENGTH

        relation.search(search)
      end

      def by_scope(relation, scope)
        if scope == :namespaces && Feature.enabled?(:ci_guard_for_catalog_resource_scope, current_user)
          relation.merge(Project.visible_to_user(current_user))
        else
          relation.merge(Project.public_or_visible_to_user(current_user))
        end
      end
    end
  end
end