debian-mirror-gitlab/lib/constraints/project_url_constrainer.rb

19 lines
686 B
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2018-05-09 12:01:36 +05:30
module Constraints
class ProjectUrlConstrainer
2019-03-13 22:55:13 +05:30
def matches?(request, existence_check: true)
2018-05-09 12:01:36 +05:30
namespace_path = request.params[:namespace_id]
project_path = request.params[:project_id] || request.params[:id]
full_path = [namespace_path, project_path].join('/')
2017-08-17 22:00:37 +05:30
2018-05-09 12:01:36 +05:30
return false unless ProjectPathValidator.valid_path?(full_path)
2019-03-13 22:55:13 +05:30
return true unless existence_check
2017-08-17 22:00:37 +05:30
2018-05-09 12:01:36 +05:30
# We intentionally allow SELECT(*) here so result of this query can be used
# as cache for further Project.find_by_full_path calls within request
Project.find_by_full_path(full_path, follow_redirects: request.get?).present?
end
2017-08-17 22:00:37 +05:30
end
end