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

14 lines
320 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 UserUrlConstrainer
def matches?(request)
full_path = request.params[:username]
2017-09-10 17:25:29 +05:30
2018-05-09 12:01:36 +05:30
return false unless NamespacePathValidator.valid_path?(full_path)
2017-09-10 17:25:29 +05:30
2018-05-09 12:01:36 +05:30
User.find_by_full_path(full_path, follow_redirects: request.get?).present?
end
2016-11-03 12:29:30 +05:30
end
end