示例#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] + "(...)")
示例#2
0
文件: binary.py 项目: 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] + "(...)")
示例#3
0
文件: _base.py 项目: 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))
示例#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))
示例#5
0
文件: xml.py 项目: iceteahh/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, 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))
示例#6
0
文件: _base.py 项目: mfkaptan/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))
示例#7
0
文件: binary.py 项目: amgibson/spyne
 def from_base64(cls, value):
     return [base64.b64decode(_bytes_join(value))]
示例#8
0
文件: binary.py 项目: jpunwin/spyne
 def from_base64(cls, value):
     try:
         return [b64decode(_bytes_join(value))]
     except TypeError as e:
         raise ValidationError(value)
示例#9
0
文件: binary.py 项目: jpunwin/spyne
 def to_base64(cls, value):
     return b64encode(_bytes_join(value))
示例#10
0
文件: binary.py 项目: jpunwin/spyne
 def from_hex(cls, value):
     return [unhexlify(_bytes_join(value))]
示例#11
0
文件: binary.py 项目: jpunwin/spyne
 def to_hex(cls, value):
     return hexlify(_bytes_join(value))
示例#12
0
 def from_base64(cls, value):
     return [base64.b64decode(_bytes_join(value))]
示例#13
0
 def set_response(self, retval, response):
     retval.content = _bytes_join(response, b"")
示例#14
0
文件: binary.py 项目: iceteahh/spyne
 def to_hex(cls, value):
     return hexlify(_bytes_join(value))
示例#15
0
文件: binary.py 项目: trecouvr/spyne
 def from_base64(cls, value):
     try:
         return [b64decode(_bytes_join(value))]
     except TypeError as e:
         raise ValidationError(value)
示例#16
0
文件: binary.py 项目: trecouvr/spyne
 def to_base64(cls, value):
     return b64encode(_bytes_join(value))
示例#17
0
文件: binary.py 项目: fmezas/spyne
 def from_urlsafe_base64(cls, value):
     return [urlsafe_b64decode(_bytes_join(value))]
示例#18
0
文件: binary.py 项目: iceteahh/spyne
 def to_urlsafe_base64(cls, value):
     return urlsafe_b64encode(_bytes_join(value))
示例#19
0
文件: binary.py 项目: jpunwin/spyne
 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))]
示例#20
0
文件: binary.py 项目: iceteahh/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')
     return [urlsafe_b64decode(_bytes_join(value))]
示例#21
0
 def set_response(self, retval, response):
     retval.content = _bytes_join(response, b"")
示例#22
0
文件: binary.py 项目: iceteahh/spyne
 def from_hex(cls, value):
     return [unhexlify(_bytes_join(value))]
示例#23
0
文件: binary.py 项目: jpunwin/spyne
 def to_urlsafe_base64(cls, value):
     return urlsafe_b64encode(_bytes_join(value))