aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/http/headers.py
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-04-02 14:38:33 +0200
committerMaximilian Hils <git@maximilianhils.com>2016-04-02 14:38:33 +0200
commit806aa0f41c7816b2859a6961939ed19499b73fe7 (patch)
tree069ce4a304fe3fab07def4a5daa3068c0140f2d8 /netlib/http/headers.py
parent4ee8808b44c5a3377ac2c1dfc4ba5fb10d559ef5 (diff)
downloadmitmproxy-806aa0f41c7816b2859a6961939ed19499b73fe7.tar.gz
mitmproxy-806aa0f41c7816b2859a6961939ed19499b73fe7.tar.bz2
mitmproxy-806aa0f41c7816b2859a6961939ed19499b73fe7.zip
improve .replace() and move it into netlib
Diffstat (limited to 'netlib/http/headers.py')
-rw-r--r--netlib/http/headers.py31
1 files changed, 30 insertions, 1 deletions
diff --git a/netlib/http/headers.py b/netlib/http/headers.py
index bcb828da..72739f90 100644
--- a/netlib/http/headers.py
+++ b/netlib/http/headers.py
@@ -6,6 +6,8 @@ See also: http://lucumr.pocoo.org/2013/7/2/the-updated-guide-to-unicode/
"""
from __future__ import absolute_import, print_function, division
+import re
+
try:
from collections.abc import MutableMapping
except ImportError: # pragma: no cover
@@ -198,4 +200,31 @@ class Headers(MutableMapping, Serializable):
@classmethod
def from_state(cls, state):
- return cls([list(field) for field in state]) \ No newline at end of file
+ return cls([list(field) for field in state])
+
+ @_always_byte_args
+ def replace(self, pattern, repl, flags=0):
+ """
+ Replaces a regular expression pattern with repl in each "name: value"
+ header line.
+
+ Returns:
+ The number of replacements made.
+ """
+ pattern = re.compile(pattern, flags)
+ replacements = 0
+
+ fields = []
+ for name, value in self.fields:
+ line, n = pattern.subn(repl, name + b": " + value)
+ try:
+ name, value = line.split(b": ", 1)
+ except ValueError:
+ # We get a ValueError if the replacement removed the ": "
+ # There's not much we can do about this, so we just keep the header as-is.
+ pass
+ else:
+ replacements += n
+ fields.append([name, value])
+ self.fields = fields
+ return replacements