author | Adrien Di Mascio <Adrien.DiMascio@logilab.fr> |
Thu, 07 Oct 2010 17:25:24 +0200 | |
branch | stable |
changeset 6406 | 39663630ca3c |
parent 6274 | 72bf3ec4068b |
child 6856 | ac092197c099 |
permissions | -rw-r--r-- |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5301
diff
changeset
|
1 |
# copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5301
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:
5301
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:
5301
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:
5301
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:
5301
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:
5301
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:
5301
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:
5301
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:
5301
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:
5301
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:
5301
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:
5301
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:
5301
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:
5301
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:
5301
diff
changeset
|
17 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
5301
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
18 |
"""Associate url's path to view identifier / rql queries. |
0 | 19 |
|
5301
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
20 |
It currently handles url path with the forms: |
0 | 21 |
|
22 |
* <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
|
23 |
* minimal REST publishing: |
0 | 24 |
|
25 |
* <eid> |
|
26 |
* <etype>[/<attribute name>/<attribute value>]* |
|
27 |
* folder navigation |
|
28 |
||
5301
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
29 |
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
|
30 |
URL path evaluator. |
0 | 31 |
|
5301
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
32 |
.. note:: |
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
33 |
|
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
34 |
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
|
35 |
because of redirecting instead of direct traversal. |
0 | 36 |
""" |
37 |
__docformat__ = "restructuredtext en" |
|
38 |
||
39 |
from rql import TypeResolverException |
|
40 |
||
41 |
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
|
42 |
from cubicweb.web import NotFound, Redirect, component |
0 | 43 |
|
44 |
||
45 |
class PathDontMatch(Exception): |
|
46 |
"""exception used by url evaluators to notify they can't evaluate |
|
47 |
a path |
|
48 |
""" |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
661
diff
changeset
|
49 |
|
2887
1282dc6525c5
give vreg where we need it (eg no bound request)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2770
diff
changeset
|
50 |
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
|
51 |
"""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
|
52 |
applying a chain of urlpathevaluator components. |
0 | 53 |
|
5301
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
54 |
An evaluator is a URLPathEvaluator subclass with an .evaluate_path |
0 | 55 |
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
|
56 |
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
|
57 |
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
|
58 |
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
|
59 |
`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
|
60 |
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
|
61 |
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
|
62 |
handlers chain. |
0 | 63 |
""" |
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2890
diff
changeset
|
64 |
__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
|
65 |
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
|
66 |
|
2887
1282dc6525c5
give vreg where we need it (eg no bound request)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2770
diff
changeset
|
67 |
def __init__(self, vreg, default_method='view'): |
0 | 68 |
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
|
69 |
self.vreg = vreg |
0 | 70 |
self.default_method = default_method |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
661
diff
changeset
|
71 |
evaluators = [] |
2887
1282dc6525c5
give vreg where we need it (eg no bound request)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2770
diff
changeset
|
72 |
for evaluatorcls in vreg['components']['urlpathevaluator']: |
0 | 73 |
# instantiation needed |
74 |
evaluator = evaluatorcls(self) |
|
75 |
evaluators.append(evaluator) |
|
76 |
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
|
77 |
|
0 | 78 |
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
|
79 |
"""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
|
80 |
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
|
81 |
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
|
82 |
(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
|
83 |
|
5301
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
84 |
:type req: `cubicweb.web.request.CubicWebRequestBase` |
0 | 85 |
:param req: the request object |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
661
diff
changeset
|
86 |
|
0 | 87 |
:type path: str |
88 |
:param path: the path of the resource to publish |
|
89 |
||
5301
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4252
diff
changeset
|
90 |
:rtype: tuple(str, `cubicweb.rset.ResultSet` or None) |
0 | 91 |
: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
|
92 |
|
0 | 93 |
:raise NotFound: if no handler is able to decode the given path |
94 |
""" |
|
95 |
parts = [part for part in path.split('/') |
|
96 |
if part != ''] or (self.default_method,) |
|
97 |
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
|
98 |
if parts[0] in self.vreg['controllers']: |
0 | 99 |
return parts[0], None |
100 |
return 'view', None |
|
101 |
for evaluator in self.evaluators: |
|
102 |
try: |
|
103 |
pmid, rset = evaluator.evaluate_path(req, parts[:]) |
|
104 |
break |
|
105 |
except PathDontMatch: |
|
106 |
continue |
|
107 |
else: |
|
108 |
raise NotFound(path) |
|
109 |
if pmid is None: |
|
110 |
pmid = self.default_method |
|
111 |
return pmid, rset |
|
112 |
||
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
661
diff
changeset
|
113 |
|
2887
1282dc6525c5
give vreg where we need it (eg no bound request)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2770
diff
changeset
|
114 |
class URLPathEvaluator(component.Component): |
0 | 115 |
__abstract__ = True |
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2890
diff
changeset
|
116 |
__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
|
117 |
vreg = None # XXX necessary until property for deprecation warning is on appobject |
0 | 118 |
|
119 |
def __init__(self, urlpublisher): |
|
120 |
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
|
121 |
self.vreg = urlpublisher.vreg |
0 | 122 |
|
6175 | 123 |
|
0 | 124 |
class RawPathEvaluator(URLPathEvaluator): |
125 |
"""handle path of the form:: |
|
126 |
||
127 |
<publishing_method>?parameters... |
|
128 |
""" |
|
129 |
priority = 0 |
|
130 |
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
|
131 |
if len(parts) == 1 and parts[0] in self.vreg['controllers']: |
0 | 132 |
return parts[0], None |
133 |
raise PathDontMatch() |
|
134 |
||
135 |
||
136 |
class EidPathEvaluator(URLPathEvaluator): |
|
137 |
"""handle path with the form:: |
|
138 |
||
139 |
<eid> |
|
140 |
""" |
|
141 |
priority = 1 |
|
142 |
def evaluate_path(self, req, parts): |
|
143 |
if len(parts) != 1: |
|
144 |
raise PathDontMatch() |
|
145 |
try: |
|
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
146 |
rset = req.execute('Any X WHERE X eid %(x)s', {'x': typed_eid(parts[0])}) |
0 | 147 |
except ValueError: |
148 |
raise PathDontMatch() |
|
149 |
if rset.rowcount == 0: |
|
150 |
raise NotFound() |
|
151 |
return None, rset |
|
152 |
||
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
661
diff
changeset
|
153 |
|
0 | 154 |
class RestPathEvaluator(URLPathEvaluator): |
155 |
"""handle path with the form:: |
|
156 |
||
157 |
<etype>[[/<attribute name>]/<attribute value>]* |
|
158 |
""" |
|
159 |
priority = 2 |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
661
diff
changeset
|
160 |
|
0 | 161 |
def evaluate_path(self, req, parts): |
162 |
if not (0 < len(parts) < 4): |
|
163 |
raise PathDontMatch() |
|
164 |
try: |
|
2273
daf6e178659f
new case_insensitive_etypes resource on the cubicweb registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
165 |
etype = self.vreg.case_insensitive_etypes[parts.pop(0).lower()] |
0 | 166 |
except KeyError: |
167 |
raise PathDontMatch() |
|
2664
1578e1a57828
[we, test] more api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2657
diff
changeset
|
168 |
cls = self.vreg['etypes'].etype_class(etype) |
0 | 169 |
if parts: |
170 |
if len(parts) == 2: |
|
171 |
attrname = parts.pop(0).lower() |
|
172 |
try: |
|
3689
deb13e88e037
follow yams 0.25 api changes to improve performance
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2664
diff
changeset
|
173 |
cls.e_schema.subjrels[attrname] |
0 | 174 |
except KeyError: |
175 |
raise PathDontMatch() |
|
176 |
else: |
|
177 |
attrname = cls._rest_attr_info()[0] |
|
178 |
value = req.url_unquote(parts.pop(0)) |
|
6253
30b6beb38820
[urlpublishing] refactor to ease overriding
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6175
diff
changeset
|
179 |
return self.handle_etype_attr(req, cls, attrname, value) |
30b6beb38820
[urlpublishing] refactor to ease overriding
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6175
diff
changeset
|
180 |
return self.handle_etype(req, cls) |
30b6beb38820
[urlpublishing] refactor to ease overriding
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6175
diff
changeset
|
181 |
|
6274
72bf3ec4068b
[url publishing] fix regression introduced by refactoring in 3.9.7, leading to table view being choosen when one would expect the primary view. Fix similar pb with /<etype> url and list view (this one has been there for a while)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6253
diff
changeset
|
182 |
def set_vid_for_rset(self, req, cls, rset):# cls is there to ease overriding |
0 | 183 |
if rset.rowcount == 0: |
184 |
raise NotFound() |
|
6274
72bf3ec4068b
[url publishing] fix regression introduced by refactoring in 3.9.7, leading to table view being choosen when one would expect the primary view. Fix similar pb with /<etype> url and list view (this one has been there for a while)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6253
diff
changeset
|
185 |
# we've to set a default vid here, since vid_from_rset may try to use a |
72bf3ec4068b
[url publishing] fix regression introduced by refactoring in 3.9.7, leading to table view being choosen when one would expect the primary view. Fix similar pb with /<etype> url and list view (this one has been there for a while)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6253
diff
changeset
|
186 |
# table view if fetch_rql include some non final relation |
72bf3ec4068b
[url publishing] fix regression introduced by refactoring in 3.9.7, leading to table view being choosen when one would expect the primary view. Fix similar pb with /<etype> url and list view (this one has been there for a while)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6253
diff
changeset
|
187 |
if rset.rowcount == 1: |
72bf3ec4068b
[url publishing] fix regression introduced by refactoring in 3.9.7, leading to table view being choosen when one would expect the primary view. Fix similar pb with /<etype> url and list view (this one has been there for a while)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6253
diff
changeset
|
188 |
req.form.setdefault('vid', 'primary') |
72bf3ec4068b
[url publishing] fix regression introduced by refactoring in 3.9.7, leading to table view being choosen when one would expect the primary view. Fix similar pb with /<etype> url and list view (this one has been there for a while)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6253
diff
changeset
|
189 |
else: # rset.rowcount >= 1 |
72bf3ec4068b
[url publishing] fix regression introduced by refactoring in 3.9.7, leading to table view being choosen when one would expect the primary view. Fix similar pb with /<etype> url and list view (this one has been there for a while)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6253
diff
changeset
|
190 |
req.form.setdefault('vid', 'sameetypelist') |
72bf3ec4068b
[url publishing] fix regression introduced by refactoring in 3.9.7, leading to table view being choosen when one would expect the primary view. Fix similar pb with /<etype> url and list view (this one has been there for a while)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6253
diff
changeset
|
191 |
|
72bf3ec4068b
[url publishing] fix regression introduced by refactoring in 3.9.7, leading to table view being choosen when one would expect the primary view. Fix similar pb with /<etype> url and list view (this one has been there for a while)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6253
diff
changeset
|
192 |
def handle_etype(self, req, cls): |
72bf3ec4068b
[url publishing] fix regression introduced by refactoring in 3.9.7, leading to table view being choosen when one would expect the primary view. Fix similar pb with /<etype> url and list view (this one has been there for a while)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6253
diff
changeset
|
193 |
rset = req.execute(cls.fetch_rql(req.user)) |
72bf3ec4068b
[url publishing] fix regression introduced by refactoring in 3.9.7, leading to table view being choosen when one would expect the primary view. Fix similar pb with /<etype> url and list view (this one has been there for a while)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6253
diff
changeset
|
194 |
self.set_vid_for_rset(req, cls, rset) |
0 | 195 |
return None, rset |
196 |
||
6253
30b6beb38820
[urlpublishing] refactor to ease overriding
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6175
diff
changeset
|
197 |
def handle_etype_attr(self, req, cls, attrname, value): |
30b6beb38820
[urlpublishing] refactor to ease overriding
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6175
diff
changeset
|
198 |
rql = cls.fetch_rql(req.user, ['X %s %%(x)s' % (attrname)], |
30b6beb38820
[urlpublishing] refactor to ease overriding
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6175
diff
changeset
|
199 |
mainvar='X', ordermethod=None) |
0 | 200 |
if attrname == 'eid': |
201 |
try: |
|
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
202 |
rset = req.execute(rql, {'x': typed_eid(value)}) |
0 | 203 |
except (ValueError, TypeResolverException): |
204 |
# conflicting eid/type |
|
205 |
raise PathDontMatch() |
|
206 |
else: |
|
207 |
rset = req.execute(rql, {'x': value}) |
|
6274
72bf3ec4068b
[url publishing] fix regression introduced by refactoring in 3.9.7, leading to table view being choosen when one would expect the primary view. Fix similar pb with /<etype> url and list view (this one has been there for a while)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6253
diff
changeset
|
208 |
self.set_vid_for_rset(req, cls, rset) |
6253
30b6beb38820
[urlpublishing] refactor to ease overriding
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6175
diff
changeset
|
209 |
return None, rset |
0 | 210 |
|
211 |
||
212 |
class URLRewriteEvaluator(URLPathEvaluator): |
|
213 |
"""tries to find a rewrite rule to apply |
|
214 |
||
215 |
URL rewrite rule definitions are stored in URLRewriter objects |
|
216 |
""" |
|
217 |
priority = 3 |
|
218 |
def evaluate_path(self, req, parts): |
|
219 |
# uri <=> req._twreq.path or req._twreq.uri |
|
220 |
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
|
221 |
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
|
222 |
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
|
223 |
for rewritercls in evaluators: |
2890
fdcb8a2bb6eb
fix __init__ parameters
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2887
diff
changeset
|
224 |
rewriter = rewritercls(req) |
0 | 225 |
try: |
226 |
# XXX we might want to chain url rewrites |
|
227 |
return rewriter.rewrite(req, uri) |
|
228 |
except KeyError: |
|
229 |
continue |
|
230 |
raise PathDontMatch() |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
661
diff
changeset
|
231 |
|
0 | 232 |
|
233 |
class ActionPathEvaluator(URLPathEvaluator): |
|
234 |
"""handle path with the form:: |
|
235 |
||
236 |
<any evaluator path>/<action> |
|
237 |
""" |
|
238 |
priority = 4 |
|
239 |
def evaluate_path(self, req, parts): |
|
240 |
if len(parts) < 2: |
|
241 |
raise PathDontMatch() |
|
242 |
# remove last part and see if this is something like an actions |
|
243 |
# if so, call |
|
2770
356e9d7c356d
R propagate registry API changes
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2664
diff
changeset
|
244 |
# XXX bad smell: refactor to simpler code |
0 | 245 |
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
|
246 |
actionsreg = self.vreg['actions'] |
0 | 247 |
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
|
248 |
actions = actionsreg[requested] |
0 | 249 |
except RegistryException: |
250 |
raise PathDontMatch() |
|
251 |
for evaluator in self.urlpublisher.evaluators: |
|
252 |
if evaluator is self or evaluator.priority == 0: |
|
253 |
continue |
|
254 |
try: |
|
255 |
pmid, rset = evaluator.evaluate_path(req, parts[:]) |
|
256 |
except PathDontMatch: |
|
257 |
continue |
|
258 |
else: |
|
259 |
try: |
|
2770
356e9d7c356d
R propagate registry API changes
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2664
diff
changeset
|
260 |
action = actionsreg._select_best(actions, req, rset=rset) |
0 | 261 |
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
|
262 |
continue |
0 | 263 |
else: |
264 |
# XXX avoid redirect |
|
265 |
raise Redirect(action.url()) |
|
266 |
raise PathDontMatch() |