Source code for webargs.aiohttpparser

# -*- coding: utf-8 -*-
"""aiohttp request argument parsing module.

Example: ::

    import asyncio
    from aiohttp import web

    from webargs import fields
    from webargs.aiohttpparser import use_args


    hello_args = {
        'name': fields.Str(required=True)
    }
    @asyncio.coroutine
    @use_args(hello_args)
    def index(request, args):
        return web.Response(
            body='Hello {}'.format(args['name']).encode('utf-8')
        )

    app = web.Application()
    app.router.add_route('GET', '/', index)
"""
import asyncio
import json

from aiohttp import web
from aiohttp import web_exceptions

from webargs import core
from webargs.async import AsyncParser


def is_json_request(req):
    content_type = req.content_type
    return core.is_json(content_type)


[docs]class HTTPUnprocessableEntity(web.HTTPClientError): status_code = 422
# Mapping of status codes to exception classes # Adapted from werkzeug exception_map = { 422: HTTPUnprocessableEntity } # Collect all exceptions from aiohttp.web_exceptions def _find_exceptions(): for name in web_exceptions.__all__: obj = getattr(web_exceptions, name) try: is_http_exception = issubclass(obj, web_exceptions.HTTPException) except TypeError: is_http_exception = False if not is_http_exception or obj.status_code is None: continue old_obj = exception_map.get(obj.status_code, None) if old_obj is not None and issubclass(obj, old_obj): continue exception_map[obj.status_code] = obj _find_exceptions() del _find_exceptions
[docs]class AIOHTTPParser(AsyncParser): """aiohttp request argument parser.""" __location_map__ = dict( match_info='parse_match_info', **core.Parser.__location_map__ )
[docs] def parse_querystring(self, req, name, field): """Pull a querystring value from the request.""" return core.get_value(req.GET, name, field)
[docs] @asyncio.coroutine def parse_form(self, req, name, field): """Pull a form value from the request.""" post_data = self._cache.get('post') if post_data is None: yield from req.post() self._cache['post'] = req.POST return core.get_value(self._cache['post'], name, field)
[docs] @asyncio.coroutine def parse_json(self, req, name, field): """Pull a json value from the request.""" if not (req.has_body and is_json_request(req)): return core.missing json_data = self._cache.get('json') if json_data is None: self._cache['json'] = json_data = yield from req.json() return core.get_value(json_data, name, field, allow_many_nested=True)
[docs] def parse_headers(self, req, name, field): """Pull a value from the header data.""" return core.get_value(req.headers, name, field)
[docs] def parse_cookies(self, req, name, field): """Pull a value from the cookiejar.""" return core.get_value(req.cookies, name, field)
[docs] def parse_files(self, req, name, field): raise NotImplementedError( 'parse_files is not implemented. You may be able to use parse_form for ' 'parsing upload data.' )
[docs] def parse_match_info(self, req, name, field): """Pull a value from the request's ``match_info``.""" return core.get_value(req.match_info, name, field)
[docs] def get_request_from_view_args(self, view, args, kwargs): """Get request object from a handler function or method. Used internally by ``use_args`` and ``use_kwargs``. """ if len(args) > 1: req = args[1] else: req = args[0] assert isinstance(req, web.Request), 'Request argument not found for handler' return req
[docs] def handle_error(self, error): """Handle ValidationErrors and return a JSON response of error messages to the client.""" error_class = exception_map.get(error.status_code) if not error_class: raise LookupError('No exception for {0}'.format(error.status_code)) raise error_class( body=json.dumps(error.messages).encode('utf-8'), content_type='application/json' )
parser = AIOHTTPParser() use_args = parser.use_args use_kwargs = parser.use_kwargs