2016-11-07 08:16:04 -05:00
|
|
|
class UserUrlConstrainer
|
|
|
|
def matches?(request)
|
2017-05-24 16:59:26 -04:00
|
|
|
full_path = request.params[:username]
|
|
|
|
|
|
|
|
return false unless DynamicPathValidator.valid_user_path?(full_path)
|
|
|
|
|
|
|
|
User.find_by_full_path(full_path, follow_redirects: request.get?).present?
|
2016-10-06 08:14:24 -04:00
|
|
|
end
|
|
|
|
end
|