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