author | Aurelien Campeas <aurelien.campeas@logilab.fr> |
Thu, 06 Nov 2014 18:17:29 +0100 | |
changeset 10096 | decd60fa8cc5 |
parent 9443 | 6ff9401c37c1 |
child 10606 | 718e78ef6699 |
permissions | -rw-r--r-- |
9287
e70c8c70e344
[wsgi] add the simplest possible wsgi (debug) server
Aurelien Campeas
parents:
8695
diff
changeset
|
1 |
# copyright 2003-2013 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:
4721
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:
4721
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:
4721
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:
4721
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:
4721
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:
4721
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:
4721
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:
4721
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:
4721
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:
4721
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:
4721
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:
4721
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:
4721
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:
4721
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:
4721
diff
changeset
|
17 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
8396
8d58fcf68539
[web] remove some unused imports
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8314
diff
changeset
|
18 |
"""WSGI request handler for cubicweb""" |
0 | 19 |
|
20 |
__docformat__ = "restructuredtext en" |
|
21 |
||
8314
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8312
diff
changeset
|
22 |
from itertools import chain, repeat, izip |
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8312
diff
changeset
|
23 |
|
9443
6ff9401c37c1
[wsgi/handler] fix api change from 3.18
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9402
diff
changeset
|
24 |
from cubicweb import AuthenticationError |
8396
8d58fcf68539
[web] remove some unused imports
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8314
diff
changeset
|
25 |
from cubicweb.web import DirectResponse |
0 | 26 |
from cubicweb.web.application import CubicWebPublisher |
27 |
from cubicweb.wsgi.request import CubicWebWsgiRequest |
|
28 |
||
29 |
# See http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html |
|
30 |
STATUS_CODE_TEXT = { |
|
31 |
100: 'CONTINUE', |
|
32 |
101: 'SWITCHING PROTOCOLS', |
|
33 |
200: 'OK', |
|
34 |
201: 'CREATED', |
|
35 |
202: 'ACCEPTED', |
|
36 |
203: 'NON-AUTHORITATIVE INFORMATION', |
|
37 |
204: 'NO CONTENT', |
|
38 |
205: 'RESET CONTENT', |
|
39 |
206: 'PARTIAL CONTENT', |
|
40 |
300: 'MULTIPLE CHOICES', |
|
41 |
301: 'MOVED PERMANENTLY', |
|
42 |
302: 'FOUND', |
|
43 |
303: 'SEE OTHER', |
|
44 |
304: 'NOT MODIFIED', |
|
45 |
305: 'USE PROXY', |
|
46 |
306: 'RESERVED', |
|
47 |
307: 'TEMPORARY REDIRECT', |
|
48 |
400: 'BAD REQUEST', |
|
49 |
401: 'UNAUTHORIZED', |
|
50 |
402: 'PAYMENT REQUIRED', |
|
51 |
403: 'FORBIDDEN', |
|
52 |
404: 'NOT FOUND', |
|
53 |
405: 'METHOD NOT ALLOWED', |
|
54 |
406: 'NOT ACCEPTABLE', |
|
55 |
407: 'PROXY AUTHENTICATION REQUIRED', |
|
56 |
408: 'REQUEST TIMEOUT', |
|
57 |
409: 'CONFLICT', |
|
58 |
410: 'GONE', |
|
59 |
411: 'LENGTH REQUIRED', |
|
60 |
412: 'PRECONDITION FAILED', |
|
61 |
413: 'REQUEST ENTITY TOO LARGE', |
|
62 |
414: 'REQUEST-URI TOO LONG', |
|
63 |
415: 'UNSUPPORTED MEDIA TYPE', |
|
64 |
416: 'REQUESTED RANGE NOT SATISFIABLE', |
|
65 |
417: 'EXPECTATION FAILED', |
|
66 |
500: 'INTERNAL SERVER ERROR', |
|
67 |
501: 'NOT IMPLEMENTED', |
|
68 |
502: 'BAD GATEWAY', |
|
69 |
503: 'SERVICE UNAVAILABLE', |
|
70 |
504: 'GATEWAY TIMEOUT', |
|
71 |
505: 'HTTP VERSION NOT SUPPORTED', |
|
72 |
} |
|
73 |
||
74 |
class WSGIResponse(object): |
|
75 |
"""encapsulates the wsgi response parameters |
|
76 |
(code, headers and body if there is one) |
|
77 |
""" |
|
78 |
def __init__(self, code, req, body=None): |
|
79 |
text = STATUS_CODE_TEXT.get(code, 'UNKNOWN STATUS CODE') |
|
80 |
self.status = '%s %s' % (code, text) |
|
8314
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8312
diff
changeset
|
81 |
self.headers = list(chain(*[izip(repeat(k), v) |
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8312
diff
changeset
|
82 |
for k, v in req.headers_out.getAllRawHeaders()])) |
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8312
diff
changeset
|
83 |
self.headers = [(str(k), str(v)) for k, v in self.headers] |
0 | 84 |
if body: |
85 |
self.body = [body] |
|
86 |
else: |
|
87 |
self.body = [] |
|
88 |
||
89 |
def __iter__(self): |
|
90 |
return iter(self.body) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
91 |
|
0 | 92 |
|
93 |
class CubicWebWSGIApplication(object): |
|
94 |
"""This is the wsgi application which will be called by the |
|
95 |
wsgi server with the WSGI ``environ`` and ``start_response`` |
|
96 |
parameters. |
|
97 |
""" |
|
98 |
||
9443
6ff9401c37c1
[wsgi/handler] fix api change from 3.18
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9402
diff
changeset
|
99 |
def __init__(self, config): |
6ff9401c37c1
[wsgi/handler] fix api change from 3.18
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9402
diff
changeset
|
100 |
self.appli = CubicWebPublisher(config.repository(), config) |
0 | 101 |
self.config = config |
8593
41259e1f9d48
[wsgi] saner use of `self.config` instead of `config`
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8396
diff
changeset
|
102 |
self.base_url = self.config['base-url'] |
2770
356e9d7c356d
R propagate registry API changes
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2058
diff
changeset
|
103 |
self.url_rewriter = self.appli.vreg['components'].select_or_none('urlrewriter') |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
104 |
|
0 | 105 |
def _render(self, req): |
106 |
"""this function performs the actual rendering |
|
107 |
""" |
|
108 |
try: |
|
8312
6c2119509fac
[web] Move request handling logic into cubicweb application. (closes #2200684)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8309
diff
changeset
|
109 |
path = req.path |
6c2119509fac
[web] Move request handling logic into cubicweb application. (closes #2200684)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8309
diff
changeset
|
110 |
result = self.appli.handle_request(req, path) |
8695
358d8bed9626
[toward-py3k] rewrite to "except AnException as exc:" (part of #2711624)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8593
diff
changeset
|
111 |
except DirectResponse as ex: |
8312
6c2119509fac
[web] Move request handling logic into cubicweb application. (closes #2200684)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8309
diff
changeset
|
112 |
return ex.response |
6c2119509fac
[web] Move request handling logic into cubicweb application. (closes #2200684)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8309
diff
changeset
|
113 |
return WSGIResponse(req.status_out, req, result) |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
114 |
|
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
115 |
|
0 | 116 |
def __call__(self, environ, start_response): |
117 |
"""WSGI protocol entry point""" |
|
8309
48ef505aa9f9
[request] gather all base_url logic in a single place (closes #2200756)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8272
diff
changeset
|
118 |
req = CubicWebWsgiRequest(environ, self.appli.vreg) |
0 | 119 |
response = self._render(req) |
120 |
start_response(response.status, response.headers) |
|
121 |
return response.body |
|
122 |
||
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
123 |
|
0 | 124 |
|
7083
b8e35cde46e9
help pylint by explicitely defining some attributes
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
5442
diff
changeset
|
125 |
# these are overridden by set_log_methods below |
b8e35cde46e9
help pylint by explicitely defining some attributes
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
5442
diff
changeset
|
126 |
# only defining here to prevent pylint from complaining |
b8e35cde46e9
help pylint by explicitely defining some attributes
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
5442
diff
changeset
|
127 |
info = warning = error = critical = exception = debug = lambda msg,*a,**kw: None |
b8e35cde46e9
help pylint by explicitely defining some attributes
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
5442
diff
changeset
|
128 |
|
0 | 129 |
|
130 |
from logging import getLogger |
|
131 |
from cubicweb import set_log_methods |
|
132 |
set_log_methods(CubicWebWSGIApplication, getLogger('cubicweb.wsgi')) |