2016-11-14 09:55:31 -05:00
|
|
|
class ProjectUrlConstrainer
|
|
|
|
def matches?(request)
|
|
|
|
namespace_path = request.params[:namespace_id]
|
|
|
|
project_path = request.params[:project_id] || request.params[:id]
|
2017-05-24 16:59:26 -04:00
|
|
|
full_path = [namespace_path, project_path].join('/')
|
2016-11-14 09:55:31 -05:00
|
|
|
|
2017-05-19 20:46:40 -04:00
|
|
|
return false unless DynamicPathValidator.valid_project_path?(full_path)
|
2016-11-14 09:55:31 -05:00
|
|
|
|
2017-08-09 08:41:20 -04:00
|
|
|
# We intentionally allow SELECT(*) here so result of this query can be used
|
2017-08-15 13:44:37 -04:00
|
|
|
# as cache for further Project.find_by_full_path calls within request
|
2017-05-01 16:46:30 -04:00
|
|
|
Project.find_by_full_path(full_path, follow_redirects: request.get?).present?
|
2016-11-14 09:55:31 -05:00
|
|
|
end
|
|
|
|
end
|