author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Fri, 23 Apr 2010 12:42:53 +0200 | |
changeset 5385 | b6e250dd7a7d |
parent 5302 | dfd147de06b2 |
child 5423 | e15abfdcce38 |
permissions | -rw-r--r-- |
5301
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
1 |
# organization: Logilab |
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
2 |
# copyright: 2001-2010 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. |
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
3 |
# contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
4 |
# license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
5 |
"""Associate url's path to view identifier / rql queries. |
0 | 6 |
|
5301
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
7 |
It currently handles url path with the forms: |
0 | 8 |
|
9 |
* <publishing_method> |
|
5301
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
10 |
* minimal REST publishing: |
0 | 11 |
|
12 |
* <eid> |
|
13 |
* <etype>[/<attribute name>/<attribute value>]* |
|
14 |
* folder navigation |
|
15 |
||
5301
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
16 |
You can actually control URL (more exactly path) resolution using an |
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
17 |
URL path evaluator. |
0 | 18 |
|
5301
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
19 |
.. note:: |
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
20 |
|
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
21 |
Actionpath and Folderpath execute a query whose results is lost |
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
22 |
because of redirecting instead of direct traversal. |
0 | 23 |
""" |
24 |
__docformat__ = "restructuredtext en" |
|
25 |
||
26 |
from rql import TypeResolverException |
|
27 |
||
28 |
from cubicweb import RegistryException, typed_eid |
|
2887
1282dc6525c5
give vreg where we need it (eg no bound request)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2770
diff
changeset
|
29 |
from cubicweb.web import NotFound, Redirect, component |
0 | 30 |
|
31 |
||
32 |
class PathDontMatch(Exception): |
|
33 |
"""exception used by url evaluators to notify they can't evaluate |
|
34 |
a path |
|
35 |
""" |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
661
diff
changeset
|
36 |
|
2887
1282dc6525c5
give vreg where we need it (eg no bound request)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2770
diff
changeset
|
37 |
class URLPublisherComponent(component.Component): |
5301
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
38 |
"""Associate url path to view identifier / rql queries, by |
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
39 |
applying a chain of urlpathevaluator components. |
0 | 40 |
|
5301
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
41 |
An evaluator is a URLPathEvaluator subclass with an .evaluate_path |
0 | 42 |
method taking the request object and the path to publish as |
5301
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
43 |
argument. It will either return a publishing method identifier |
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
44 |
and an rql query on success or raise a `PathDontMatch` exception |
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
45 |
on failure. URL evaluators are called according to their |
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
46 |
`priority` attribute, with 0 as the greatest priority and greater |
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
47 |
values as lower priority. The first evaluator returning a result |
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
48 |
or raising something else than `PathDontMatch` will stop the |
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
49 |
handlers chain. |
0 | 50 |
""" |
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2890
diff
changeset
|
51 |
__regid__ = 'urlpublisher' |
2887
1282dc6525c5
give vreg where we need it (eg no bound request)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2770
diff
changeset
|
52 |
vreg = None # XXX necessary until property for deprecation warning is on appobject |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
661
diff
changeset
|
53 |
|
2887
1282dc6525c5
give vreg where we need it (eg no bound request)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2770
diff
changeset
|
54 |
def __init__(self, vreg, default_method='view'): |
0 | 55 |
super(URLPublisherComponent, self).__init__() |
2887
1282dc6525c5
give vreg where we need it (eg no bound request)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2770
diff
changeset
|
56 |
self.vreg = vreg |
0 | 57 |
self.default_method = default_method |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
661
diff
changeset
|
58 |
evaluators = [] |
2887
1282dc6525c5
give vreg where we need it (eg no bound request)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2770
diff
changeset
|
59 |
for evaluatorcls in vreg['components']['urlpathevaluator']: |
0 | 60 |
# instantiation needed |
61 |
evaluator = evaluatorcls(self) |
|
62 |
evaluators.append(evaluator) |
|
63 |
self.evaluators = sorted(evaluators, key=lambda x: x.priority) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
661
diff
changeset
|
64 |
|
0 | 65 |
def process(self, req, path): |
5301
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
66 |
"""Given an url (essentialy caracterized by a path on the |
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
67 |
server, but additional information may be found in the request |
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
68 |
object), return a publishing method identifier |
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
69 |
(e.g. controller) and an optional result set. |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
661
diff
changeset
|
70 |
|
5301
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
71 |
:type req: `cubicweb.web.request.CubicWebRequestBase` |
0 | 72 |
:param req: the request object |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
661
diff
changeset
|
73 |
|
0 | 74 |
:type path: str |
75 |
:param path: the path of the resource to publish |
|
76 |
||
5301
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
77 |
:rtype: tuple(str, `cubicweb.rset.ResultSet` or None) |
0 | 78 |
:return: the publishing method identifier and an optional result set |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
661
diff
changeset
|
79 |
|
0 | 80 |
:raise NotFound: if no handler is able to decode the given path |
81 |
""" |
|
82 |
parts = [part for part in path.split('/') |
|
83 |
if part != ''] or (self.default_method,) |
|
84 |
if req.form.get('rql'): |
|
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2293
diff
changeset
|
85 |
if parts[0] in self.vreg['controllers']: |
0 | 86 |
return parts[0], None |
87 |
return 'view', None |
|
88 |
for evaluator in self.evaluators: |
|
89 |
try: |
|
90 |
pmid, rset = evaluator.evaluate_path(req, parts[:]) |
|
91 |
break |
|
92 |
except PathDontMatch: |
|
93 |
continue |
|
94 |
else: |
|
95 |
raise NotFound(path) |
|
96 |
if pmid is None: |
|
97 |
pmid = self.default_method |
|
98 |
return pmid, rset |
|
99 |
||
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
661
diff
changeset
|
100 |
|
2887
1282dc6525c5
give vreg where we need it (eg no bound request)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2770
diff
changeset
|
101 |
class URLPathEvaluator(component.Component): |
0 | 102 |
__abstract__ = True |
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2890
diff
changeset
|
103 |
__regid__ = 'urlpathevaluator' |
2887
1282dc6525c5
give vreg where we need it (eg no bound request)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2770
diff
changeset
|
104 |
vreg = None # XXX necessary until property for deprecation warning is on appobject |
0 | 105 |
|
106 |
def __init__(self, urlpublisher): |
|
107 |
self.urlpublisher = urlpublisher |
|
2887
1282dc6525c5
give vreg where we need it (eg no bound request)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2770
diff
changeset
|
108 |
self.vreg = urlpublisher.vreg |
0 | 109 |
|
110 |
class RawPathEvaluator(URLPathEvaluator): |
|
111 |
"""handle path of the form:: |
|
112 |
||
113 |
<publishing_method>?parameters... |
|
114 |
""" |
|
115 |
priority = 0 |
|
116 |
def evaluate_path(self, req, parts): |
|
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2293
diff
changeset
|
117 |
if len(parts) == 1 and parts[0] in self.vreg['controllers']: |
0 | 118 |
return parts[0], None |
119 |
raise PathDontMatch() |
|
120 |
||
121 |
||
122 |
class EidPathEvaluator(URLPathEvaluator): |
|
123 |
"""handle path with the form:: |
|
124 |
||
125 |
<eid> |
|
126 |
""" |
|
127 |
priority = 1 |
|
128 |
def evaluate_path(self, req, parts): |
|
129 |
if len(parts) != 1: |
|
130 |
raise PathDontMatch() |
|
131 |
try: |
|
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
132 |
rset = req.execute('Any X WHERE X eid %(x)s', {'x': typed_eid(parts[0])}) |
0 | 133 |
except ValueError: |
134 |
raise PathDontMatch() |
|
135 |
if rset.rowcount == 0: |
|
136 |
raise NotFound() |
|
137 |
return None, rset |
|
138 |
||
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
661
diff
changeset
|
139 |
|
0 | 140 |
class RestPathEvaluator(URLPathEvaluator): |
141 |
"""handle path with the form:: |
|
142 |
||
143 |
<etype>[[/<attribute name>]/<attribute value>]* |
|
144 |
""" |
|
145 |
priority = 2 |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
661
diff
changeset
|
146 |
|
0 | 147 |
def evaluate_path(self, req, parts): |
148 |
if not (0 < len(parts) < 4): |
|
149 |
raise PathDontMatch() |
|
150 |
try: |
|
2273
daf6e178659f
new case_insensitive_etypes resource on the cubicweb registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
151 |
etype = self.vreg.case_insensitive_etypes[parts.pop(0).lower()] |
0 | 152 |
except KeyError: |
153 |
raise PathDontMatch() |
|
2664
1578e1a57828
[we, test] more api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2657
diff
changeset
|
154 |
cls = self.vreg['etypes'].etype_class(etype) |
0 | 155 |
if parts: |
156 |
if len(parts) == 2: |
|
157 |
attrname = parts.pop(0).lower() |
|
158 |
try: |
|
3689
deb13e88e037
follow yams 0.25 api changes to improve performance
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2664
diff
changeset
|
159 |
cls.e_schema.subjrels[attrname] |
0 | 160 |
except KeyError: |
161 |
raise PathDontMatch() |
|
162 |
else: |
|
163 |
attrname = cls._rest_attr_info()[0] |
|
164 |
value = req.url_unquote(parts.pop(0)) |
|
165 |
rset = self.attr_rset(req, etype, attrname, value) |
|
166 |
else: |
|
167 |
rset = self.cls_rset(req, cls) |
|
168 |
if rset.rowcount == 0: |
|
169 |
raise NotFound() |
|
170 |
return None, rset |
|
171 |
||
172 |
def cls_rset(self, req, cls): |
|
173 |
return req.execute(cls.fetch_rql(req.user)) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
661
diff
changeset
|
174 |
|
0 | 175 |
def attr_rset(self, req, etype, attrname, value): |
176 |
rql = u'Any X WHERE X is %s, X %s %%(x)s' % (etype, attrname) |
|
177 |
if attrname == 'eid': |
|
178 |
try: |
|
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
179 |
rset = req.execute(rql, {'x': typed_eid(value)}) |
0 | 180 |
except (ValueError, TypeResolverException): |
181 |
# conflicting eid/type |
|
182 |
raise PathDontMatch() |
|
183 |
else: |
|
184 |
rset = req.execute(rql, {'x': value}) |
|
185 |
return rset |
|
186 |
||
187 |
||
188 |
class URLRewriteEvaluator(URLPathEvaluator): |
|
189 |
"""tries to find a rewrite rule to apply |
|
190 |
||
191 |
URL rewrite rule definitions are stored in URLRewriter objects |
|
192 |
""" |
|
193 |
priority = 3 |
|
194 |
def evaluate_path(self, req, parts): |
|
195 |
# uri <=> req._twreq.path or req._twreq.uri |
|
196 |
uri = req.url_unquote('/' + '/'.join(parts)) |
|
2657
de974465d381
[appobject] kill VObject class, move base selector classes to appobject
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
197 |
evaluators = sorted(self.vreg['urlrewriting'].all_objects(), |
de974465d381
[appobject] kill VObject class, move base selector classes to appobject
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
198 |
key=lambda x: x.priority, reverse=True) |
de974465d381
[appobject] kill VObject class, move base selector classes to appobject
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
199 |
for rewritercls in evaluators: |
2890
fdcb8a2bb6eb
fix __init__ parameters
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2887
diff
changeset
|
200 |
rewriter = rewritercls(req) |
0 | 201 |
try: |
202 |
# XXX we might want to chain url rewrites |
|
203 |
return rewriter.rewrite(req, uri) |
|
204 |
except KeyError: |
|
205 |
continue |
|
206 |
raise PathDontMatch() |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
661
diff
changeset
|
207 |
|
0 | 208 |
|
209 |
class ActionPathEvaluator(URLPathEvaluator): |
|
210 |
"""handle path with the form:: |
|
211 |
||
212 |
<any evaluator path>/<action> |
|
213 |
""" |
|
214 |
priority = 4 |
|
215 |
def evaluate_path(self, req, parts): |
|
216 |
if len(parts) < 2: |
|
217 |
raise PathDontMatch() |
|
218 |
# remove last part and see if this is something like an actions |
|
219 |
# if so, call |
|
2770
356e9d7c356d
R propagate registry API changes
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2664
diff
changeset
|
220 |
# XXX bad smell: refactor to simpler code |
0 | 221 |
try: |
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2293
diff
changeset
|
222 |
actionsreg = self.vreg['actions'] |
0 | 223 |
requested = parts.pop(-1) |
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2293
diff
changeset
|
224 |
actions = actionsreg[requested] |
0 | 225 |
except RegistryException: |
226 |
raise PathDontMatch() |
|
227 |
for evaluator in self.urlpublisher.evaluators: |
|
228 |
if evaluator is self or evaluator.priority == 0: |
|
229 |
continue |
|
230 |
try: |
|
231 |
pmid, rset = evaluator.evaluate_path(req, parts[:]) |
|
232 |
except PathDontMatch: |
|
233 |
continue |
|
234 |
else: |
|
235 |
try: |
|
2770
356e9d7c356d
R propagate registry API changes
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2664
diff
changeset
|
236 |
action = actionsreg._select_best(actions, req, rset=rset) |
0 | 237 |
except RegistryException: |
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2293
diff
changeset
|
238 |
continue |
0 | 239 |
else: |
240 |
# XXX avoid redirect |
|
241 |
raise Redirect(action.url()) |
|
242 |
raise PathDontMatch() |