summaryrefslogtreecommitdiff
path: root/lib/container_registry/path.rb
blob: f32df1bc0d11cdf3629f516b057e172a8d7d3809 (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
module ContainerRegistry
  class Path
    InvalidRegistryPathError = Class.new(StandardError)

    def initialize(name)
      @nodes = name.to_s.split('/')
    end

    def valid?
      @nodes.size > 1 &&
      @nodes.size < Namespace::NUMBER_OF_ANCESTORS_ALLOWED
    end

    def components
      raise InvalidRegistryPathError unless valid?

      @components ||= @nodes.size.downto(2).map do |length|
        @nodes.take(length).join('/')
      end
    end

    def repository_project
      @project ||= Project.where_full_path_in(components.first(3))&.first
    end

    def repository_name
    end
  end
end