Add MailingList::subscribeTo shortcut.
[platal.git] / modules / xnetlists.php
CommitLineData
7b9d64a8 1<?php
2/***************************************************************************
12262f13 3 * Copyright (C) 2003-2011 Polytechnique.org *
7b9d64a8 4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
adb07f6f 22Platal::load('lists');
7b9d64a8 23
24class XnetListsModule extends ListsModule
25{
7b9d64a8 26 function handlers()
27 {
28 return array(
bfe9f4c7
SJ
29 '%grp/lists' => $this->make_hook('lists', AUTH_PASSWD, 'groupmember'),
30 '%grp/lists/create' => $this->make_hook('create', AUTH_PASSWD, 'groupmember'),
7b9d64a8 31
c92e5c6c
RB
32 '%grp/lists/members' => $this->make_hook('members', AUTH_COOKIE, 'groups'),
33 '%grp/lists/csv' => $this->make_hook('csv', AUTH_COOKIE, 'groups'),
34 '%grp/lists/annu' => $this->make_hook('annu', AUTH_COOKIE, 'groups'),
35 '%grp/lists/archives' => $this->make_hook('archives', AUTH_COOKIE, 'groups'),
020c8ed0 36 '%grp/lists/archives/rss' => $this->make_hook('rss', AUTH_PUBLIC),
7b9d64a8 37
bfe9f4c7
SJ
38 '%grp/lists/moderate' => $this->make_hook('moderate', AUTH_PASSWD, 'groups'),
39 '%grp/lists/admin' => $this->make_hook('admin', AUTH_PASSWD, 'groups'),
40 '%grp/lists/options' => $this->make_hook('options', AUTH_PASSWD, 'groups'),
41 '%grp/lists/delete' => $this->make_hook('delete', AUTH_PASSWD, 'groups'),
7b9d64a8 42
bfe9f4c7
SJ
43 '%grp/lists/soptions' => $this->make_hook('soptions', AUTH_PASSWD, 'groups'),
44 '%grp/lists/check' => $this->make_hook('check', AUTH_PASSWD, 'groups'),
45 '%grp/lists/sync' => $this->make_hook('sync', AUTH_PASSWD, 'groups'),
7b9d64a8 46
bfe9f4c7
SJ
47 '%grp/alias/admin' => $this->make_hook('aadmin', AUTH_PASSWD, 'groupadmin'),
48 '%grp/alias/create' => $this->make_hook('acreate', AUTH_PASSWD, 'groupadmin'),
d1fcf09c 49
7b9d64a8 50 /* hack: lists uses that */
020c8ed0 51 'profile' => $this->make_hook('profile', AUTH_PUBLIC),
7b9d64a8 52 );
53 }
54
e0c9fb4d 55 protected function get_lists_domain()
7b9d64a8 56 {
57 global $globals;
092945b4 58 return $globals->asso('mail_domain');
7b9d64a8 59 }
60
0ab26293 61 function handler_lists($page, $order_by = null, $order = null)
9fdacf8d 62 {
85ddf64f 63 require_once 'emails.inc.php';
9fdacf8d 64
e0c9fb4d 65 if (!$this->get_lists_domain()) {
c77e45f1 66 return PL_NOT_FOUND;
67 }
1490093c 68 $page->changeTpl('xnetlists/index.tpl');
9fdacf8d 69
70 if (Get::has('del')) {
8d73663d 71 S::assert_xsrf_token();
e0c9fb4d
RB
72 $mlist = $this->prepare_list(Get::v('del'));
73 $mlist->unsubscribe();
8b00e0e0 74 pl_redirect('lists');
9fdacf8d 75 }
76 if (Get::has('add')) {
8d73663d 77 S::assert_xsrf_token();
e0c9fb4d
RB
78 $mlist = $this->prepare_list(Get::v('add'));
79 $mlist->subscribe();
8b00e0e0 80 pl_redirect('lists');
9fdacf8d 81 }
82
83 if (Post::has('del_alias') && may_update()) {
8d73663d
VZ
84 S::assert_xsrf_token();
85
85ddf64f
SJ
86 $alias = Post::t('del_alias');
87 list($local_part, ) = explode('@', $alias);
e0c9fb4d 88 delete_list_alias($local_part, $this->get_lists_domain());
85ddf64f 89 $page->trigSuccess($alias . ' supprimé&nbsp;!');
9fdacf8d 90 }
91
e0c9fb4d
RB
92 $client = $this->prepare_client();
93 $listes = $client->get_lists();
0ab26293
SJ
94 // Default ordering is by ascending names.
95 if (is_null($order_by) || is_null($order)
96 || !in_array($order_by, array('list', 'desc', 'nbsub'))
97 || !in_array($order, array('asc', 'desc'))) {
98 $order_by = 'list';
99 $order = 'asc';
100 }
101
102 $compare = function ($a, $b) use ($order_by, $order)
103 {
104 switch ($order_by) {
105 case 'desc':
106 $a[$order_by] = replace_accent($a[$order_by]);
107 $b[$order_by] = replace_accent($b[$order_by]);
108 case 'list':
109 $res = strcasecmp($a[$order_by], $b[$order_by]);
110 break;
111 case 'nbsub':
112 $res = $a[$order_by] - $b[$order_by];
113 break;
114 default:
115 $res = 0;
116 }
117
118 if ($order == 'asc') {
119 return $res;
120 }
121 return $res * -1;
122 };
123 usort($listes, $compare);
41c0150b 124 $page->assign('listes', $listes);
0ab26293
SJ
125 $page->assign('order_by', $order_by);
126 $page->assign('order', $order);
e0c9fb4d 127 $page->assign('aliases', iterate_list_alias($this->get_lists_domain()));
9fdacf8d 128 $page->assign('may_update', may_update());
cff1f1ad
SJ
129 if (S::suid()) {
130 $page->trigWarning("Attention&nbsp;: l'affichage des listes de diffusion ne tient pas compte de l'option « Voir le site comme&hellip; ».");
131 }
41c0150b 132
e0c9fb4d 133 global $globals;
41c0150b 134 if (count($listes) > 0 && !$globals->asso('has_ml')) {
eb41eda9 135 XDB::execute("UPDATE groups
41c0150b
SJ
136 SET flags = CONCAT_WS(',', IF(flags = '', NULL, flags), 'has_ml')
137 WHERE id = {?}",
138 $globals->asso('id'));
139 }
9fdacf8d 140 }
141
26ba053e 142 function handler_create($page)
80f44cfe 143 {
e0c9fb4d 144 if (!$this->get_lists_domain()) {
c77e45f1 145 return PL_NOT_FOUND;
146 }
3fe218e4 147 $page->changeTpl('xnetlists/create.tpl');
80f44cfe 148
149 if (!Post::has('submit')) {
150 return;
8d73663d
VZ
151 } else {
152 S::assert_xsrf_token();
80f44cfe 153 }
154
85ddf64f 155 if (!Post::has('liste') || !Post::t('liste')) {
6bb2f79a 156 $page->trigError('Le champs «&nbsp;adresse souhaitée&nbsp;» est vide.');
c9110c6c 157 return;
80f44cfe 158 }
159
85ddf64f
SJ
160 $list = strtolower(Post::t('liste'));
161 if (!preg_match("/^[a-zA-Z0-9\-]*$/", $list)) {
a7d35093 162 $page->trigError('le nom de la liste ne doit contenir que des lettres non accentuées, chiffres et tirets');
c9110c6c 163 return;
80f44cfe 164 }
165
85ddf64f 166 require_once 'emails.inc.php';
e0c9fb4d 167 if (list_exist($list, $this->get_lists_domain())) {
85ddf64f 168 $page->trigError('Cet alias est déjà pris.');
c9110c6c 169 return;
80f44cfe 170 }
85ddf64f
SJ
171 if (!Post::t('desc')) {
172 $page->trigError('Le sujet est vide.');
c9110c6c 173 return;
80f44cfe 174 }
175
e0c9fb4d
RB
176 $mlist = $this->prepare_list($list);
177 $success = $mlist->create(Post::t('desc'),
178 Post::t('advertise'), Post::t('modlevel'), Post::t('inslevel'),
179 array(S::user()->forlifeEmail()), array(S::user()->forlifeEmail()));
80f44cfe 180
85ddf64f 181 if (!$success) {
a7de4ef7 182 $page->kill("Un problème est survenu, contacter "
80f44cfe 183 ."<a href='mailto:support@m4x.org'>support@m4x.org</a>");
184 return;
185 }
e0c9fb4d 186 create_list($mlist->mbox, $mlist->domain);
41c0150b 187
e0c9fb4d 188 global $globals;
eb41eda9 189 XDB::execute("UPDATE groups
41c0150b
SJ
190 SET flags = CONCAT_WS(',', IF(flags = '', NULL, flags), 'has_ml')
191 WHERE id = {?}",
192 $globals->asso('id'));
193
85ddf64f 194 pl_redirect('lists/admin/' . $list);
80f44cfe 195 }
196
26ba053e 197 function handler_sync($page, $liste = null)
9fdacf8d 198 {
e0c9fb4d
RB
199 if (!$this->get_lists_domain()) {
200 return PL_NOT_FOUND;
201 }
202 if (!$liste) {
c77e45f1 203 return PL_NOT_FOUND;
204 }
e0c9fb4d 205
3fe218e4 206 $page->changeTpl('xnetlists/sync.tpl');
9fdacf8d 207
e0c9fb4d
RB
208 $mlist = $this->prepare_list($liste);
209
9fdacf8d 210 if (Env::has('add')) {
8d73663d 211 S::assert_xsrf_token();
e0c9fb4d 212 $mlist->subscribeBulk(array_keys(Env::v('add')));
9fdacf8d 213 }
214
e0c9fb4d 215 list(,$members) = $mlist->getMembers();
9fdacf8d 216 $mails = array_map(create_function('$arr', 'return $arr[1];'), $members);
cf5e8ef1 217 $subscribers = array_unique($mails);
9fdacf8d 218
e0c9fb4d 219 global $globals;
832e6fcb 220 $ann = XDB::fetchColumn('SELECT uid
eb41eda9 221 FROM group_members
832e6fcb 222 WHERE asso_id = {?}', $globals->asso('id'));
ff82994d 223 $users = User::getBulkUsersWithUIDs($ann);
9fdacf8d 224
225 $not_in_list = array();
832e6fcb 226 foreach ($users as $user) {
cb8a8977
FB
227 if (!in_array(strtolower($user->forlifeEmail()), $subscribers)) {
228 $not_in_list[] = $user;
9fdacf8d 229 }
230 }
231
232 $page->assign('not_in_list', $not_in_list);
233 }
234
26ba053e 235 function handler_aadmin($page, $lfull = null)
d1fcf09c 236 {
e0c9fb4d 237 if (!$this->get_lists_domain() || is_null($lfull)) {
d1fcf09c 238 return PL_NOT_FOUND;
239 }
1490093c 240 $page->changeTpl('xnetlists/alias-admin.tpl');
d1fcf09c 241
85ddf64f
SJ
242 require_once 'emails.inc.php';
243 list($local_part, $domain) = explode('@', $lfull);
e0c9fb4d
RB
244 if ($this->get_lists_domain() != $domain || !preg_match("/^[a-zA-Z0-9\-\.]*$/", $local_part)) {
245 global $globals;
a9cdd5fc
SJ
246 $page->trigErrorRedirect('Le nom de l\'alias est erroné.', $globals->asso('diminutif') . '/lists');
247 }
248
249
d1fcf09c 250 if (Env::has('add_member')) {
8d73663d
VZ
251 S::assert_xsrf_token();
252
7e82b545 253 if (add_to_list_alias(Env::t('add_member'), $local_part, $domain)) {
41413228 254 $page->trigSuccess('Ajout réussi.');
d1fcf09c 255 } else {
7e82b545 256 $page->trigError('Ajout infructueux.');
d1fcf09c 257 }
258 }
259
260 if (Env::has('del_member')) {
8d73663d 261 S::assert_xsrf_token();
d1fcf09c 262
7e82b545
SJ
263 if (delete_from_list_alias(Env::t('del_member'), $local_part, $domain)) {
264 $page->trigSuccess('Suppression réussie.');
265 } else {
266 $page->trigError('Suppression infructueuse.');
267 }
cb8a8977 268 }
85ddf64f
SJ
269
270 $page->assign('members', list_alias_members($local_part, $domain));
d1fcf09c 271 }
272
26ba053e 273 function handler_acreate($page)
d1fcf09c 274 {
e0c9fb4d 275 if (!$this->get_lists_domain()) {
c77e45f1 276 return PL_NOT_FOUND;
277 }
1490093c 278 $page->changeTpl('xnetlists/alias-create.tpl');
d1fcf09c 279
280 if (!Post::has('submit')) {
281 return;
8d73663d
VZ
282 } else {
283 S::assert_xsrf_token();
d1fcf09c 284 }
285
286 if (!Post::has('liste')) {
6bb2f79a 287 $page->trigError('Le champs «&nbsp;adresse souhaitée&nbsp;» est vide.');
d1fcf09c 288 return;
289 }
85ddf64f
SJ
290 $list = Post::v('liste');
291 if (!preg_match("/^[a-zA-Z0-9\-\.]*$/", $list)) {
292 $page->trigError('Le nom de l\'alias ne doit contenir que des lettres,'
293 .' chiffres, tirets et points.');
d1fcf09c 294 return;
295 }
296
85ddf64f 297 require_once 'emails.inc.php';
e0c9fb4d
RB
298 $lists_domain = $this->get_lists_domain();
299 if (list_exist($list, $lists_domain)) {
85ddf64f 300 $page->trigError('Cet alias est déjà pris.');
d1fcf09c 301 return;
302 }
303
e0c9fb4d
RB
304 add_to_list_alias(S::i('uid'), $list, $lists_domain);
305 pl_redirect('alias/admin/' . $list . '@' . $lists_domain);
d1fcf09c 306 }
307
26ba053e 308 function handler_profile($page, $user = null)
7b9d64a8 309 {
8b00e0e0 310 http_redirect('https://www.polytechnique.org/profile/'.$user);
7b9d64a8 311 }
312}
313
a7de4ef7 314// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
7b9d64a8 315?>