Opened 16 years ago
Last modified 13 years ago
#9805 closed
reverse() does not add SCRIPT_NAME to the returned URL if called from modules that contain middleware — at Initial Version
Reported by: | ElliottM | Owned by: | nobody |
---|---|---|---|
Component: | Core (Other) | Version: | 1.0 |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Accepted | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
For example, take the following middleware.py file, with one example middleware thing that redirects you to the login page if you are not logged in:
{{{login_url=reverse('login')
class LoginMiddleware():
def process_request(self, request):
if(request.user.is_anonymous() and request.path!=login_url):
#force login
return HttpResponseRedirect(login_url+'?next='+request.path)}}}
In this case, login_url will be correct except for the fact that it will be missing the SCRIPT_NAME. Putting the reverse() call inside the process_request function solves the problem, but it makes no sense at all to call that reverse function for every request when it can be called once at server startup.
The cause is in django.core.handles.wsgi and django.core.handlers.modpython
if self._request_middleware is None: self.load_middleware() set_script_prefix(req.get_options().get('django.root', ''))
As you can see, "set_script_prefix" is called AFTER middleware is loaded, so the script name is still unset when reverse() is called in the middleware above. Moving the set_script_prefix call above the load_middleware function solves the problem.
Patch that fixes the error