summaryrefslogtreecommitdiff
path: root/lib/gitlab/gl_repository.rb
blob: 07c0abcce235df67a275b6e20ba3cd0221851d79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module Gitlab
  module GlRepository
    def self.gl_repository(project, is_wiki)
      "#{is_wiki ? 'wiki' : 'project'}-#{project.id}"
    end

    def self.parse(gl_repository)
      match_data = /\A(project|wiki)-([1-9][0-9]*)\z/.match(gl_repository)
      unless match_data
        raise ArgumentError, "Invalid GL Repository \"#{gl_repository}\""
      end

      type, id = match_data.captures
      project = Project.find_by(id: id)
      wiki = type == 'wiki'

      [project, wiki]
    end
  end
end