project_url_constrainer.rb 382 字节
Newer Older
1 2 3 4 5 6
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

B
Bob Van Landuyt 已提交
7
    return false unless DynamicPathValidator.valid?(full_path)
8

9
    Project.find_by_full_path(full_path, follow_redirects: request.get?).present?
10 11
  end
end