author | Adrien Di Mascio <Adrien.DiMascio@logilab.fr> |
Thu, 23 Jul 2009 15:13:21 +0200 | |
changeset 2452 | 868e0c75a57d |
parent 2381 | caad2367d940 |
child 2458 | 4d114865098f |
permissions | -rw-r--r-- |
0 | 1 |
# -*- coding: utf-8 -*- |
2 |
"""Set of base controllers, which are directly plugged into the application |
|
3 |
object to handle publication. |
|
4 |
||
5 |
||
6 |
:organization: Logilab |
|
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1889
diff
changeset
|
7 |
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. |
0 | 8 |
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1889
diff
changeset
|
9 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
0 | 10 |
""" |
11 |
__docformat__ = "restructuredtext en" |
|
12 |
||
13 |
from smtplib import SMTP |
|
14 |
||
15 |
import simplejson |
|
16 |
||
17 |
from logilab.common.decorators import cached |
|
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2255
diff
changeset
|
18 |
from logilab.mtconverter import xml_escape |
0 | 19 |
|
945
912b604f0e42
missing import
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
882
diff
changeset
|
20 |
from cubicweb import NoSelectableObject, ValidationError, ObjectNotFound, typed_eid |
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
945
diff
changeset
|
21 |
from cubicweb.utils import strptime |
692
800592b8d39b
replace deprecated cubicweb.common.selectors by its new module path (cubicweb.selectors)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
644
diff
changeset
|
22 |
from cubicweb.selectors import yes, match_user_groups |
1838
d4cbcc15c01c
work-around for #343301 (display garbage in non xhtml browsers)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1798
diff
changeset
|
23 |
from cubicweb.view import STRICT_DOCTYPE, STRICT_DOCTYPE_NOEXT |
0 | 24 |
from cubicweb.common.mail import format_mail |
1635
866563e2d0fc
don't depends on simplejson outside web/
sylvain.thenault@logilab.fr
parents:
1560
diff
changeset
|
25 |
from cubicweb.web import ExplicitLogin, Redirect, RemoteCallFailed, json_dumps |
0 | 26 |
from cubicweb.web.controller import Controller |
27 |
from cubicweb.web.views import vid_from_rset |
|
1995
ec95eaa2b711
turn renderers into appobjects
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
28 |
from cubicweb.web.views.formrenderers import FormRenderer |
0 | 29 |
try: |
30 |
from cubicweb.web.facet import (FilterRQLBuilder, get_facet, |
|
408
a8814ff6824e
reactivate tests and fix bug triggering removal of undesired relation (eg type restriction) in some cases
sylvain.thenault@logilab.fr
parents:
353
diff
changeset
|
31 |
prepare_facets_rqlst) |
0 | 32 |
HAS_SEARCH_RESTRICTION = True |
33 |
except ImportError: # gae |
|
34 |
HAS_SEARCH_RESTRICTION = False |
|
1419 | 35 |
|
36 |
||
1838
d4cbcc15c01c
work-around for #343301 (display garbage in non xhtml browsers)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1798
diff
changeset
|
37 |
def xhtml_wrap(self, source): |
d4cbcc15c01c
work-around for #343301 (display garbage in non xhtml browsers)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1798
diff
changeset
|
38 |
# XXX factor out, watch view.py ~ Maintemplate.doctype |
d4cbcc15c01c
work-around for #343301 (display garbage in non xhtml browsers)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1798
diff
changeset
|
39 |
if self.req.xhtml_browser(): |
d4cbcc15c01c
work-around for #343301 (display garbage in non xhtml browsers)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1798
diff
changeset
|
40 |
dt = STRICT_DOCTYPE |
1839 | 41 |
else: |
42 |
dt = STRICT_DOCTYPE_NOEXT |
|
1838
d4cbcc15c01c
work-around for #343301 (display garbage in non xhtml browsers)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1798
diff
changeset
|
43 |
head = u'<?xml version="1.0"?>\n' + dt |
1419 | 44 |
return head + u'<div xmlns="http://www.w3.org/1999/xhtml" xmlns:cubicweb="http://www.logilab.org/2008/cubicweb">%s</div>' % source.strip() |
45 |
||
46 |
def jsonize(func): |
|
47 |
"""decorator to sets correct content_type and calls `simplejson.dumps` on |
|
48 |
results |
|
49 |
""" |
|
50 |
def wrapper(self, *args, **kwargs): |
|
51 |
self.req.set_content_type('application/json') |
|
1635
866563e2d0fc
don't depends on simplejson outside web/
sylvain.thenault@logilab.fr
parents:
1560
diff
changeset
|
52 |
return json_dumps(func(self, *args, **kwargs)) |
1527
c8ca1782e252
controller fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1467
diff
changeset
|
53 |
wrapper.__name__ = func.__name__ |
1419 | 54 |
return wrapper |
55 |
||
56 |
def xhtmlize(func): |
|
57 |
"""decorator to sets correct content_type and calls `xmlize` on results""" |
|
58 |
def wrapper(self, *args, **kwargs): |
|
59 |
self.req.set_content_type(self.req.html_content_type()) |
|
60 |
result = func(self, *args, **kwargs) |
|
1838
d4cbcc15c01c
work-around for #343301 (display garbage in non xhtml browsers)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1798
diff
changeset
|
61 |
return xhtml_wrap(self, result) |
1527
c8ca1782e252
controller fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1467
diff
changeset
|
62 |
wrapper.__name__ = func.__name__ |
1419 | 63 |
return wrapper |
64 |
||
65 |
def check_pageid(func): |
|
66 |
"""decorator which checks the given pageid is found in the |
|
67 |
user's session data |
|
68 |
""" |
|
69 |
def wrapper(self, *args, **kwargs): |
|
70 |
data = self.req.get_session_data(self.req.pageid) |
|
71 |
if data is None: |
|
72 |
raise RemoteCallFailed(self.req._('pageid-not-found')) |
|
73 |
return func(self, *args, **kwargs) |
|
74 |
return wrapper |
|
75 |
||
76 |
||
0 | 77 |
class LoginController(Controller): |
78 |
id = 'login' |
|
79 |
||
80 |
def publish(self, rset=None): |
|
81 |
"""log in the application""" |
|
82 |
if self.config['auth-mode'] == 'http': |
|
83 |
# HTTP authentication |
|
84 |
raise ExplicitLogin() |
|
85 |
else: |
|
86 |
# Cookie authentication |
|
87 |
return self.appli.need_login_content(self.req) |
|
88 |
||
1419 | 89 |
|
0 | 90 |
class LogoutController(Controller): |
91 |
id = 'logout' |
|
1419 | 92 |
|
0 | 93 |
def publish(self, rset=None): |
94 |
"""logout from the application""" |
|
95 |
return self.appli.session_handler.logout(self.req) |
|
96 |
||
97 |
||
98 |
class ViewController(Controller): |
|
823
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
99 |
"""standard entry point : |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
100 |
- build result set |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
101 |
- select and call main template |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
102 |
""" |
0 | 103 |
id = 'view' |
823
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
104 |
template = 'main-template' |
1419 | 105 |
|
0 | 106 |
def publish(self, rset=None): |
107 |
"""publish a request, returning an encoded string""" |
|
823
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
108 |
view, rset = self._select_view_and_rset(rset) |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
109 |
self.add_to_breadcrumbs(view) |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
110 |
self.validate_cache(view) |
882
75488a2a875e
fix ui.main-template property handling
sylvain.thenault@logilab.fr
parents:
823
diff
changeset
|
111 |
template = self.appli.main_template_id(self.req) |
823
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
112 |
return self.vreg.main_template(self.req, template, rset=rset, view=view) |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
113 |
|
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
114 |
def _select_view_and_rset(self, rset): |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
115 |
req = self.req |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
116 |
if rset is None and not hasattr(req, '_rql_processed'): |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
117 |
req._rql_processed = True |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
118 |
rset = self.process_rql(req.form.get('rql')) |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
119 |
if rset and rset.rowcount == 1 and '__method' in req.form: |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
120 |
entity = rset.get_entity(0, 0) |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
121 |
try: |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
122 |
method = getattr(entity, req.form.pop('__method')) |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
123 |
method() |
1827
93840d187f26
allow the __method() hook to raise a Redirect exception
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1798
diff
changeset
|
124 |
except Redirect: # propagate redirect that might occur in method() |
93840d187f26
allow the __method() hook to raise a Redirect exception
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1798
diff
changeset
|
125 |
raise |
823
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
126 |
except Exception, ex: |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
127 |
self.exception('while handling __method') |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
128 |
req.set_message(req._("error while handling __method: %s") % req._(ex)) |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
129 |
vid = req.form.get('vid') or vid_from_rset(req, rset, self.schema) |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
130 |
try: |
2058
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2045
diff
changeset
|
131 |
view = self.vreg.select('views', vid, req, rset=rset) |
823
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
132 |
except ObjectNotFound: |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
133 |
self.warning("the view %s could not be found", vid) |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
134 |
req.set_message(req._("The view %s could not be found") % vid) |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
135 |
vid = vid_from_rset(req, rset, self.schema) |
2058
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2045
diff
changeset
|
136 |
view = self.vreg.select('views', vid, req, rset=rset) |
823
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
137 |
except NoSelectableObject: |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
138 |
if rset: |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
139 |
req.set_message(req._("The view %s can not be applied to this query") % vid) |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
140 |
else: |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
141 |
req.set_message(req._("You have no access to this view or it's not applyable to current data")) |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
142 |
self.warning("the view %s can not be applied to this query", vid) |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
143 |
vid = vid_from_rset(req, rset, self.schema) |
2058
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2045
diff
changeset
|
144 |
view = self.vreg.select('views', vid, req, rset=rset) |
823
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
145 |
return view, rset |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
146 |
|
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
147 |
def add_to_breadcrumbs(self, view): |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
148 |
# update breadcrumps **before** validating cache, unless the view |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
149 |
# specifies explicitly it should not be added to breadcrumb or the |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
150 |
# view is a binary view |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
151 |
if view.add_to_breadcrumbs and not view.binary: |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
152 |
self.req.update_breadcrumbs() |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
153 |
|
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
154 |
def validate_cache(self, view): |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
155 |
view.set_http_cache_headers() |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
808
diff
changeset
|
156 |
self.req.validate_cache() |
0 | 157 |
|
158 |
def execute_linkto(self, eid=None): |
|
159 |
"""XXX __linkto parameter may cause security issue |
|
160 |
||
161 |
defined here since custom application controller inheriting from this |
|
162 |
one use this method? |
|
163 |
""" |
|
164 |
req = self.req |
|
165 |
if not '__linkto' in req.form: |
|
166 |
return |
|
167 |
if eid is None: |
|
168 |
eid = typed_eid(req.form['eid']) |
|
169 |
for linkto in req.list_form_param('__linkto', pop=True): |
|
170 |
rtype, eids, target = linkto.split(':') |
|
171 |
assert target in ('subject', 'object') |
|
172 |
eids = eids.split('_') |
|
173 |
if target == 'subject': |
|
174 |
rql = 'SET X %s Y WHERE X eid %%(x)s, Y eid %%(y)s' % rtype |
|
175 |
else: |
|
176 |
rql = 'SET Y %s X WHERE X eid %%(x)s, Y eid %%(y)s' % rtype |
|
177 |
for teid in eids: |
|
1419 | 178 |
req.execute(rql, {'x': eid, 'y': typed_eid(teid)}, ('x', 'y')) |
0 | 179 |
|
180 |
||
2240
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
181 |
def _validation_error(req, ex): |
2293 | 182 |
req.cnx.rollback() |
2240
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
183 |
forminfo = req.get_session_data(req.form.get('__errorurl'), pop=True) |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
184 |
foreid = ex.entity |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
185 |
eidmap = req.data.get('eidmap', {}) |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
186 |
for var, eid in eidmap.items(): |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
187 |
if foreid == eid: |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
188 |
foreid = var |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
189 |
break |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
190 |
return (foreid, ex.errors) |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
191 |
|
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
192 |
def _validate_form(req, vreg): |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
193 |
# XXX should use the `RemoteCallFailed` mechanism |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
194 |
try: |
2294
e846aa2824dd
Fix parameter for controller selection.
Sandrine Ribeau <sandrine.ribeau@logilab.fr>
parents:
2293
diff
changeset
|
195 |
ctrl = vreg.select('controllers', 'edit', req=req) |
2240
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
196 |
except NoSelectableObject: |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
197 |
return (False, {None: req._('not authorized')}) |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
198 |
try: |
2255
c346af0727ca
more generic way to detect json requests (not yet perfect though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2240
diff
changeset
|
199 |
ctrl.publish(None) |
2240
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
200 |
except ValidationError, ex: |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
201 |
return (False, _validation_error(req, ex)) |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
202 |
except Redirect, ex: |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
203 |
try: |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
204 |
req.cnx.commit() # ValidationError may be raise on commit |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
205 |
except ValidationError, ex: |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
206 |
return (False, _validation_error(req, ex)) |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
207 |
else: |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
208 |
return (True, ex.location) |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
209 |
except Exception, ex: |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
210 |
req.cnx.rollback() |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
211 |
req.exception('unexpected error while validating form') |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
212 |
return (False, req._(str(ex).decode('utf-8'))) |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
213 |
return (False, '???') |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
214 |
|
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
215 |
|
0 | 216 |
class FormValidatorController(Controller): |
217 |
id = 'validateform' |
|
218 |
||
219 |
def publish(self, rset=None): |
|
2255
c346af0727ca
more generic way to detect json requests (not yet perfect though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2240
diff
changeset
|
220 |
self.req.json_request = True |
2240
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
221 |
# XXX unclear why we have a separated controller here vs |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
222 |
# js_validate_form on the json controller |
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
223 |
status, args = _validate_form(self.req, self.vreg) |
0 | 224 |
self.req.set_content_type('text/html') |
225 |
jsarg = simplejson.dumps( (status, args) ) |
|
2045
bf0643d4ef36
add __domid hidden input in forms so that we can validate more than one form per page
Florent <florent@secondweb.fr>
parents:
1996
diff
changeset
|
226 |
domid = self.req.form.get('__domid', 'entityForm').encode( |
bf0643d4ef36
add __domid hidden input in forms so that we can validate more than one form per page
Florent <florent@secondweb.fr>
parents:
1996
diff
changeset
|
227 |
self.req.encoding) |
0 | 228 |
return """<script type="text/javascript"> |
2045
bf0643d4ef36
add __domid hidden input in forms so that we can validate more than one form per page
Florent <florent@secondweb.fr>
parents:
1996
diff
changeset
|
229 |
window.parent.handleFormValidationResponse('%s', null, null, %s); |
bf0643d4ef36
add __domid hidden input in forms so that we can validate more than one form per page
Florent <florent@secondweb.fr>
parents:
1996
diff
changeset
|
230 |
</script>""" % (domid, simplejson.dumps( (status, args) )) |
0 | 231 |
|
232 |
||
233 |
class JSonController(Controller): |
|
234 |
id = 'json' |
|
235 |
||
236 |
def publish(self, rset=None): |
|
1419 | 237 |
"""call js_* methods. Expected form keys: |
238 |
||
239 |
:fname: the method name without the js_ prefix |
|
240 |
:args: arguments list (json) |
|
241 |
||
242 |
note: it's the responsability of js_* methods to set the correct |
|
243 |
response content type |
|
244 |
""" |
|
2255
c346af0727ca
more generic way to detect json requests (not yet perfect though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2240
diff
changeset
|
245 |
self.req.json_request = True |
0 | 246 |
self.req.pageid = self.req.form.get('pageid') |
1419 | 247 |
try: |
2079
aff0950c54c4
proper error when fname isn't specified
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2045
diff
changeset
|
248 |
fname = self.req.form['fname'] |
1419 | 249 |
func = getattr(self, 'js_%s' % fname) |
2079
aff0950c54c4
proper error when fname isn't specified
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2045
diff
changeset
|
250 |
except KeyError: |
aff0950c54c4
proper error when fname isn't specified
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2045
diff
changeset
|
251 |
raise RemoteCallFailed('no method specified') |
1419 | 252 |
except AttributeError: |
253 |
raise RemoteCallFailed('no %s method' % fname) |
|
254 |
# no <arg> attribute means the callback takes no argument |
|
255 |
args = self.req.form.get('arg', ()) |
|
256 |
if not isinstance(args, (list, tuple)): |
|
257 |
args = (args,) |
|
258 |
args = [simplejson.loads(arg) for arg in args] |
|
0 | 259 |
try: |
1419 | 260 |
result = func(*args) |
261 |
except RemoteCallFailed: |
|
262 |
raise |
|
263 |
except Exception, ex: |
|
2058
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2045
diff
changeset
|
264 |
import traceback |
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2045
diff
changeset
|
265 |
traceback.print_exc() |
1419 | 266 |
self.exception('an exception occured while calling js_%s(%s): %s', |
267 |
fname, args, ex) |
|
268 |
raise RemoteCallFailed(repr(ex)) |
|
269 |
if result is None: |
|
270 |
return '' |
|
271 |
# get unicode on @htmlize methods, encoded string on @jsonize methods |
|
272 |
elif isinstance(result, unicode): |
|
273 |
return result.encode(self.req.encoding) |
|
274 |
return result |
|
275 |
||
276 |
def _rebuild_posted_form(self, names, values, action=None): |
|
277 |
form = {} |
|
278 |
for name, value in zip(names, values): |
|
279 |
# remove possible __action_xxx inputs |
|
280 |
if name.startswith('__action'): |
|
281 |
continue |
|
282 |
# form.setdefault(name, []).append(value) |
|
283 |
if name in form: |
|
284 |
curvalue = form[name] |
|
285 |
if isinstance(curvalue, list): |
|
286 |
curvalue.append(value) |
|
287 |
else: |
|
288 |
form[name] = [curvalue, value] |
|
289 |
else: |
|
290 |
form[name] = value |
|
291 |
# simulate click on __action_%s button to help the controller |
|
292 |
if action: |
|
293 |
form['__action_%s' % action] = u'whatever' |
|
294 |
return form |
|
0 | 295 |
|
296 |
def _exec(self, rql, args=None, eidkey=None, rocheck=True): |
|
297 |
"""json mode: execute RQL and return resultset as json""" |
|
298 |
if rocheck: |
|
299 |
self.ensure_ro_rql(rql) |
|
300 |
try: |
|
301 |
return self.req.execute(rql, args, eidkey) |
|
302 |
except Exception, ex: |
|
303 |
self.exception("error in _exec(rql=%s): %s", rql, ex) |
|
304 |
return None |
|
305 |
return None |
|
306 |
||
1419 | 307 |
@xhtmlize |
308 |
def js_view(self): |
|
643
616191014b8b
[jsoncontroller] reorganize _html_exec (used by replacePageChunk) to output required css and js scripts
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
603
diff
changeset
|
309 |
# XXX try to use the page-content template |
0 | 310 |
req = self.req |
311 |
rql = req.form.get('rql') |
|
1419 | 312 |
if rql: |
0 | 313 |
rset = self._exec(rql) |
1419 | 314 |
else: |
315 |
rset = None |
|
0 | 316 |
vid = req.form.get('vid') or vid_from_rset(req, rset, self.schema) |
317 |
try: |
|
2058
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2045
diff
changeset
|
318 |
view = self.vreg.select('views', vid, req, rset=rset) |
0 | 319 |
except NoSelectableObject: |
320 |
vid = req.form.get('fallbackvid', 'noresult') |
|
2058
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2045
diff
changeset
|
321 |
view = self.vreg.select('views', vid, req, rset=rset) |
0 | 322 |
divid = req.form.get('divid', 'pageContent') |
323 |
# we need to call pagination before with the stream set |
|
324 |
stream = view.set_stream() |
|
325 |
if req.form.get('paginate'): |
|
326 |
if divid == 'pageContent': |
|
327 |
# mimick main template behaviour |
|
328 |
stream.write(u'<div id="pageContent">') |
|
329 |
vtitle = self.req.form.get('vtitle') |
|
330 |
if vtitle: |
|
447 | 331 |
stream.write(u'<h1 class="vtitle">%s</h1>\n' % vtitle) |
0 | 332 |
view.pagination(req, rset, view.w, not view.need_navigation) |
333 |
if divid == 'pageContent': |
|
334 |
stream.write(u'<div id="contentmain">') |
|
1723 | 335 |
view.render() |
643
616191014b8b
[jsoncontroller] reorganize _html_exec (used by replacePageChunk) to output required css and js scripts
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
603
diff
changeset
|
336 |
extresources = req.html_headers.getvalue(skiphead=True) |
808
8d739f6e8ef5
JsonController: only return an ajaxHtmlHead div if extra resources are needed
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
762
diff
changeset
|
337 |
if extresources: |
8d739f6e8ef5
JsonController: only return an ajaxHtmlHead div if extra resources are needed
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
762
diff
changeset
|
338 |
stream.write(u'<div class="ajaxHtmlHead">\n') # XXX use a widget ? |
8d739f6e8ef5
JsonController: only return an ajaxHtmlHead div if extra resources are needed
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
762
diff
changeset
|
339 |
stream.write(extresources) |
8d739f6e8ef5
JsonController: only return an ajaxHtmlHead div if extra resources are needed
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
762
diff
changeset
|
340 |
stream.write(u'</div>\n') |
0 | 341 |
if req.form.get('paginate') and divid == 'pageContent': |
342 |
stream.write(u'</div></div>') |
|
1419 | 343 |
return stream.getvalue() |
0 | 344 |
|
1419 | 345 |
@xhtmlize |
346 |
def js_prop_widget(self, propkey, varname, tabindex=None): |
|
347 |
"""specific method for CWProperty handling""" |
|
348 |
entity = self.vreg.etype_class('CWProperty')(self.req, None, None) |
|
349 |
entity.eid = varname |
|
350 |
entity['pkey'] = propkey |
|
2058
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2045
diff
changeset
|
351 |
form = self.vreg.select('forms', 'edition', self.req, entity=entity) |
1419 | 352 |
form.form_build_context() |
353 |
vfield = form.field_by_name('value') |
|
1995
ec95eaa2b711
turn renderers into appobjects
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
354 |
renderer = FormRenderer(self.req) |
1419 | 355 |
return vfield.render(form, renderer, tabindex=tabindex) \ |
356 |
+ renderer.render_help(form, vfield) |
|
0 | 357 |
|
1419 | 358 |
@xhtmlize |
359 |
def js_component(self, compid, rql, registry='components', extraargs=None): |
|
360 |
if rql: |
|
361 |
rset = self._exec(rql) |
|
362 |
else: |
|
363 |
rset = None |
|
2058
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2045
diff
changeset
|
364 |
comp = self.vreg.select(registry, compid, self.req, rset=rset) |
1419 | 365 |
if extraargs is None: |
366 |
extraargs = {} |
|
367 |
else: # we receive unicode keys which is not supported by the **syntax |
|
368 |
extraargs = dict((str(key), value) |
|
369 |
for key, value in extraargs.items()) |
|
370 |
extraargs = extraargs or {} |
|
1723 | 371 |
return comp.render(**extraargs) |
1419 | 372 |
|
373 |
@check_pageid |
|
374 |
@xhtmlize |
|
375 |
def js_inline_creation_form(self, peid, ttype, rtype, role): |
|
2058
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2045
diff
changeset
|
376 |
view = self.vreg.select('views', 'inline-creation', self.req, |
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2045
diff
changeset
|
377 |
etype=ttype, peid=peid, rtype=rtype, role=role) |
1723 | 378 |
return view.render(etype=ttype, peid=peid, rtype=rtype, role=role) |
1419 | 379 |
|
380 |
@jsonize |
|
0 | 381 |
def js_validate_form(self, action, names, values): |
1527
c8ca1782e252
controller fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1467
diff
changeset
|
382 |
return self.validate_form(action, names, values) |
c8ca1782e252
controller fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1467
diff
changeset
|
383 |
|
c8ca1782e252
controller fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1467
diff
changeset
|
384 |
def validate_form(self, action, names, values): |
0 | 385 |
self.req.form = self._rebuild_posted_form(names, values, action) |
2240
ff84892900ac
factorize form validation code, fix pb with validation error in inlined forms during creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2079
diff
changeset
|
386 |
return _validate_form(self.req, self.vreg) |
0 | 387 |
|
1419 | 388 |
@jsonize |
2345
16e3d0e47ee6
[reledit] there is nothing to escape, also cleanup lzone for attributes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2330
diff
changeset
|
389 |
def js_edit_field(self, action, names, values, rtype, eid, default): |
1527
c8ca1782e252
controller fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1467
diff
changeset
|
390 |
success, args = self.validate_form(action, names, values) |
0 | 391 |
if success: |
1560
7dd2a81b8bc8
[basecontrollers] add edit_relation next to edit_field, misc notes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1527
diff
changeset
|
392 |
# Any X,N where we don't seem to use N is an optimisation |
7dd2a81b8bc8
[basecontrollers] add edit_relation next to edit_field, misc notes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1527
diff
changeset
|
393 |
# printable_value won't need to query N again |
0 | 394 |
rset = self.req.execute('Any X,N WHERE X eid %%(x)s, X %s N' % rtype, |
395 |
{'x': eid}, 'x') |
|
396 |
entity = rset.get_entity(0, 0) |
|
2330
8c70ca715fe9
[reledit] have a link-free landing zone for mouse-clicks (closes #343544)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2312
diff
changeset
|
397 |
value = entity.printable_value(rtype) or default |
2345
16e3d0e47ee6
[reledit] there is nothing to escape, also cleanup lzone for attributes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2330
diff
changeset
|
398 |
return (success, args, value) |
0 | 399 |
else: |
400 |
return (success, args, None) |
|
1419 | 401 |
|
1560
7dd2a81b8bc8
[basecontrollers] add edit_relation next to edit_field, misc notes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1527
diff
changeset
|
402 |
@jsonize |
2371
76bf522c27be
[reledit] simplify, fixing #344545
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2345
diff
changeset
|
403 |
def js_reledit_form(self, eid, rtype, role, lzone): |
76bf522c27be
[reledit] simplify, fixing #344545
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2345
diff
changeset
|
404 |
entity = self.req.eid_rset(eid).get_entity(0, 0) |
76bf522c27be
[reledit] simplify, fixing #344545
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2345
diff
changeset
|
405 |
return entity.view('reledit', rtype=rtype, role=role, |
76bf522c27be
[reledit] simplify, fixing #344545
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2345
diff
changeset
|
406 |
landing_zone=lzone) |
1759
61d026ced19f
preliminary support for inline edition of relations
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1736
diff
changeset
|
407 |
|
61d026ced19f
preliminary support for inline edition of relations
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1736
diff
changeset
|
408 |
@jsonize |
0 | 409 |
def js_i18n(self, msgids): |
410 |
"""returns the translation of `msgid`""" |
|
411 |
return [self.req._(msgid) for msgid in msgids] |
|
412 |
||
1419 | 413 |
@jsonize |
0 | 414 |
def js_format_date(self, strdate): |
415 |
"""returns the formatted date for `msgid`""" |
|
1380 | 416 |
date = strptime(strdate, '%Y-%m-%d %H:%M:%S') |
0 | 417 |
return self.format_date(date) |
418 |
||
1419 | 419 |
@jsonize |
0 | 420 |
def js_external_resource(self, resource): |
421 |
"""returns the URL of the external resource named `resource`""" |
|
422 |
return self.req.external_resource(resource) |
|
423 |
||
424 |
@check_pageid |
|
1419 | 425 |
@jsonize |
0 | 426 |
def js_user_callback(self, cbname): |
427 |
page_data = self.req.get_session_data(self.req.pageid, {}) |
|
428 |
try: |
|
429 |
cb = page_data[cbname] |
|
430 |
except KeyError: |
|
431 |
return None |
|
432 |
return cb(self.req) |
|
433 |
||
434 |
if HAS_SEARCH_RESTRICTION: |
|
1419 | 435 |
@jsonize |
0 | 436 |
def js_filter_build_rql(self, names, values): |
437 |
form = self._rebuild_posted_form(names, values) |
|
438 |
self.req.form = form |
|
439 |
builder = FilterRQLBuilder(self.req) |
|
440 |
return builder.build_rql() |
|
441 |
||
1419 | 442 |
@jsonize |
0 | 443 |
def js_filter_select_content(self, facetids, rql): |
444 |
rqlst = self.vreg.parse(self.req, rql) # XXX Union unsupported yet |
|
445 |
mainvar = prepare_facets_rqlst(rqlst)[0] |
|
446 |
update_map = {} |
|
447 |
for facetid in facetids: |
|
448 |
facet = get_facet(self.req, facetid, rqlst.children[0], mainvar) |
|
449 |
update_map[facetid] = facet.possible_values() |
|
450 |
return update_map |
|
451 |
||
1419 | 452 |
def js_unregister_user_callback(self, cbname): |
453 |
self.req.unregister_callback(self.req.pageid, cbname) |
|
454 |
||
455 |
def js_unload_page_data(self): |
|
456 |
self.req.del_session_data(self.req.pageid) |
|
457 |
||
458 |
def js_cancel_edition(self, errorurl): |
|
459 |
"""cancelling edition from javascript |
|
460 |
||
461 |
We need to clear associated req's data : |
|
462 |
- errorurl |
|
463 |
- pending insertions / deletions |
|
464 |
""" |
|
465 |
self.req.cancel_edition(errorurl) |
|
466 |
||
0 | 467 |
def js_delete_bookmark(self, beid): |
1419 | 468 |
rql = 'DELETE B bookmarked_by U WHERE B eid %(b)s, U eid %(u)s' |
469 |
self.req.execute(rql, {'b': typed_eid(beid), 'u' : self.req.user.eid}) |
|
470 |
||
1844
ec51bf1b8be3
avoid monkeypatching JsonController in cw, to avoid _potential_ load order problems
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1839
diff
changeset
|
471 |
def js_node_clicked(self, treeid, nodeeid): |
ec51bf1b8be3
avoid monkeypatching JsonController in cw, to avoid _potential_ load order problems
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1839
diff
changeset
|
472 |
"""add/remove eid in treestate cookie""" |
ec51bf1b8be3
avoid monkeypatching JsonController in cw, to avoid _potential_ load order problems
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1839
diff
changeset
|
473 |
from cubicweb.web.views.treeview import treecookiename |
ec51bf1b8be3
avoid monkeypatching JsonController in cw, to avoid _potential_ load order problems
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1839
diff
changeset
|
474 |
cookies = self.req.get_cookie() |
ec51bf1b8be3
avoid monkeypatching JsonController in cw, to avoid _potential_ load order problems
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1839
diff
changeset
|
475 |
statename = treecookiename(treeid) |
ec51bf1b8be3
avoid monkeypatching JsonController in cw, to avoid _potential_ load order problems
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1839
diff
changeset
|
476 |
treestate = cookies.get(statename) |
ec51bf1b8be3
avoid monkeypatching JsonController in cw, to avoid _potential_ load order problems
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1839
diff
changeset
|
477 |
if treestate is None: |
ec51bf1b8be3
avoid monkeypatching JsonController in cw, to avoid _potential_ load order problems
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1839
diff
changeset
|
478 |
cookies[statename] = nodeeid |
ec51bf1b8be3
avoid monkeypatching JsonController in cw, to avoid _potential_ load order problems
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1839
diff
changeset
|
479 |
self.req.set_cookie(cookies, statename) |
ec51bf1b8be3
avoid monkeypatching JsonController in cw, to avoid _potential_ load order problems
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1839
diff
changeset
|
480 |
else: |
ec51bf1b8be3
avoid monkeypatching JsonController in cw, to avoid _potential_ load order problems
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1839
diff
changeset
|
481 |
marked = set(filter(None, treestate.value.split(';'))) |
ec51bf1b8be3
avoid monkeypatching JsonController in cw, to avoid _potential_ load order problems
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1839
diff
changeset
|
482 |
if nodeeid in marked: |
ec51bf1b8be3
avoid monkeypatching JsonController in cw, to avoid _potential_ load order problems
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1839
diff
changeset
|
483 |
marked.remove(nodeeid) |
ec51bf1b8be3
avoid monkeypatching JsonController in cw, to avoid _potential_ load order problems
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1839
diff
changeset
|
484 |
else: |
ec51bf1b8be3
avoid monkeypatching JsonController in cw, to avoid _potential_ load order problems
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1839
diff
changeset
|
485 |
marked.add(nodeeid) |
ec51bf1b8be3
avoid monkeypatching JsonController in cw, to avoid _potential_ load order problems
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1839
diff
changeset
|
486 |
cookies[statename] = ';'.join(marked) |
ec51bf1b8be3
avoid monkeypatching JsonController in cw, to avoid _potential_ load order problems
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1839
diff
changeset
|
487 |
self.req.set_cookie(cookies, statename) |
ec51bf1b8be3
avoid monkeypatching JsonController in cw, to avoid _potential_ load order problems
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1839
diff
changeset
|
488 |
|
1419 | 489 |
def js_set_cookie(self, cookiename, cookievalue): |
490 |
# XXX we should consider jQuery.Cookie |
|
491 |
cookiename, cookievalue = str(cookiename), str(cookievalue) |
|
492 |
cookies = self.req.get_cookie() |
|
493 |
cookies[cookiename] = cookievalue |
|
494 |
self.req.set_cookie(cookies, cookiename) |
|
495 |
||
496 |
# relations edition stuff ################################################## |
|
0 | 497 |
|
498 |
def _add_pending(self, eidfrom, rel, eidto, kind): |
|
499 |
key = 'pending_%s' % kind |
|
500 |
pendings = self.req.get_session_data(key, set()) |
|
501 |
pendings.add( (typed_eid(eidfrom), rel, typed_eid(eidto)) ) |
|
502 |
self.req.set_session_data(key, pendings) |
|
503 |
||
504 |
def _remove_pending(self, eidfrom, rel, eidto, kind): |
|
1419 | 505 |
key = 'pending_%s' % kind |
1713
d817f23439ba
bix a bug: correct the sended parameter 'no need for id in the string parameter name'
Graziella Toutoungis <graziella.toutoungis@logilab.fr>
parents:
1635
diff
changeset
|
506 |
pendings = self.req.get_session_data(key) |
d817f23439ba
bix a bug: correct the sended parameter 'no need for id in the string parameter name'
Graziella Toutoungis <graziella.toutoungis@logilab.fr>
parents:
1635
diff
changeset
|
507 |
pendings.remove( (typed_eid(eidfrom), rel, typed_eid(eidto)) ) |
d817f23439ba
bix a bug: correct the sended parameter 'no need for id in the string parameter name'
Graziella Toutoungis <graziella.toutoungis@logilab.fr>
parents:
1635
diff
changeset
|
508 |
self.req.set_session_data(key, pendings) |
0 | 509 |
|
1419 | 510 |
def js_remove_pending_insert(self, (eidfrom, rel, eidto)): |
511 |
self._remove_pending(eidfrom, rel, eidto, 'insert') |
|
512 |
||
513 |
def js_add_pending_inserts(self, tripletlist): |
|
514 |
for eidfrom, rel, eidto in tripletlist: |
|
515 |
self._add_pending(eidfrom, rel, eidto, 'insert') |
|
516 |
||
517 |
def js_remove_pending_delete(self, (eidfrom, rel, eidto)): |
|
518 |
self._remove_pending(eidfrom, rel, eidto, 'delete') |
|
519 |
||
520 |
def js_add_pending_delete(self, (eidfrom, rel, eidto)): |
|
521 |
self._add_pending(eidfrom, rel, eidto, 'delete') |
|
522 |
||
523 |
# XXX specific code. Kill me and my AddComboBox friend |
|
524 |
@jsonize |
|
0 | 525 |
def js_add_and_link_new_entity(self, etype_to, rel, eid_to, etype_from, value_from): |
526 |
# create a new entity |
|
527 |
eid_from = self.req.execute('INSERT %s T : T name "%s"' % ( etype_from, value_from ))[0][0] |
|
528 |
# link the new entity to the main entity |
|
529 |
rql = 'SET F %(rel)s T WHERE F eid %(eid_to)s, T eid %(eid_from)s' % {'rel' : rel, 'eid_to' : eid_to, 'eid_from' : eid_from} |
|
530 |
return eid_from |
|
603
18c6c31bbaf4
[controllers] a set_cookie method
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
581
diff
changeset
|
531 |
|
18c6c31bbaf4
[controllers] a set_cookie method
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
581
diff
changeset
|
532 |
|
0 | 533 |
class SendMailController(Controller): |
534 |
id = 'sendmail' |
|
742
99115e029dca
replaced most of __selectors__ assignments with __select__
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
692
diff
changeset
|
535 |
__select__ = match_user_groups('managers', 'users') |
0 | 536 |
|
537 |
def recipients(self): |
|
538 |
"""returns an iterator on email's recipients as entities""" |
|
539 |
eids = self.req.form['recipient'] |
|
540 |
# make sure we have a list even though only one recipient was specified |
|
541 |
if isinstance(eids, basestring): |
|
542 |
eids = (eids,) |
|
543 |
rql = 'Any X WHERE X eid in (%s)' % (','.join(eids)) |
|
544 |
rset = self.req.execute(rql) |
|
545 |
for entity in rset.entities(): |
|
546 |
entity.complete() # XXX really? |
|
547 |
yield entity |
|
548 |
||
549 |
@property |
|
550 |
@cached |
|
551 |
def smtp(self): |
|
552 |
mailhost, port = self.config['smtp-host'], self.config['smtp-port'] |
|
553 |
try: |
|
554 |
return SMTP(mailhost, port) |
|
555 |
except Exception, ex: |
|
556 |
self.exception("can't connect to smtp server %s:%s (%s)", |
|
557 |
mailhost, port, ex) |
|
558 |
url = self.build_url(__message=self.req._('could not connect to the SMTP server')) |
|
559 |
raise Redirect(url) |
|
560 |
||
561 |
def sendmail(self, recipient, subject, body): |
|
562 |
helo_addr = '%s <%s>' % (self.config['sender-name'], |
|
563 |
self.config['sender-addr']) |
|
564 |
msg = format_mail({'email' : self.req.user.get_email(), |
|
565 |
'name' : self.req.user.dc_title(),}, |
|
566 |
[recipient], body, subject) |
|
1419 | 567 |
self.smtp.sendmail(helo_addr, [recipient], msg.as_string()) |
0 | 568 |
|
569 |
def publish(self, rset=None): |
|
570 |
# XXX this allow anybody with access to an cubicweb application to use it as a mail relay |
|
571 |
body = self.req.form['mailbody'] |
|
1467
972517be96dc
sendmail form should now work as before
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1419
diff
changeset
|
572 |
subject = self.req.form['subject'] |
0 | 573 |
for recipient in self.recipients(): |
574 |
text = body % recipient.as_email_context() |
|
575 |
self.sendmail(recipient.get_email(), subject, text) |
|
576 |
# breadcrumbs = self.req.get_session_data('breadcrumbs', None) |
|
577 |
url = self.build_url(__message=self.req._('emails successfully sent')) |
|
578 |
raise Redirect(url) |
|
579 |
||
580 |
||
581 |
class MailBugReportController(SendMailController): |
|
582 |
id = 'reportbug' |
|
742
99115e029dca
replaced most of __selectors__ assignments with __select__
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
692
diff
changeset
|
583 |
__select__ = yes() |
0 | 584 |
|
585 |
def publish(self, rset=None): |
|
586 |
body = self.req.form['description'] |
|
587 |
self.sendmail(self.config['submit-mail'], _('%s error report') % self.config.appid, body) |
|
588 |
url = self.build_url(__message=self.req._('bug report sent')) |
|
589 |
raise Redirect(url) |
|
1419 | 590 |