vote up 1 vote down star

hello,

I don't know if it's possible but I'd like to add few parameters at the end of the URL using middleware. Can it be done without redirect after modyfing requested URL?

ie. user clicks: .../some_link and middleware rewrites it to: .../some_link?par1=1&par2=2

Other way is to modify reponse and replace every HTML link but it's not something I'd like to do.

Thanks

flag

3 Answers

vote up 1 vote down check

I think this really depends on your problem and what exactly you are trying to do.

You cannot change the URL without redirecting the user, as you cannot modify the URL on a page without a reload. Basically a redirect is a response telling the user to move on, there is no way to actually change the URL. Note that even if you do it in something like JavaScript you basically do the same as a redirect, so it can't be done client or server side.

I think it might help if you explain to us why you need to pass this information via the URL. Why not store data in the session?

I guess you could add the data to the request object but that doesn't add it to the URL.

link|flag
Thank you, finally that's clear to me. – yezooz Sep 22 at 20:30
vote up 0 vote down

You can do whatever you like in the middleware. You have access to the request object, you can get the URL and redirect to a new one if you want.

My question would be, why do you want to do this? If you need to keep information about the request, the proper place to do this is in the session.

link|flag
vote up 1 vote down
class YourRedirectMiddleware:

    def process_request(self, request):
        redirect_url = request.path+'?par1=1&par2=2'
        return HttpResponsePermanentRedirect(redirect_url)

what are you trying to accomplish and why this way?

link|flag
but it DOES redirect which I'd like to avoid. Result should be something like oldschool passing session_id in the URL between requests. I'm forced to do it this way :/ – yezooz Sep 22 at 11:42
You should be wary of this solution as if you have POST data it will be lost during the redirect. – d0ugal Sep 22 at 14:02
explain your needs, i don't get why u want to do it this way – zalew Sep 22 at 14:32
I have a facebook app I tried to switch from FBML to iframe mode. So fb sends some params with first request that I have to use to authenticate users across further requests. – yezooz Sep 23 at 12:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.