d598e4fd93
Enables frozen for the following: * lib/*.rb * lib/banzai/**/*.rb * lib/bitbucket/**/*.rb * lib/constraints/**/*.rb * lib/container_registry/**/*.rb * lib/declarative_policy/**/*.rb Partially addresses #47424.
17 lines
622 B
Ruby
17 lines
622 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Constraints
|
|
class ProjectUrlConstrainer
|
|
def matches?(request)
|
|
namespace_path = request.params[:namespace_id]
|
|
project_path = request.params[:project_id] || request.params[:id]
|
|
full_path = [namespace_path, project_path].join('/')
|
|
|
|
return false unless ProjectPathValidator.valid_path?(full_path)
|
|
|
|
# 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
|
|
end
|
|
end
|