author | Julien Cristau <julien.cristau@logilab.fr> |
Fri, 16 May 2014 16:49:29 +0200 | |
changeset 9735 | b71158815bc8 |
parent 9563 | 48f0ff3e2a32 |
child 9821 | 2077c8da1893 |
child 9939 | 46a8ed48636f |
permissions | -rw-r--r-- |
7879
9aae456abab5
[pylint] fix pylint detected errors and tweak it so that pylint -E will be much less verbose next time (+ update some copyrights on the way)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5426
diff
changeset
|
1 |
# copyright 2003-2011 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
2 |
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
3 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
4 |
# This file is part of CubicWeb. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
5 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
6 |
# CubicWeb is free software: you can redistribute it and/or modify it under the |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
7 |
# terms of the GNU Lesser General Public License as published by the Free |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
8 |
# Software Foundation, either version 2.1 of the License, or (at your option) |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
9 |
# any later version. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
10 |
# |
5424
8ecbcbff9777
replace logilab-common by CubicWeb in disclaimer
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5421
diff
changeset
|
11 |
# CubicWeb is distributed in the hope that it will be useful, but WITHOUT |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
13 |
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
14 |
# details. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
15 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
16 |
# You should have received a copy of the GNU Lesser General Public License along |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
17 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
0 | 18 |
"""WSGI request adapter for cubicweb |
19 |
||
20 |
NOTE: each docstring tagged with ``COME FROM DJANGO`` means that |
|
21 |
the code has been taken (or adapted) from Djanco source code : |
|
22 |
http://www.djangoproject.com/ |
|
23 |
||
24 |
""" |
|
25 |
||
26 |
__docformat__ = "restructuredtext en" |
|
27 |
||
28 |
from StringIO import StringIO |
|
29 |
from urllib import quote |
|
9735
b71158815bc8
[wsgi] avoid reading the entire request body in memory
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
30 |
from urlparse import parse_qs |
0 | 31 |
|
9735
b71158815bc8
[wsgi] avoid reading the entire request body in memory
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
32 |
from cubicweb.multipart import copy_file, parse_form_data |
0 | 33 |
from cubicweb.web.request import CubicWebRequestBase |
9735
b71158815bc8
[wsgi] avoid reading the entire request body in memory
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
34 |
from cubicweb.wsgi import pformat, normalize_header |
0 | 35 |
|
36 |
||
37 |
class CubicWebWsgiRequest(CubicWebRequestBase): |
|
8752
e19f4bba89cd
Add CubicWebRequestBase.content (closes #2742453)
Julien Cristau <julien.cristau@logilab.fr>
parents:
8316
diff
changeset
|
38 |
"""most of this code COMES FROM DJANGO |
0 | 39 |
""" |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
40 |
|
8309
48ef505aa9f9
[request] gather all base_url logic in a single place (closes #2200756)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7879
diff
changeset
|
41 |
def __init__(self, environ, vreg): |
0 | 42 |
self.environ = environ |
43 |
self.path = environ['PATH_INFO'] |
|
44 |
self.method = environ['REQUEST_METHOD'].upper() |
|
9735
b71158815bc8
[wsgi] avoid reading the entire request body in memory
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
45 |
|
b71158815bc8
[wsgi] avoid reading the entire request body in memory
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
46 |
# content_length "may be empty or absent" |
9563
48f0ff3e2a32
[wsgi] make sure request.content is available for consumption
Julien Cristau <julien.cristau@logilab.fr>
parents:
8752
diff
changeset
|
47 |
try: |
48f0ff3e2a32
[wsgi] make sure request.content is available for consumption
Julien Cristau <julien.cristau@logilab.fr>
parents:
8752
diff
changeset
|
48 |
length = int(environ['CONTENT_LENGTH']) |
48f0ff3e2a32
[wsgi] make sure request.content is available for consumption
Julien Cristau <julien.cristau@logilab.fr>
parents:
8752
diff
changeset
|
49 |
except (KeyError, ValueError): |
48f0ff3e2a32
[wsgi] make sure request.content is available for consumption
Julien Cristau <julien.cristau@logilab.fr>
parents:
8752
diff
changeset
|
50 |
length = 0 |
48f0ff3e2a32
[wsgi] make sure request.content is available for consumption
Julien Cristau <julien.cristau@logilab.fr>
parents:
8752
diff
changeset
|
51 |
# wsgi.input is not seekable, so copy the request contents to a temporary file |
48f0ff3e2a32
[wsgi] make sure request.content is available for consumption
Julien Cristau <julien.cristau@logilab.fr>
parents:
8752
diff
changeset
|
52 |
if length < 100000: |
48f0ff3e2a32
[wsgi] make sure request.content is available for consumption
Julien Cristau <julien.cristau@logilab.fr>
parents:
8752
diff
changeset
|
53 |
self.content = StringIO() |
48f0ff3e2a32
[wsgi] make sure request.content is available for consumption
Julien Cristau <julien.cristau@logilab.fr>
parents:
8752
diff
changeset
|
54 |
else: |
48f0ff3e2a32
[wsgi] make sure request.content is available for consumption
Julien Cristau <julien.cristau@logilab.fr>
parents:
8752
diff
changeset
|
55 |
self.content = tempfile.TemporaryFile() |
9735
b71158815bc8
[wsgi] avoid reading the entire request body in memory
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
56 |
copy_file(environ['wsgi.input'], self.content, maxread=length) |
9563
48f0ff3e2a32
[wsgi] make sure request.content is available for consumption
Julien Cristau <julien.cristau@logilab.fr>
parents:
8752
diff
changeset
|
57 |
self.content.seek(0, 0) |
9735
b71158815bc8
[wsgi] avoid reading the entire request body in memory
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
58 |
environ['wsgi.input'] = self.content |
8314
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8309
diff
changeset
|
59 |
|
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8309
diff
changeset
|
60 |
headers_in = dict((normalize_header(k[5:]), v) for k, v in self.environ.items() |
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8309
diff
changeset
|
61 |
if k.startswith('HTTP_')) |
0 | 62 |
https = environ.get("HTTPS") in ('yes', 'on', '1') |
63 |
post, files = self.get_posted_data() |
|
8314
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8309
diff
changeset
|
64 |
|
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8309
diff
changeset
|
65 |
super(CubicWebWsgiRequest, self).__init__(vreg, https, post, |
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8309
diff
changeset
|
66 |
headers= headers_in) |
0 | 67 |
if files is not None: |
9735
b71158815bc8
[wsgi] avoid reading the entire request body in memory
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
68 |
for key, part in files.iteritems(): |
b71158815bc8
[wsgi] avoid reading the entire request body in memory
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
69 |
name = None |
b71158815bc8
[wsgi] avoid reading the entire request body in memory
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
70 |
if part.filename is not None: |
b71158815bc8
[wsgi] avoid reading the entire request body in memory
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
71 |
name = unicode(part.filename, self.encoding) |
b71158815bc8
[wsgi] avoid reading the entire request body in memory
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
72 |
self.form[key] = (name, part.file) |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
73 |
|
0 | 74 |
def __repr__(self): |
75 |
# Since this is called as part of error handling, we need to be very |
|
76 |
# robust against potentially malformed input. |
|
77 |
form = pformat(self.form) |
|
78 |
meta = pformat(self.environ) |
|
79 |
return '<CubicWebWsgiRequest\FORM:%s,\nMETA:%s>' % \ |
|
80 |
(form, meta) |
|
81 |
||
82 |
## cubicweb request interface ################################################ |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
83 |
|
0 | 84 |
def http_method(self): |
85 |
"""returns 'POST', 'GET', 'HEAD', etc.""" |
|
86 |
return self.method |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
87 |
|
0 | 88 |
def relative_path(self, includeparams=True): |
89 |
"""return the normalized path of the request (ie at least relative |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
90 |
to the instance's root, but some other normalization may be needed |
0 | 91 |
so that the returned path may be used to compare to generated urls |
92 |
||
93 |
:param includeparams: |
|
94 |
boolean indicating if GET form parameters should be kept in the path |
|
95 |
""" |
|
96 |
path = self.environ['PATH_INFO'] |
|
97 |
path = path[1:] # remove leading '/' |
|
98 |
if includeparams: |
|
99 |
qs = self.environ.get('QUERY_STRING') |
|
100 |
if qs: |
|
101 |
return '%s?%s' % (path, qs) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
102 |
|
0 | 103 |
return path |
104 |
||
105 |
## wsgi request helpers ################################################### |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
106 |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
107 |
def instance_uri(self): |
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
108 |
"""Return the instance's base URI (no PATH_INFO or QUERY_STRING) |
0 | 109 |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
110 |
see python2.5's wsgiref.util.instance_uri code |
0 | 111 |
""" |
112 |
environ = self.environ |
|
113 |
url = environ['wsgi.url_scheme'] + '://' |
|
114 |
if environ.get('HTTP_HOST'): |
|
115 |
url += environ['HTTP_HOST'] |
|
116 |
else: |
|
117 |
url += environ['SERVER_NAME'] |
|
118 |
if environ['wsgi.url_scheme'] == 'https': |
|
119 |
if environ['SERVER_PORT'] != '443': |
|
120 |
url += ':' + environ['SERVER_PORT'] |
|
121 |
else: |
|
122 |
if environ['SERVER_PORT'] != '80': |
|
123 |
url += ':' + environ['SERVER_PORT'] |
|
124 |
url += quote(environ.get('SCRIPT_NAME') or '/') |
|
125 |
return url |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
126 |
|
0 | 127 |
def get_full_path(self): |
128 |
return '%s%s' % (self.path, self.environ.get('QUERY_STRING', '') and ('?' + self.environ.get('QUERY_STRING', '')) or '') |
|
129 |
||
130 |
def is_secure(self): |
|
131 |
return 'wsgi.url_scheme' in self.environ \ |
|
132 |
and self.environ['wsgi.url_scheme'] == 'https' |
|
133 |
||
134 |
def get_posted_data(self): |
|
8314
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8309
diff
changeset
|
135 |
# The WSGI spec says 'QUERY_STRING' may be absent. |
9735
b71158815bc8
[wsgi] avoid reading the entire request body in memory
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
136 |
post = parse_qs(self.environ.get('QUERY_STRING', '')) |
0 | 137 |
files = None |
138 |
if self.method == 'POST': |
|
9735
b71158815bc8
[wsgi] avoid reading the entire request body in memory
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
139 |
forms, files = parse_form_data(self.environ, strict=True, |
b71158815bc8
[wsgi] avoid reading the entire request body in memory
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
140 |
mem_limit=self.vreg.config['max-post-length']) |
b71158815bc8
[wsgi] avoid reading the entire request body in memory
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
141 |
post.update(forms) |
b71158815bc8
[wsgi] avoid reading the entire request body in memory
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
142 |
self.content.seek(0, 0) |
0 | 143 |
return post, files |