2017-08-17 22:00:37 +05:30
|
|
|
class UserUrlConstrainer
|
|
|
|
def matches?(request)
|
2017-09-10 17:25:29 +05:30
|
|
|
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-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
end
|