summaryrefslogtreecommitdiff
path: root/lib/constraints/project_url_constrainer.rb
blob: 4c0aee6c48f48cd90f8181c46048ef97a9503646 (plain)
1
2
3
4
5
6
7
8
9
10
11
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 DynamicPathValidator.valid_project_path?(full_path)

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