ry / ebb fork watch download tarball
public
Description: web server
Homepage: http://ebb.rubyforge.org
Clone URL: git://github.com/ry/ebb.git
ryah (author)
Tue Apr 08 04:40:03 -0700 2008
commit  0861921e11e6cc5211d59ad13fd3471e85270b7a
tree    4fa60ceb6ee48ad12e0851b8fabb88bc0a1f277a
parent  cbef11050d5cde7478f45abe5f5bd3f97923f933
ebb / python_lib / headers.py
100644 139 lines (110 sloc) 5.011 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
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
134
135
136
137
138
139
# Stolen from Django
from types import ListType, StringType
 
class Headers(object):
    """Manage a collection of HTTP response headers"""
    def __init__(self,headers):
        if type(headers) is not ListType:
            raise TypeError("Headers must be a list of name/value tuples")
        self._headers = headers
 
    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]
        self._headers.append((name, val))
 
    def __delitem__(self,name):
        """Delete all occurrences of a header, if present.
 
Does *not* raise an exception if the header is missing.
"""
        name = name.lower()
        self._headers[:] = [kv for kv in self._headers if kv[0].lower()<>name]
 
    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)
 
    def has_key(self, name):
        """Return true if the message contains the header."""
        return self.get(name) is not None
 
    __contains__ = has_key
 
    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.
"""
        name = name.lower()
        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'"""
        name = name.lower()
        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):
        return "Headers(%s)" % `self._headers`
 
    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]+['',''])
 
    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:
            self._headers.append((name,value))
            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')
 
Note that unlike the corresponding 'email.Message' method, this does
*not* handle '(charset, language, value)' tuples: all values must be
strings or None.
"""
        parts = []
        if _value is not None:
            parts.append(_value)
        for k, v in _params.items():
            if v is None:
                parts.append(k.replace('_', '-'))
            else:
                parts.append(_formatparam(k.replace('_', '-'), v))
        self._headers.append((_name, "; ".join(parts)))