Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm curious about setting urls accept_method directly when defining url like

url(r'some-pattern', 'view_name', name='url_name', accept_method='GET|POST')

I know there're view decorators like require_GET, require_POST etc.

Is there any solutions for Django or any extension to do it?

Thanks.

share|improve this question

2 Answers

Yes it can be done using django middleware.

Use Process Request to intercept the requests.

It should return either None or an HttpResponse object. If it returns None, Django will continue processing this request, executing any other process_request() middleware, then, process_view() middleware, and finally, the appropriate view. If it returns an HttpResponse object, Django won't bother calling any other request, view or exception middleware, or the appropriate view; it'll apply response middleware to that HttpResponse, and return the result.

HttpRequest has a path attribute which contains the url. Use that url to lookup the urlconf and check the urlconf params for the accept-method and return None or the same HttpResponse accordingly.

share|improve this answer
up vote 0 down vote accepted

@Pratik Mandrekar thanks for definitive information and documentation.

I've created a small application which does this kind of job https://github.com/imanhodjaev/django-besmart-common

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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