vote up 0 vote down star

Let's say I have a site where all urls are username specific.

For example /username1/points/list is a list of that user's points.

How do I grab the /username1/ portion of the url from all urls and add it as a kwarg for all views?

Alternatively, it would be great to grab the /username1/ portion and append that to the request as request.view_user.

flag

1 Answer

vote up 1 vote down check

You might consider attacking this with middlware. Specifically using process_request. This is called before the urlresolver is called and you can do pretty much anything to the request (request.path in this case) you want to. You might strip out the username and store it in the request object. Specifics depend (obviously) on the conditions under which you do/do not want to remove the first path component.

Updated for comment: Whichever way you go about it, when you call reverse() you have to give it the additional context info -- it can't just automagically figure it out for itself. Django doesn't play any man-behind-the-curtains games -- everything is straight Python and there isn't any global state floating around just off stage. I think this is a Good Thing™.

link|flag
This method works great. However - I am struggling to get the reverse path component back into the url for reversing urls. Any suggestions on that given reverse does not have access to the request object to access that user? – tee Nov 7 at 19:30

Your Answer

Get an OpenID
or

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