author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Thu, 05 May 2011 16:21:21 +0200 | |
branch | stable |
changeset 7318 | ae4968d6c946 |
parent 6962 | 220e32f058be |
child 7388 | dc319ece0bd6 |
permissions | -rw-r--r-- |
6962
220e32f058be
[management ui] add views to manage sources similarly to users
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6961
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:
5313
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:
5313
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:
5313
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:
5313
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:
5313
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:
5313
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:
5313
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:
5313
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:
5313
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:
5313
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:
5313
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:
5313
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:
5313
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:
5313
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:
5313
diff
changeset
|
17 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
5786
7c16a4e7a592
[test] fix stupd name error
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
18 |
"""Rules based url rewriter component, to get configurable RESTful urls""" |
0 | 19 |
|
20 |
import re |
|
21 |
||
3856
1c9589e46b16
fix rgx_action to ensure eids given to .execute are correctly typed
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3592
diff
changeset
|
22 |
from cubicweb import typed_eid |
722 | 23 |
from cubicweb.appobject import AppObject |
0 | 24 |
|
25 |
||
26 |
def rgx(pattern, flags=0): |
|
6175 | 27 |
"""this is just a convenient shortcut to add the $ sign""" |
0 | 28 |
return re.compile(pattern+'$', flags) |
29 |
||
712
ce49e3885453
remove autoselectors metaclass, __select__ is built during registration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
688
diff
changeset
|
30 |
class metarewriter(type): |
0 | 31 |
"""auto-extend rules dictionnary""" |
32 |
def __new__(mcs, name, bases, classdict): |
|
33 |
# collect baseclass' rules |
|
34 |
rules = [] |
|
35 |
ignore_baseclass_rules = classdict.get('ignore_baseclass_rules', False) |
|
36 |
if not ignore_baseclass_rules: |
|
37 |
for base in bases: |
|
38 |
rules[0:0] = getattr(base, 'rules', []) |
|
39 |
rules[0:0] = classdict.get('rules', []) |
|
40 |
inputs = set() |
|
41 |
for data in rules[:]: |
|
42 |
try: |
|
43 |
input, output, groups = data |
|
44 |
except ValueError: |
|
45 |
input, output = data |
|
46 |
if input in inputs: |
|
47 |
rules.remove( (input, output) ) |
|
48 |
else: |
|
49 |
inputs.add(input) |
|
50 |
classdict['rules'] = rules |
|
51 |
return super(metarewriter, mcs).__new__(mcs, name, bases, classdict) |
|
52 |
||
53 |
||
54 |
class URLRewriter(AppObject): |
|
5301
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4706
diff
changeset
|
55 |
"""Base class for URL rewriters. |
0 | 56 |
|
5301
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4706
diff
changeset
|
57 |
Url rewriters should have a `rules` dict that maps an input URI |
0 | 58 |
to something that should be used for rewriting. |
59 |
||
60 |
The actual logic that defines how the rules dict is used is implemented |
|
5301
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4706
diff
changeset
|
61 |
in the `rewrite` method. |
0 | 62 |
|
63 |
A `priority` attribute might be used to indicate which rewriter |
|
64 |
should be tried first. The higher the priority is, the earlier the |
|
5301
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4706
diff
changeset
|
65 |
rewriter will be tried. |
0 | 66 |
""" |
67 |
__metaclass__ = metarewriter |
|
68 |
__registry__ = 'urlrewriting' |
|
69 |
__abstract__ = True |
|
70 |
priority = 1 |
|
71 |
||
72 |
def rewrite(self, req, uri): |
|
73 |
raise NotImplementedError |
|
74 |
||
75 |
||
76 |
class SimpleReqRewriter(URLRewriter): |
|
5301
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4706
diff
changeset
|
77 |
"""The SimpleReqRewriters uses a `rules` dict that maps input URI |
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4706
diff
changeset
|
78 |
(regexp or plain string) to a dictionary to update the request's |
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4706
diff
changeset
|
79 |
form. |
0 | 80 |
|
5301
f4219a6e62e3
[doc/book] stuff a bit the publishing process (including various docstrings)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4706
diff
changeset
|
81 |
If the input uri is a regexp, group substitution is allowed. |
0 | 82 |
""" |
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2748
diff
changeset
|
83 |
__regid__ = 'simple' |
0 | 84 |
|
85 |
rules = [ |
|
2748
d2fcf19bfb34
F [registry views] add _registry startup view
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2656
diff
changeset
|
86 |
('/_', dict(vid='manage')), |
d2fcf19bfb34
F [registry views] add _registry startup view
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2656
diff
changeset
|
87 |
('/_registry', dict(vid='registry')), |
d2fcf19bfb34
F [registry views] add _registry startup view
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2656
diff
changeset
|
88 |
# (rgx('/_([^/]+?)/?'), dict(vid=r'\1')), |
0 | 89 |
('/schema', dict(vid='schema')), |
90 |
('/index', dict(vid='index')), |
|
1879
cb3466e08d81
eproperty -> cwproperty, cleanup
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1433
diff
changeset
|
91 |
('/myprefs', dict(vid='propertiesform')), |
cb3466e08d81
eproperty -> cwproperty, cleanup
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1433
diff
changeset
|
92 |
('/siteconfig', dict(vid='systempropertiesform')), |
6961
686c59dfc401
[manage view] cleanup manage view and user menu
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6950
diff
changeset
|
93 |
('/siteinfo', dict(vid='siteinfo')), |
0 | 94 |
('/manage', dict(vid='manage')), |
95 |
('/notfound', dict(vid='404')), |
|
96 |
('/error', dict(vid='error')), |
|
2422
96da7dc42eb5
quick and dirty support from simple sparql queries + base ui
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
97 |
('/sparql', dict(vid='sparql')), |
4706
6035e96b64dd
added stats for munin collecting #615844 - from 027bbff3659f
arthur
parents:
4436
diff
changeset
|
98 |
('/processinfo', dict(vid='processinfo')), |
6950
8a17e6e34f0f
[admin ui] nicer views for users/groups management
Charles Hébert <charles.hebert@logilab.fr>
parents:
6393
diff
changeset
|
99 |
(rgx('/cwuser', re.I), dict(vid='cw.user-management')), |
6962
220e32f058be
[management ui] add views to manage sources similarly to users
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6961
diff
changeset
|
100 |
(rgx('/cwsource', re.I), dict(vid='cw.source-management')), |
4405
fe31bb5dada5
eschema view is gone away
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
101 |
# XXX should be case insensitive as 'create', but I would like to find another way than |
fe31bb5dada5
eschema view is gone away
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
102 |
# relying on the etype_selector |
fe31bb5dada5
eschema view is gone away
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
103 |
(rgx('/schema/([^/]+?)/?'), dict(vid='primary', rql=r'Any X WHERE X is CWEType, X name "\1"')), |
0 | 104 |
(rgx('/add/([^/]+?)/?'), dict(vid='creation', etype=r'\1')), |
105 |
(rgx('/doc/images/(.+?)/?'), dict(vid='wdocimages', fid=r'\1')), |
|
106 |
(rgx('/doc/?'), dict(vid='wdoc', fid=r'main')), |
|
107 |
(rgx('/doc/(.+?)/?'), dict(vid='wdoc', fid=r'\1')), |
|
108 |
(rgx('/changelog/?'), dict(vid='changelog')), |
|
109 |
] |
|
1433 | 110 |
|
0 | 111 |
def rewrite(self, req, uri): |
112 |
"""for each `input`, `output `in rules, if `uri` matches `input`, |
|
113 |
req's form is updated with `output` |
|
114 |
""" |
|
115 |
for data in self.rules: |
|
116 |
try: |
|
117 |
inputurl, infos, required_groups = data |
|
118 |
except ValueError: |
|
119 |
inputurl, infos = data |
|
120 |
required_groups = None |
|
121 |
if required_groups and not req.user.matching_groups(required_groups): |
|
122 |
continue |
|
123 |
if isinstance(inputurl, basestring): |
|
124 |
if inputurl == uri: |
|
125 |
req.form.update(infos) |
|
126 |
break |
|
127 |
elif inputurl.match(uri): # it's a regexp |
|
128 |
# XXX what about i18n ? (vtitle for instance) |
|
129 |
for param, value in infos.items(): |
|
130 |
if isinstance(value, basestring): |
|
1132 | 131 |
req.form[param] = inputurl.sub(value, uri) |
0 | 132 |
else: |
133 |
req.form[param] = value |
|
134 |
break |
|
135 |
else: |
|
136 |
self.debug("no simple rewrite rule found for %s", uri) |
|
137 |
raise KeyError(uri) |
|
138 |
return None, None |
|
139 |
||
140 |
||
141 |
def build_rset(rql, rgxgroups=None, cachekey=None, setuser=False, |
|
142 |
vid=None, vtitle=None, form={}, **kwargs): |
|
143 |
||
144 |
def do_build_rset(inputurl, uri, req, schema): |
|
145 |
if rgxgroups: |
|
146 |
match = inputurl.match(uri) |
|
147 |
for arg, group in rgxgroups: |
|
148 |
kwargs[arg] = match.group(group) |
|
149 |
req.form.update(form) |
|
150 |
if setuser: |
|
151 |
kwargs['u'] = req.user.eid |
|
152 |
if vid: |
|
153 |
req.form['vid'] = vid |
|
154 |
if vtitle: |
|
155 |
req.form['vtitle'] = req._(vtitle) % kwargs |
|
156 |
return None, req.execute(rql, kwargs, cachekey) |
|
157 |
return do_build_rset |
|
158 |
||
159 |
def update_form(**kwargs): |
|
160 |
def do_build_rset(inputurl, uri, req, schema): |
|
161 |
match = inputurl.match(uri) |
|
162 |
kwargs.update(match.groupdict()) |
|
163 |
req.form.update(kwargs) |
|
164 |
return None, None |
|
165 |
return do_build_rset |
|
166 |
||
167 |
def rgx_action(rql=None, args=None, cachekey=None, argsgroups=(), setuser=False, |
|
6393
7372100062e8
include fcayre's patch #1060507 to get extra rql query parameters from form content in rgx_action
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6175
diff
changeset
|
168 |
form=None, formgroups=(), transforms={}, rqlformparams=(), controller=None): |
3865
f9778a00e47f
actually fix rgx_action
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3864
diff
changeset
|
169 |
def do_build_rset(inputurl, uri, req, schema, |
f9778a00e47f
actually fix rgx_action
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3864
diff
changeset
|
170 |
cachekey=cachekey # necessary to avoid UnboundLocalError |
f9778a00e47f
actually fix rgx_action
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3864
diff
changeset
|
171 |
): |
0 | 172 |
if rql: |
173 |
kwargs = args and args.copy() or {} |
|
174 |
if argsgroups: |
|
3856
1c9589e46b16
fix rgx_action to ensure eids given to .execute are correctly typed
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3592
diff
changeset
|
175 |
if cachekey is not None and isinstance(cachekey, basestring): |
1c9589e46b16
fix rgx_action to ensure eids given to .execute are correctly typed
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3592
diff
changeset
|
176 |
cachekey = (cachekey,) |
0 | 177 |
match = inputurl.match(uri) |
178 |
for key in argsgroups: |
|
179 |
value = match.group(key) |
|
180 |
try: |
|
181 |
kwargs[key] = transforms[key](value) |
|
182 |
except KeyError: |
|
183 |
kwargs[key] = value |
|
3865
f9778a00e47f
actually fix rgx_action
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3864
diff
changeset
|
184 |
if cachekey is not None and key in cachekey: |
3856
1c9589e46b16
fix rgx_action to ensure eids given to .execute are correctly typed
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3592
diff
changeset
|
185 |
kwargs[key] = typed_eid(value) |
0 | 186 |
if setuser: |
187 |
kwargs['u'] = req.user.eid |
|
6393
7372100062e8
include fcayre's patch #1060507 to get extra rql query parameters from form content in rgx_action
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6175
diff
changeset
|
188 |
for param in rqlformparams: |
7372100062e8
include fcayre's patch #1060507 to get extra rql query parameters from form content in rgx_action
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6175
diff
changeset
|
189 |
kwargs.setdefault(param, req.form.get(param)) |
0 | 190 |
rset = req.execute(rql, kwargs, cachekey) |
191 |
else: |
|
192 |
rset = None |
|
193 |
form2 = form and form.copy() or {} |
|
194 |
if formgroups: |
|
195 |
match = inputurl.match(uri) |
|
196 |
for key in formgroups: |
|
197 |
form2[key] = match.group(key) |
|
3537
73b5bec579ba
[B] urlrewite: basic patch for i18n vtitle
Julien Jehannet <julien.jehannet@logilab.fr>
parents:
2748
diff
changeset
|
198 |
if "vtitle" in form2: |
3592
4c08780e54ed
[i18n] msgid tweaks
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3537
diff
changeset
|
199 |
form2['vtitle'] = req.__(form2['vtitle']) |
0 | 200 |
if form2: |
201 |
req.form.update(form2) |
|
202 |
return controller, rset |
|
203 |
return do_build_rset |
|
204 |
||
205 |
||
206 |
class SchemaBasedRewriter(URLRewriter): |
|
5313
c4fe397379c7
[doc/book] complete the urlrewrite sections with examples
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
5301
diff
changeset
|
207 |
"""Here, the rules dict maps regexps or plain strings to callbacks |
c4fe397379c7
[doc/book] complete the urlrewrite sections with examples
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
5301
diff
changeset
|
208 |
that will be called with inputurl, uri, req, schema as parameters. |
0 | 209 |
""" |
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2748
diff
changeset
|
210 |
__regid__ = 'schemabased' |
0 | 211 |
rules = [ |
212 |
# rgxp : callback |
|
5768
1e73a466aa69
[fti] support for fti ranking: has_text query results sorted by relevance, and provides a way to control weight per entity / entity's attribute
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
213 |
(rgx('/search/(.+)'), build_rset(rql=r'Any X ORDERBY FTIRANK(X) DESC WHERE X has_text %(text)s', |
1433 | 214 |
rgxgroups=[('text', 1)])), |
0 | 215 |
] |
216 |
||
217 |
def rewrite(self, req, uri): |
|
218 |
# XXX this could be refacted with SimpleReqRewriter |
|
219 |
for data in self.rules: |
|
220 |
try: |
|
221 |
inputurl, callback, required_groups = data |
|
222 |
except ValueError: |
|
223 |
inputurl, callback = data |
|
224 |
required_groups = None |
|
225 |
if required_groups and not req.user.matching_groups(required_groups): |
|
226 |
continue |
|
227 |
if isinstance(inputurl, basestring): |
|
228 |
if inputurl == uri: |
|
4045
f4a52abb6f4f
cw 3.6 api update
Sandrine Ribeau <sandrine.ribeau@logilab.fr>
parents:
3890
diff
changeset
|
229 |
return callback(inputurl, uri, req, self._cw.vreg.schema) |
0 | 230 |
elif inputurl.match(uri): # it's a regexp |
4045
f4a52abb6f4f
cw 3.6 api update
Sandrine Ribeau <sandrine.ribeau@logilab.fr>
parents:
3890
diff
changeset
|
231 |
return callback(inputurl, uri, req, self._cw.vreg.schema) |
0 | 232 |
else: |
233 |
self.debug("no schemabased rewrite rule found for %s", uri) |
|
234 |
raise KeyError(uri) |