2fdda74458
This makes sure that we always have a repository type when trying to parse a repository from a path. This is needed because sometimes we want to perform access checks as if the project already existed, for example when creating a project on push. Before this we were only doing that when accessing git over http, this makes sure it also works correctly when accessing git over SSH
43 lines
964 B
Ruby
43 lines
964 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module GlRepository
|
|
PROJECT = RepoType.new(
|
|
name: :project,
|
|
access_checker_class: Gitlab::GitAccess,
|
|
repository_accessor: -> (project) { project.repository }
|
|
).freeze
|
|
WIKI = RepoType.new(
|
|
name: :wiki,
|
|
access_checker_class: Gitlab::GitAccessWiki,
|
|
repository_accessor: -> (project) { project.wiki.repository }
|
|
).freeze
|
|
|
|
TYPES = {
|
|
PROJECT.name.to_s => PROJECT,
|
|
WIKI.name.to_s => WIKI
|
|
}.freeze
|
|
|
|
def self.types
|
|
TYPES
|
|
end
|
|
|
|
def self.parse(gl_repository)
|
|
type_name, _id = gl_repository.split('-').first
|
|
type = types[type_name]
|
|
subject_id = type&.fetch_id(gl_repository)
|
|
|
|
unless subject_id
|
|
raise ArgumentError, "Invalid GL Repository \"#{gl_repository}\""
|
|
end
|
|
|
|
project = Project.find_by_id(subject_id)
|
|
|
|
[project, type]
|
|
end
|
|
|
|
def self.default_type
|
|
PROJECT
|
|
end
|
|
end
|
|
end
|