How to override HTTP request verb in GAE - Stack Overflow most recent 30 from stackoverflow.com2009-11-23T18:56:28Zhttp://stackoverflow.com/feeds/question/255157http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/255157/how-to-override-http-request-verb-in-gae0How to override HTTP request verb in GAEtoby2008-10-31T22:37:00Z2008-11-03T15:12:09Z
<p>In the context of a Google App Engine Webapp framework application:</p>
<p>I want to changed the request verb of a request in the case a
parameter _method is provided, for example if a POST request comes in
with a parameter _method=PUT, I need to change the request to call the
put method of the handler. This is to cope with the way prototype.js
works with verbs like PUT and DELETE(workaround for IE). Here is my
first attempt:</p>
<pre>
class MyRequestHandler(webapp.RequestHandler):
def initialize(self, request, response):
m = request.get('_method')
if m:
request.method = m.upper()
webapp.RequestHandler.initialize(self, request, response)
</pre>
<p>The problem is, for some reason whenever the redirect is done, the
self.request.params are emptied by the time the handling method(put or
delete) is called, even though they were populated when initialize was
called. Anyone have a clue why this is? As a workaround I thought I
could clone the params at initialize() time, but .copy() did not work,
and I haven't found a way to do that either.</p>
<p><em>Update: I received a very helpful response from Arachnid. The solution I ended up with uses a metaclass. It is found below.</em></p>
http://stackoverflow.com/questions/255157/how-to-override-http-request-verb-in-gae/255906#2559062Answer by Nick Johnson for How to override HTTP request verb in GAENick Johnson2008-11-01T18:22:13Z2008-11-01T18:22:13Z<p>Calling the handler from initialize isn't the right way anyway - if you do that, the webapp will then call the original handler as well.</p>
<p>Instead, you have a couple of options:</p>
<ul>
<li>You can subclass webapp.WSGIApplication and override <strong>call</strong> to select the method based on _method when it exists.</li>
<li>You can check for the existence of _method in initialize, and if it exists, modify the request object's 'REQUEST_METHOD' environment variable accordingly. That will cause the WSGIApplication class to execute the method you choose.</li>
</ul>
<p>Either way, take a look at google/appengine/ext/webapp/<strong>init</strong>.py in the SDK so you can see how it works.</p>
http://stackoverflow.com/questions/255157/how-to-override-http-request-verb-in-gae/257094#2570941Answer by toby for How to override HTTP request verb in GAEtoby2008-11-02T17:35:47Z2008-11-03T15:12:09Z<p>Thats Arachnid for your response. Pointing me to the source of the framework was really helpful. Last I looked the source wasn't there(there was only .pyc), maybe it changed with the new version of the SDK. For my situation I think overriding WSGIApplication would have been the right thing to do. However, I chose to use a metaclass instead, because it didn't require me to cargo-cult(copy) a bunch of the framework code into my code and then modifying it. This is my solution:</p>
<pre>
class RequestHandlerMetaclass(type):
def __init__(cls, name, bases, dct):
super(RequestHandlerMetaclass, cls).__init__(name, bases, dct)
org_post = getattr(cls, 'post')
def post(self, *params, **kws):
verb = self.request.get('_method')
if verb:
verb = verb.upper()
if verb == 'DELETE':
self.delete(*params, **kws)
elif verb == 'PUT':
self.put(*params, **kws)
else:
org_post(self, *params, **kws)
setattr(cls, 'post', post)
class MyRequestHandler(webapp.RequestHandler):
__metaclass__ = RequestHandlerMetaclass
</pre>