headers.py 6.53 KB
Newer Older
1 2
"""Manage HTTP Response Headers

3
Much of this module is red-handedly pilfered from email.message in the stdlib,
4 5 6 7 8
so portions are Copyright (C) 2001,2002 Python Software Foundation, and were
written by Barry Warsaw.
"""

# Regular expression that matches `special' characters in parameters, the
9
# existence of which force quoting of the parameter value.
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
import re
tspecials = re.compile(r'[ \(\)<>@,;:\\"/\[\]\?=]')

def _formatparam(param, value=None, quote=1):
    """Convenience function to format and return a key=value pair.

    This will quote the value if needed or if quote is true.
    """
    if value is not None and len(value) > 0:
        if quote or tspecials.search(value):
            value = value.replace('\\', '\\\\').replace('"', r'\"')
            return '%s="%s"' % (param, value)
        else:
            return '%s=%s' % (param, value)
    else:
        return param


class Headers:

    """Manage a collection of HTTP response headers"""

    def __init__(self,headers):
33
        if type(headers) is not list:
34
            raise TypeError("Headers must be a list of name/value tuples")
35 36 37 38 39
        self._headers = headers
        if __debug__:
            for k, v in headers:
                self._convert_string_type(k)
                self._convert_string_type(v)
40 41 42

    def _convert_string_type(self, value):
        """Convert/check value type."""
43
        if type(value) is str:
44
            return value
45 46
        raise AssertionError("Header names/values must be"
            " of type str (got {0})".format(repr(value)))
47 48 49 50 51 52 53 54

    def __len__(self):
        """Return the total number of headers, including duplicates."""
        return len(self._headers)

    def __setitem__(self, name, val):
        """Set the value of a header."""
        del self[name]
55 56
        self._headers.append(
            (self._convert_string_type(name), self._convert_string_type(val)))
57 58 59 60 61 62

    def __delitem__(self,name):
        """Delete all occurrences of a header, if present.

        Does *not* raise an exception if the header is missing.
        """
63
        name = self._convert_string_type(name.lower())
64
        self._headers[:] = [kv for kv in self._headers if kv[0].lower() != name]
65 66 67 68 69 70 71 72 73 74 75 76

    def __getitem__(self,name):
        """Get the first header value for 'name'

        Return None if the header is missing instead of raising an exception.

        Note that if the header appeared multiple times, the first exactly which
        occurrance gets returned is undefined.  Use getall() to get all
        the values matching a header field name.
        """
        return self.get(name)

77
    def __contains__(self, name):
78 79 80 81 82 83 84 85 86 87 88 89
        """Return true if the message contains the header."""
        return self.get(name) is not None


    def get_all(self, name):
        """Return a list of all the values for the named field.

        These will be sorted in the order they appeared in the original header
        list or were added to this instance, and may contain duplicates.  Any
        fields deleted and re-inserted are always appended to the header list.
        If no fields exist with the given name, returns an empty list.
        """
90
        name = self._convert_string_type(name.lower())
91 92 93 94 95
        return [kv[1] for kv in self._headers if kv[0].lower()==name]


    def get(self,name,default=None):
        """Get the first header value for 'name', or return 'default'"""
96
        name = self._convert_string_type(name.lower())
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
        for k,v in self._headers:
            if k.lower()==name:
                return v
        return default


    def keys(self):
        """Return a list of all the header field names.

        These will be sorted in the order they appeared in the original header
        list, or were added to this instance, and may contain duplicates.
        Any fields deleted and re-inserted are always appended to the header
        list.
        """
        return [k for k, v in self._headers]

    def values(self):
        """Return a list of all header values.

        These will be sorted in the order they appeared in the original header
        list, or were added to this instance, and may contain duplicates.
        Any fields deleted and re-inserted are always appended to the header
        list.
        """
        return [v for k, v in self._headers]

    def items(self):
        """Get all the header fields and values.

        These will be sorted in the order they were in the original header
        list, or were added to this instance, and may contain duplicates.
        Any fields deleted and re-inserted are always appended to the header
        list.
        """
        return self._headers[:]

    def __repr__(self):
134
        return "Headers(%r)" % self._headers
135 136 137 138 139 140

    def __str__(self):
        """str() returns the formatted headers, complete with end line,
        suitable for direct HTTP transmission."""
        return '\r\n'.join(["%s: %s" % kv for kv in self._headers]+['',''])

141 142 143
    def __bytes__(self):
        return str(self).encode('iso-8859-1')

144 145 146 147 148 149 150
    def setdefault(self,name,value):
        """Return first matching header value for 'name', or 'value'

        If there is no header named 'name', add a new header with name 'name'
        and value 'value'."""
        result = self.get(name)
        if result is None:
151 152
            self._headers.append((self._convert_string_type(name),
                self._convert_string_type(value)))
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
            return value
        else:
            return result

    def add_header(self, _name, _value, **_params):
        """Extended header setting.

        _name is the header field to add.  keyword arguments can be used to set
        additional parameters for the header field, with underscores converted
        to dashes.  Normally the parameter will be added as key="value" unless
        value is None, in which case only the key will be added.

        Example:

        h.add_header('content-disposition', 'attachment', filename='bud.gif')

169
        Note that unlike the corresponding 'email.message' method, this does
170 171 172 173 174
        *not* handle '(charset, language, value)' tuples: all values must be
        strings or None.
        """
        parts = []
        if _value is not None:
175
            _value = self._convert_string_type(_value)
176 177
            parts.append(_value)
        for k, v in _params.items():
178
            k = self._convert_string_type(k)
179 180 181
            if v is None:
                parts.append(k.replace('_', '-'))
            else:
182
                v = self._convert_string_type(v)
183
                parts.append(_formatparam(k.replace('_', '-'), v))
184
        self._headers.append((self._convert_string_type(_name), "; ".join(parts)))