author | sylvain.thenault@logilab.fr |
Thu, 12 Mar 2009 16:33:47 +0100 | |
branch | tls-sprint |
changeset 1096 | e1fe98850bf7 |
parent 1091 | b5e253c0dd13 |
child 1132 | 96752791c2b6 |
permissions | -rw-r--r-- |
0 | 1 |
"""Mass mailing form views |
2 |
||
3 |
:organization: Logilab |
|
640
8e64f12be69c
drop EntityAction usage in cw, upgrade rql_condition and friends
sylvain.thenault@logilab.fr
parents:
635
diff
changeset
|
4 |
:copyright: 2007-2009 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
0 | 5 |
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
6 |
""" |
|
1085 | 7 |
__docformat__ = "restructuredtext en" |
0 | 8 |
|
9 |
import operator |
|
10 |
||
11 |
from logilab.mtconverter import html_escape |
|
12 |
||
13 |
from cubicweb.interfaces import IEmailable |
|
635
305da8d6aa2d
require_group/match_user_group -> match_user_groups
sylvain.thenault@logilab.fr
parents:
431
diff
changeset
|
14 |
from cubicweb.selectors import implements, match_user_groups |
984 | 15 |
from cubicweb.view import EntityView |
1085 | 16 |
from cubicweb.web import stdmsgs |
640
8e64f12be69c
drop EntityAction usage in cw, upgrade rql_condition and friends
sylvain.thenault@logilab.fr
parents:
635
diff
changeset
|
17 |
from cubicweb.web.action import Action |
1085 | 18 |
from cubicweb.web.form import FieldsForm, FormRenderer |
19 |
from cubicweb.web.formfields import StringField |
|
20 |
from cubicweb.web.formwidgets import CheckBox, TextInput, AjaxWidget |
|
0 | 21 |
|
22 |
||
640
8e64f12be69c
drop EntityAction usage in cw, upgrade rql_condition and friends
sylvain.thenault@logilab.fr
parents:
635
diff
changeset
|
23 |
class SendEmailAction(Action): |
1074 | 24 |
id = 'sendemail' |
635
305da8d6aa2d
require_group/match_user_group -> match_user_groups
sylvain.thenault@logilab.fr
parents:
431
diff
changeset
|
25 |
# XXX should check email is set as well |
742
99115e029dca
replaced most of __selectors__ assignments with __select__
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
640
diff
changeset
|
26 |
__select__ = implements(IEmailable) & match_user_groups('managers', 'users') |
0 | 27 |
|
28 |
title = _('send email') |
|
1074 | 29 |
category = 'mainactions' |
0 | 30 |
|
31 |
def url(self): |
|
32 |
params = {'vid': 'massmailing', '__force_display': 1} |
|
33 |
if self.req.form.has_key('rql'): |
|
34 |
params['rql'] = self.req.form['rql'] |
|
35 |
return self.build_url(self.req.relative_path(includeparams=False), |
|
36 |
**params) |
|
37 |
||
1074 | 38 |
|
39 |
class MassMailingForm(FieldsForm): |
|
40 |
id = 'massmailing' |
|
41 |
||
42 |
sender = StringField(widget=TextInput({'disabled': 'disabled'}), label=_('From:')) |
|
43 |
recipient = StringField(widget=CheckBox(), label=_('Recipients:')) |
|
44 |
subject = StringField(label=_('Subject:')) |
|
45 |
mailbody = StringField(widget=AjaxWidget(wdgtype='TemplateTextField', |
|
46 |
inputid='mailarea')) |
|
0 | 47 |
|
1074 | 48 |
def form_field_vocabulary(self, field): |
49 |
if field.name == 'recipient': |
|
50 |
vocab = [(entity.get_email(), entity.eid) for entity in self.rset.entities()] |
|
51 |
return [(label, value) for label, value in vocab if label] |
|
52 |
return super(MassMailingForm, self).form_field_vocabulary(field) |
|
53 |
||
54 |
def form_field_value(self, field, values): |
|
55 |
if field.name == 'recipient': |
|
56 |
return [entity.eid for entity in self.rset.entities() if entity.get_email()] |
|
57 |
elif field.name == 'mailbody': |
|
58 |
field.widget.attrs['cubicweb:variables'] = self.get_allowed_substitutions() |
|
59 |
return super(MassMailingForm, self).form_field_value(field, values) |
|
60 |
||
61 |
def form_buttons(self): |
|
62 |
context = {'domid': self.domid, |
|
63 |
'cancel' : self.req._(stdmsgs.BUTTON_CANCEL), |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
1085
diff
changeset
|
64 |
'cancelimgpath' : self.req.external_resource('CANCEL_EMAIL_ICON'), |
1074 | 65 |
'send' : self.req._('send email'), |
66 |
'sendimgpath' : self.req.external_resource('SEND_EMAIL_ICON'), |
|
1085 | 67 |
} |
1074 | 68 |
return ['''<a id="sendbutton" href="javascript: $('%(domid)s').submit()"> |
69 |
<img src="%(sendimgpath)s" alt="%(send)s"/>%(send)s</a>''' % context, |
|
70 |
'''<a id="cancelbutton" href="javascript: history.back()"> |
|
71 |
<img src="%(cancelimgpath)s" alt="%(cancel)s"/>%(cancel)s</a>''' % context, |
|
72 |
] |
|
73 |
||
74 |
def get_allowed_substitutions(self): |
|
75 |
attrs = [] |
|
76 |
for coltype in self.rset.column_types(0): |
|
77 |
eclass = self.vreg.etype_class(coltype) |
|
78 |
attrs.append(eclass.allowed_massmail_keys()) |
|
79 |
return sorted(reduce(operator.and_, attrs)) |
|
80 |
||
81 |
def build_substitutions_help(self): |
|
82 |
insertLink = u'<a href="javascript: insertText(\'%%(%s)s\', \'emailarea\');">%%(%s)s</a>' |
|
83 |
substs = (u'<div class="substitution">%s</div>' % (insertLink % (subst, subst)) |
|
84 |
for subst in self.get_allowed_substitutions()) |
|
85 |
helpmsg = self.req._('You can use any of the following substitutions in your text') |
|
86 |
return u'<div id="substitutions"><span>%s</span>%s</div>' % ( |
|
87 |
helpmsg, u'\n'.join(substs)) |
|
88 |
||
89 |
||
90 |
class MassMailingFormRenderer(FormRenderer): |
|
91 |
button_bar_class = u'toolbar' |
|
92 |
||
1085 | 93 |
def _render_fields(self, fields, w, form): |
1074 | 94 |
w(u'<table class="headersform">') |
95 |
for field in fields: |
|
96 |
if field.name == 'mailbody': |
|
97 |
w(u'</table>') |
|
98 |
w(u'<table>') |
|
99 |
w(u'<tr><td><div>') |
|
100 |
else: |
|
101 |
w(u'<tr>') |
|
102 |
w(u'<td class="hlabel">%s</td>' % self.render_label(form, field)) |
|
103 |
w(u'<td class="hvalue">') |
|
104 |
w(field.render(form, self)) |
|
105 |
if field.name == 'mailbody': |
|
106 |
w(u'</div></td>') |
|
107 |
w(u'<td>%s</td>' % form.build_substitutions_help()) |
|
108 |
w(u'</tr>') |
|
109 |
else: |
|
110 |
w(u'</td></tr>') |
|
111 |
w(u'</table>') |
|
112 |
||
113 |
||
114 |
class MassMailingFormView(EntityView): |
|
0 | 115 |
id = 'massmailing' |
742
99115e029dca
replaced most of __selectors__ assignments with __select__
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
640
diff
changeset
|
116 |
__select__ = implements(IEmailable) & match_user_groups('managers', 'users') |
0 | 117 |
|
118 |
def call(self): |
|
119 |
req = self.req |
|
120 |
req.add_js('cubicweb.widgets.js') |
|
121 |
req.add_css('cubicweb.mailform.css') |
|
122 |
from_addr = '%s <%s>' % (req.user.dc_title(), req.user.get_email()) |
|
1074 | 123 |
form = self.vreg.select_object('forms', 'massmailing', self.req, self.rset, |
124 |
action='sendmail', domid='sendmail') |
|
125 |
self.w(form.form_render(sender=from_addr, renderer=MassMailingFormRenderer())) |
|
0 | 126 |
|
127 |
||
128 |