Start working on the medals page
[platal.git] / modules / xnetlists.php
CommitLineData
7b9d64a8 1<?php
2/***************************************************************************
5ddeb07c 3 * Copyright (C) 2003-2007 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
22require_once dirname(__FILE__).'/lists.php';
23
24class XnetListsModule extends ListsModule
25{
26 var $client;
27
28 function handlers()
29 {
30 return array(
1490093c 31 '%grp/lists' => $this->make_hook('lists', AUTH_MDP, 'groupmember'),
32 '%grp/lists/create' => $this->make_hook('create', AUTH_MDP, 'groupmember'),
7b9d64a8 33
d1ebc57a 34 '%grp/lists/members' => $this->make_hook('members', AUTH_COOKIE),
1cc0afe7 35 '%grp/lists/annu' => $this->make_hook('annu', AUTH_COOKIE),
d1ebc57a 36 '%grp/lists/archives' => $this->make_hook('archives', AUTH_COOKIE),
7f304b19 37 '%grp/lists/archives/rss' => $this->make_hook('rss', AUTH_PUBLIC),
7b9d64a8 38
d1ebc57a 39 '%grp/lists/moderate' => $this->make_hook('moderate', AUTH_MDP),
40 '%grp/lists/admin' => $this->make_hook('admin', AUTH_MDP),
41 '%grp/lists/options' => $this->make_hook('options', AUTH_MDP),
42 '%grp/lists/delete' => $this->make_hook('delete', AUTH_MDP),
7b9d64a8 43
d1ebc57a 44 '%grp/lists/soptions' => $this->make_hook('soptions', AUTH_MDP),
45 '%grp/lists/check' => $this->make_hook('check', AUTH_MDP),
46 '%grp/lists/sync' => $this->make_hook('sync', AUTH_MDP),
7b9d64a8 47
c6c10b6b 48 '%grp/alias/admin' => $this->make_hook('aadmin', AUTH_MDP, 'groupadmin'),
49 '%grp/alias/create' => $this->make_hook('acreate', AUTH_MDP, 'groupadmin'),
d1fcf09c 50
7b9d64a8 51 /* hack: lists uses that */
52 'profile' => $this->make_hook('profile', AUTH_PUBLIC),
53 );
54 }
55
56 function prepare_client(&$page)
57 {
58 global $globals;
59
9bb8bf21 60 require_once dirname(__FILE__).'/lists/lists.inc.php';
7b9d64a8 61
9bb8bf21 62 $this->client = new MMList(S::v('uid'), S::v('password'),
63 $globals->asso('mail_domain'));
7b9d64a8 64
7b9d64a8 65 $page->assign('asso', $globals->asso());
66 $page->setType($globals->asso('cat'));
092945b4 67
68 return $globals->asso('mail_domain');
7b9d64a8 69 }
70
9fdacf8d 71 function handler_lists(&$page)
72 {
73 global $globals;
74
c77e45f1 75 if (!$globals->asso('mail_domain')) {
76 return PL_NOT_FOUND;
77 }
9fdacf8d 78 $this->prepare_client($page);
1490093c 79 $page->changeTpl('xnetlists/index.tpl');
9fdacf8d 80
81 if (Get::has('del')) {
5e2307dc 82 $this->client->unsubscribe(Get::v('del'));
8b00e0e0 83 pl_redirect('lists');
9fdacf8d 84 }
85 if (Get::has('add')) {
5e2307dc 86 $this->client->subscribe(Get::v('add'));
8b00e0e0 87 pl_redirect('lists');
9fdacf8d 88 }
89
90 if (Post::has('del_alias') && may_update()) {
5e2307dc 91 $alias = Post::v('del_alias');
9fdacf8d 92 // prevent group admin from erasing aliases from other groups
93 $alias = substr($alias, 0, strpos($alias, '@')).'@'.$globals->asso('mail_domain');
08cce2ff 94 XDB::query(
c55cca6e 95 'DELETE FROM r, v
9fdacf8d 96 USING x4dat.virtual AS v
c55cca6e 97 LEFT JOIN x4dat.virtual_redirect AS r USING(vid)
9fdacf8d 98 WHERE v.alias={?}', $alias);
a7de4ef7 99 $page->trig(Post::v('del_alias')." supprimé !");
9fdacf8d 100 }
101
102 $listes = $this->client->get_lists();
103 $page->assign('listes',$listes);
104
08cce2ff 105 $alias = XDB::iterator(
9fdacf8d 106 'SELECT alias,type
107 FROM x4dat.virtual
108 WHERE alias
109 LIKE {?} AND type="user"
110 ORDER BY alias', '%@'.$globals->asso('mail_domain'));
111 $page->assign('alias', $alias);
112
113 $page->assign('may_update', may_update());
114 }
115
80f44cfe 116 function handler_create(&$page)
117 {
118 global $globals;
119
c77e45f1 120 if (!$globals->asso('mail_domain')) {
121 return PL_NOT_FOUND;
122 }
80f44cfe 123 $this->prepare_client($page);
3fe218e4 124 $page->changeTpl('xnetlists/create.tpl');
80f44cfe 125
126 if (!Post::has('submit')) {
127 return;
128 }
129
130 if (!Post::has('liste')) {
a7de4ef7 131 $page->trig('champs «addresse souhaitée» vide');
c9110c6c 132 return;
80f44cfe 133 }
134
88f7a3f1 135 $liste = strtolower(Post::v('liste'));
80f44cfe 136
137 if (!preg_match("/^[a-zA-Z0-9\-]*$/", $liste)) {
1b5b2b79 138 $page->trig('le nom de la liste ne doit contenir que des lettres non accentuées, chiffres et tirets');
c9110c6c 139 return;
80f44cfe 140 }
141
142 $new = $liste.'@'.$globals->asso('mail_domain');
08cce2ff 143 $res = XDB::query('SELECT COUNT(*) FROM x4dat.virtual WHERE alias={?}', $new);
80f44cfe 144 $n = $res->fetchOneCell();
145
c9110c6c 146 if ($n) {
a7de4ef7 147 $page->trig('cet alias est déjà pris');
c9110c6c 148 return;
80f44cfe 149 }
5e2307dc 150 if (!Post::v('desc')) {
c9110c6c 151 $page->trig('le sujet est vide');
152 return;
80f44cfe 153 }
154
80f44cfe 155 $ret = $this->client->create_list(
5e2307dc 156 $liste, Post::v('desc'), Post::v('advertise'),
157 Post::v('modlevel'), Post::v('inslevel'),
cab08090 158 array(S::v('forlife')), array());
80f44cfe 159
160 $dom = strtolower($globals->asso("mail_domain"));
161 $red = $dom.'_'.$liste;
162
163 if (!$ret) {
a7de4ef7 164 $page->kill("Un problème est survenu, contacter "
80f44cfe 165 ."<a href='mailto:support@m4x.org'>support@m4x.org</a>");
166 return;
167 }
08cce2ff 168 XDB::execute('INSERT INTO x4dat.virtual (alias,type)
80f44cfe 169 VALUES({?},{?})', $liste.'@'.$dom, 'list');
08cce2ff 170 XDB::execute('INSERT INTO x4dat.virtual_redirect (vid,redirect)
8b83a166 171 VALUES ({?}, {?})', XDB::insertId(),
80f44cfe 172 "$red+post@listes.polytechnique.org");
08cce2ff 173 XDB::execute('INSERT INTO x4dat.virtual (alias,type)
80f44cfe 174 VALUES({?},{?})', $liste.'-owner@'.$dom, 'list');
08cce2ff 175 XDB::execute('INSERT INTO x4dat.virtual_redirect (vid,redirect)
8b83a166 176 VALUES ({?}, {?})', XDB::insertId(),
80f44cfe 177 "$red+owner@listes.polytechnique.org");
08cce2ff 178 XDB::execute('INSERT INTO x4dat.virtual (alias,type)
80f44cfe 179 VALUES({?},{?})', $liste.'-admin@'.$dom, 'list');
08cce2ff 180 XDB::execute('INSERT INTO x4dat.virtual_redirect (vid,redirect)
8b83a166 181 VALUES ({?}, {?})', XDB::insertId(),
80f44cfe 182 "$red+admin@listes.polytechnique.org");
08cce2ff 183 XDB::execute('INSERT INTO x4dat.virtual (alias,type)
80f44cfe 184 VALUES({?},{?})', $liste.'-bounces@'.$dom, 'list');
08cce2ff 185 XDB::execute('INSERT INTO x4dat.virtual_redirect (vid,redirect)
8b83a166 186 VALUES ({?}, {?})', XDB::insertId(),
80f44cfe 187 "$red+bounces@listes.polytechnique.org");
188
8b00e0e0 189 pl_redirect('lists/admin/'.$liste);
80f44cfe 190 }
191
9fdacf8d 192 function handler_sync(&$page, $liste = null)
193 {
194 global $globals;
195
c77e45f1 196 if (!$globals->asso('mail_domain')) {
197 return PL_NOT_FOUND;
198 }
9fdacf8d 199 $this->prepare_client($page);
3fe218e4 200 $page->changeTpl('xnetlists/sync.tpl');
9fdacf8d 201
202 if (Env::has('add')) {
5e2307dc 203 $this->client->mass_subscribe($liste, array_keys(Env::v('add')));
9fdacf8d 204 }
205
206 list(,$members) = $this->client->get_members($liste);
207 $mails = array_map(create_function('$arr', 'return $arr[1];'), $members);
cf5e8ef1 208 $subscribers = array_unique($mails);
9fdacf8d 209
210 $not_in_group_x = array();
211 $not_in_group_ext = array();
212
08cce2ff 213 $ann = XDB::iterator(
c9110c6c 214 "SELECT if (m.origine='X',if (u.nom_usage<>'', u.nom_usage, u.nom) ,m.nom) AS nom,
215 if (m.origine='X',u.prenom,m.prenom) AS prenom,
a7de4ef7 216 if (m.origine='X',u.promo,'extérieur') AS promo,
1d55fe45 217 if (m.origine='X',CONCAT(a.alias, '@{$globals->mail->domain}),m.email) AS email,
c9110c6c 218 if (m.origine='X',FIND_IN_SET('femme', u.flags),0) AS femme,
9fdacf8d 219 m.perms='admin' AS admin,
220 m.origine='X' AS x
221 FROM groupex.membres AS m
222 LEFT JOIN auth_user_md5 AS u ON ( u.user_id = m.uid )
223 LEFT JOIN aliases AS a ON ( a.id = m.uid AND a.type='a_vie' )
1bd2bc7e 224 WHERE m.asso_id = {?}
225 ORDER BY promo, nom, prenom", $globals->asso('id'));
9fdacf8d 226
227 $not_in_list = array();
228
229 while ($tmp = $ann->next()) {
cf5e8ef1 230 if (!in_array(strtolower($tmp['email']), $subscribers)) {
9fdacf8d 231 $not_in_list[] = $tmp;
232 }
233 }
234
235 $page->assign('not_in_list', $not_in_list);
236 }
237
d1fcf09c 238 function handler_aadmin(&$page, $lfull = null)
239 {
c77e45f1 240 global $globals;
241
242 if (!$globals->asso('mail_domain') || is_null($lfull)) {
d1fcf09c 243 return PL_NOT_FOUND;
244 }
1490093c 245 $page->changeTpl('xnetlists/alias-admin.tpl');
d1fcf09c 246
247 if (Env::has('add_member')) {
5e2307dc 248 $add = Env::v('add_member');
d1fcf09c 249 if (strstr($add, '@')) {
250 list($mbox,$dom) = explode('@', strtolower($add));
251 } else {
252 $mbox = $add;
253 $dom = 'm4x.org';
254 }
c9110c6c 255 if ($dom == 'polytechnique.org' || $dom == 'm4x.org') {
08cce2ff 256 $res = XDB::query(
d1fcf09c 257 "SELECT a.alias, b.alias
258 FROM x4dat.aliases AS a
259 LEFT JOIN x4dat.aliases AS b ON (a.id=b.id AND b.type = 'a_vie')
260 WHERE a.alias={?} AND a.type!='homonyme'", $mbox);
261 if (list($alias, $blias) = $res->fetchOneRow()) {
262 $alias = empty($blias) ? $alias : $blias;
08cce2ff 263 XDB::query(
d1fcf09c 264 "INSERT INTO x4dat.virtual_redirect (vid,redirect)
265 SELECT vid, {?}
266 FROM x4dat.virtual
267 WHERE alias={?}", "$alias@m4x.org", $lfull);
a7de4ef7 268 $page->trig("$alias@m4x.org ajouté");
d1fcf09c 269 } else {
1d55fe45 270 $page->trig("$mbox@{$globals->mail->domain} n'existe pas.");
d1fcf09c 271 }
272 } else {
08cce2ff 273 XDB::query(
d1fcf09c 274 "INSERT INTO x4dat.virtual_redirect (vid,redirect)
275 SELECT vid,{?}
276 FROM x4dat.virtual
277 WHERE alias={?}", "$mbox@$dom", $lfull);
a7de4ef7 278 $page->trig("$mbox@$dom ajouté");
d1fcf09c 279 }
280 }
281
282 if (Env::has('del_member')) {
08cce2ff 283 XDB::query(
d1fcf09c 284 "DELETE FROM x4dat.virtual_redirect
285 USING x4dat.virtual_redirect
286 INNER JOIN x4dat.virtual USING(vid)
5e2307dc 287 WHERE redirect={?} AND alias={?}", Env::v('del_member'), $lfull);
8b00e0e0 288 pl_redirect('alias/admin/'.$lfull);
d1fcf09c 289 }
290
7cdecf88 291 global $globals;
08cce2ff 292 $res = XDB::iterator(
7cdecf88 293 "SELECT redirect,
294 IF(u.nom IS NOT NULL, IF(u.nom_usage<>'', u.nom_usage, u.nom), m.nom) AS nom,
295 IF(u.prenom IS NOT NULL, u.prenom, m.prenom) AS prenom,
a7de4ef7 296 IF(u.promo IS NOT NULL, u.promo, 'extérieur') AS promo,
7cdecf88 297 IF(m2.perms, m2.perms = 'admin', m.perms = 'admin') AS admin,
298 a.alias
d1fcf09c 299 FROM x4dat.virtual_redirect AS vr
300 INNER JOIN x4dat.virtual AS v USING(vid)
3ad44e08 301 LEFT JOIN x4dat.aliases AS a ON(vr.redirect = CONCAT(a.alias, '@', {?})
302 OR vr.redirect = CONCAT(a.alias, '@', {?}))
7cdecf88 303 LEFT JOIN x4dat.auth_user_md5 AS u ON(a.id = u.user_id)
304 LEFT JOIN groupex.membres AS m2 ON(u.user_id = m2.uid AND m2.asso_id = {?})
305 LEFT JOIN groupex.membres AS m ON(m.email = vr.redirect AND m.asso_id = {?})
d1fcf09c 306 WHERE v.alias={?}
7cdecf88 307 ORDER BY redirect",
308 $globals->mail->domain, $globals->mail->domain2,
309 $globals->asso('id'), $globals->asso('id'), $lfull);
d1fcf09c 310 $page->assign('mem', $res);
311 }
312
313 function handler_acreate(&$page)
314 {
315 global $globals;
316
c77e45f1 317 if (!$globals->asso('mail_domain')) {
318 return PL_NOT_FOUND;
319 }
1490093c 320 $page->changeTpl('xnetlists/alias-create.tpl');
d1fcf09c 321
322 if (!Post::has('submit')) {
323 return;
324 }
325
326 if (!Post::has('liste')) {
a7de4ef7 327 $page->trig('champs «addresse souhaitée» vide');
d1fcf09c 328 return;
329 }
5e2307dc 330 $liste = Post::v('liste');
d1fcf09c 331 if (!preg_match("/^[a-zA-Z0-9\-\.]*$/", $liste)) {
332 $page->trig('le nom de l\'alias ne doit contenir que des lettres,'
333 .' chiffres, tirets et points');
334 return;
335 }
336
337 $new = $liste.'@'.$globals->asso('mail_domain');
08cce2ff 338 $res = XDB::query('SELECT COUNT(*) FROM x4dat.virtual WHERE alias={?}', $new);
d1fcf09c 339 $n = $res->fetchOneCell();
c9110c6c 340 if ($n) {
a7de4ef7 341 $page->trig('cet alias est déjà pris');
d1fcf09c 342 return;
343 }
344
08cce2ff 345 XDB::query('INSERT INTO x4dat.virtual (alias,type) VALUES({?}, "user")', $new);
d1fcf09c 346
8b00e0e0 347 pl_redirect("alias/admin/$new");
d1fcf09c 348 }
349
7b9d64a8 350 function handler_profile(&$page, $user = null)
351 {
8b00e0e0 352 http_redirect('https://www.polytechnique.org/profile/'.$user);
7b9d64a8 353 }
354}
355
a7de4ef7 356// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
7b9d64a8 357?>