Exemplo n.º 1
0
    def from_urlsafe_base64(cls, value):
        #FIXME: Find out why we need to do this.
        if isinstance(value, six.text_type):
            value = value.encode('utf8')
        try:
            return (urlsafe_b64decode(_bytes_join(value)), )

        except TypeError as e:
            logger.exception(e)

            if len(value) > 100:
                raise ValidationError(value)
            else:
                raise ValidationError(value[:100] + "(...)")
Exemplo n.º 2
0
Arquivo: binary.py Projeto: plq/spyne
    def from_urlsafe_base64(cls, value):
        #FIXME: Find out why we need to do this.
        if isinstance(value, six.text_type):
            value = value.encode('utf8')
        try:
            return (urlsafe_b64decode(_bytes_join(value)),)

        except TypeError as e:
            logger.exception(e)

            if len(value) > 100:
                raise ValidationError(value)
            else:
                raise ValidationError(value[:100] + "(...)")
Exemplo n.º 3
0
Arquivo: _base.py Projeto: norox/spyne
    def create_in_document(self, ctx, charset=None):
        """Uses the iterable of string fragments in ``ctx.in_string`` to set
        ``ctx.in_document``."""

        string = _bytes_join(ctx.in_string)
        try:
            try:
                ctx.in_document = etree.fromstring(string, self.parser)

            except XMLSyntaxError, e:
                logger.error(string)
                raise Fault("Client.XMLSyntaxError", str(e))

        except ValueError:
            try:
                ctx.in_document = etree.fromstring(string.decode(charset), self.parser)
            except XMLSyntaxError, e:
                logger.error(string)
                raise Fault("Client.XMLSyntaxError", str(e))
Exemplo n.º 4
0
    def create_in_document(self, ctx, charset=None):
        """Uses the iterable of string fragments in ``ctx.in_string`` to set
        ``ctx.in_document``."""

        string = _bytes_join(ctx.in_string)
        try:
            try:
                ctx.in_document = etree.fromstring(string,
                                        parser=XMLParser(**self.parser_kwargs))

            except ValueError:
                logger.debug('ValueError: Deserializing from unicode strings '
                             'with encoding declaration is not supported by '
                             'lxml.')
                ctx.in_document = etree.fromstring(string.decode(charset),
                                                                    self.parser)
        except XMLSyntaxError, e:
            logger_invalid.error(string)
            raise Fault('Client.XMLSyntaxError', str(e))
Exemplo n.º 5
0
    def create_in_document(self, ctx, charset=None):
        """Uses the iterable of string fragments in ``ctx.in_string`` to set
        ``ctx.in_document``."""

        string = _bytes_join(ctx.in_string)
        try:
            try:
                ctx.in_document = etree.fromstring(
                    string, parser=XMLParser(**self.parser_kwargs))

            except ValueError:
                logger.debug('ValueError: Deserializing from unicode strings '
                             'with encoding declaration is not supported by '
                             'lxml.')
                ctx.in_document = etree.fromstring(string.decode(charset),
                                                   self.parser)
        except XMLSyntaxError as e:
            logger_invalid.error(string)
            raise Fault('Client.XMLSyntaxError', str(e))
Exemplo n.º 6
0
    def create_in_document(self, ctx, charset=None):
        """Uses the iterable of string fragments in ``ctx.in_string`` to set
        ``ctx.in_document``."""

        string = _bytes_join(ctx.in_string)
        try:
            try:
                ctx.in_document = etree.fromstring(string, self.parser)

            except XMLSyntaxError, e:
                logger.error(string)
                raise Fault('Client.XMLSyntaxError', str(e))

        except ValueError:
            try:
                ctx.in_document = etree.fromstring(string.decode(charset),
                                                   self.parser)
            except XMLSyntaxError, e:
                logger.error(string)
                raise Fault('Client.XMLSyntaxError', str(e))
Exemplo n.º 7
0
 def from_base64(cls, value):
     return [base64.b64decode(_bytes_join(value))]
Exemplo n.º 8
0
 def from_base64(cls, value):
     try:
         return [b64decode(_bytes_join(value))]
     except TypeError as e:
         raise ValidationError(value)
Exemplo n.º 9
0
 def to_base64(cls, value):
     return b64encode(_bytes_join(value))
Exemplo n.º 10
0
 def from_hex(cls, value):
     return [unhexlify(_bytes_join(value))]
Exemplo n.º 11
0
 def to_hex(cls, value):
     return hexlify(_bytes_join(value))
Exemplo n.º 12
0
 def from_base64(cls, value):
     return [base64.b64decode(_bytes_join(value))]
Exemplo n.º 13
0
 def set_response(self, retval, response):
     retval.content = _bytes_join(response, b"")
Exemplo n.º 14
0
 def to_hex(cls, value):
     return hexlify(_bytes_join(value))
Exemplo n.º 15
0
 def from_base64(cls, value):
     try:
         return [b64decode(_bytes_join(value))]
     except TypeError as e:
         raise ValidationError(value)
Exemplo n.º 16
0
 def to_base64(cls, value):
     return b64encode(_bytes_join(value))
Exemplo n.º 17
0
 def from_urlsafe_base64(cls, value):
     return [urlsafe_b64decode(_bytes_join(value))]
Exemplo n.º 18
0
 def to_urlsafe_base64(cls, value):
     return urlsafe_b64encode(_bytes_join(value))
Exemplo n.º 19
0
 def from_urlsafe_base64(cls, value):
     #FIXME: Find out why we need to do this.
     if isinstance(value, unicode):
         value = value.encode('utf8')
     return [urlsafe_b64decode(_bytes_join(value))]
Exemplo n.º 20
0
 def from_urlsafe_base64(cls, value):
     #FIXME: Find out why we need to do this.
     if isinstance(value, six.text_type):
         value = value.encode('utf8')
     return [urlsafe_b64decode(_bytes_join(value))]
Exemplo n.º 21
0
 def set_response(self, retval, response):
     retval.content = _bytes_join(response, b"")
Exemplo n.º 22
0
 def from_hex(cls, value):
     return [unhexlify(_bytes_join(value))]
Exemplo n.º 23
0
 def to_urlsafe_base64(cls, value):
     return urlsafe_b64encode(_bytes_join(value))