2017-05-01 16:46:30 -04:00
module RoutableActions
extend ActiveSupport :: Concern
2017-05-04 20:06:01 -04:00
def find_routable! ( routable_klass , requested_full_path , extra_authorization_proc : nil )
2017-05-04 17:20:13 -04:00
routable = routable_klass . find_by_full_path ( requested_full_path , follow_redirects : request . get? )
2017-05-11 16:57:03 -04:00
if routable_authorized? ( routable , extra_authorization_proc )
2017-05-04 17:20:13 -04:00
ensure_canonical_path ( routable , requested_full_path )
routable
else
2017-12-11 09:21:06 -05:00
handle_not_found_or_authorized ( routable )
2017-05-04 17:20:13 -04:00
nil
end
end
2017-12-11 09:21:06 -05:00
# This is overridden in gitlab-ee.
def handle_not_found_or_authorized ( _routable )
route_not_found
end
2017-05-11 16:57:03 -04:00
def routable_authorized? ( routable , extra_authorization_proc )
action = :" read_ #{ routable . class . to_s . underscore } "
2017-05-04 17:20:13 -04:00
return false unless can? ( current_user , action , routable )
2017-05-04 20:06:01 -04:00
if extra_authorization_proc
extra_authorization_proc . call ( routable )
2017-05-04 17:20:13 -04:00
else
true
end
end
2017-05-18 15:56:39 -04:00
def ensure_canonical_path ( routable , requested_full_path )
2017-05-01 16:46:30 -04:00
return unless request . get?
2017-05-04 20:06:01 -04:00
canonical_path = routable . full_path
2017-05-18 15:56:39 -04:00
if canonical_path != requested_full_path
if canonical_path . casecmp ( requested_full_path ) != 0
flash [ :notice ] = " #{ routable . class . to_s . titleize } ' #{ requested_full_path } ' was moved to ' #{ canonical_path } '. Please update any links and bookmarks that may still have the old path. "
2017-05-04 20:06:01 -04:00
end
2018-01-11 11:34:01 -05:00
2017-05-18 19:23:05 -04:00
redirect_to build_canonical_path ( routable )
2017-05-01 16:46:30 -04:00
end
end
end