Source code for webargs.async

# -*- coding: utf-8 -*-
"""Asynchronous request parser. Compatible with Python>=3.4."""
import asyncio
import sys
import inspect

import marshmallow as ma
from marshmallow.compat import iteritems
from marshmallow.utils import missing

from webargs import core

PY_34 = sys.version_info < (3, 5)

if PY_34:
    from webargs.async_decorators34 import _use_args
else:
    from webargs.async_decorators import _use_args

[docs]class AsyncParser(core.Parser): """Asynchronous variant of `webargs.core.Parser`, where parsing methods may be either coroutines or regular methods. """ @asyncio.coroutine def _parse_request(self, schema, req, locations): if schema.many: assert 'json' in locations, 'schema.many=True is only supported for JSON location' # The ad hoc Nested field is more like a workaround or a helper, and it servers its # purpose fine. However, if somebody has a desire to re-design the support of # bulk-type arguments, go ahead. parsed = yield from self.parse_arg( name='json', field=ma.fields.Nested(schema, many=True), req=req, locations=locations ) if parsed is missing: parsed = [] else: argdict = schema.fields parsed = {} for argname, field_obj in iteritems(argdict): if core.MARSHMALLOW_VERSION_INFO[0] < 3: parsed_value = yield from self.parse_arg(argname, field_obj, req, locations) # If load_from is specified on the field, try to parse from that key if parsed_value is missing and field_obj.load_from: parsed_value = yield from self.parse_arg(field_obj.load_from, field_obj, req, locations) argname = field_obj.load_from else: argname = field_obj.data_key or argname parsed_value = yield from self.parse_arg(argname, field_obj, req, locations) if parsed_value is not missing: parsed[argname] = parsed_value return parsed # TODO: Lots of duplication from core.Parser here. Rethink.
[docs] @asyncio.coroutine def parse(self, argmap, req=None, locations=None, validate=None, force_all=False): """Coroutine variant of `webargs.core.Parser`. Receives the same arguments as `webargs.core.Parser.parse`. """ req = req if req is not None else self.get_default_request() assert req is not None, 'Must pass req object' data = None validators = core._ensure_list_of_callables(validate) schema = self._get_schema(argmap, req) try: parsed = yield from self._parse_request(schema=schema, req=req, locations=locations) result = schema.load(parsed) data = result.data if core.MARSHMALLOW_VERSION_INFO[0] < 3 else result self._validate_arguments(data, validators) except ma.exceptions.ValidationError as error: self._on_validation_error(error, req) finally: self.clear_cache() if force_all: core.fill_in_missing_args(data, schema) return data
use_args = _use_args
[docs] def use_kwargs(self, *args, **kwargs): """Decorator that injects parsed arguments into a view function or method. Receives the same arguments as `webargs.core.Parser.use_kwargs`. """ return super().use_kwargs(*args, **kwargs)
[docs] @asyncio.coroutine def parse_arg(self, name, field, req, locations=None): location = field.metadata.get('location') if location: locations_to_check = self._validated_locations([location]) else: locations_to_check = self._validated_locations(locations or self.locations) for location in locations_to_check: value = yield from self._get_value(name, field, req=req, location=location) # Found the value; validate and return it if value is not core.missing: return value return core.missing
@asyncio.coroutine def _get_value(self, name, argobj, req, location): # Parsing function to call # May be a method name (str) or a function func = self.__location_map__.get(location) if func: if inspect.isfunction(func): function = func else: function = getattr(self, func) if asyncio.iscoroutinefunction(function): value = yield from function(req, name, argobj) else: value = function(req, name, argobj) else: raise ValueError('Invalid location: "{0}"'.format(location)) return value