Clear mentor entry of the user when is expertise is empty.
[platal.git] / modules / lists.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2008 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 class ListsModule extends PLModule
23 {
24 protected $client;
25
26 function handlers()
27 {
28 return array(
29 'lists' => $this->make_hook('lists', AUTH_MDP),
30 'lists/ajax' => $this->make_hook('ajax', AUTH_MDP, 'user', NO_AUTH),
31 'lists/create' => $this->make_hook('create', AUTH_MDP),
32
33 'lists/members' => $this->make_hook('members', AUTH_COOKIE),
34 'lists/annu' => $this->make_hook('annu', AUTH_COOKIE),
35 'lists/archives' => $this->make_hook('archives', AUTH_COOKIE),
36 'lists/archives/rss' => $this->make_hook('rss', AUTH_PUBLIC, 'user', NO_HTTPS),
37
38 'lists/moderate' => $this->make_hook('moderate', AUTH_MDP),
39 'lists/admin' => $this->make_hook('admin', AUTH_MDP),
40 'lists/options' => $this->make_hook('options', AUTH_MDP),
41 'lists/delete' => $this->make_hook('delete', AUTH_MDP),
42
43 'lists/soptions' => $this->make_hook('soptions', AUTH_MDP),
44 'lists/check' => $this->make_hook('check', AUTH_MDP),
45 'admin/lists' => $this->make_hook('admin_all', AUTH_MDP, 'admin'),
46 );
47 }
48
49 function on_subscribe($forlife, $uid, $promo, $password)
50 {
51 $this->prepare_client(null);
52 $this->client->subscribe("promo$promo");
53 }
54
55 function prepare_client(&$page)
56 {
57 global $globals;
58
59 require_once dirname(__FILE__).'/lists/lists.inc.php';
60
61 $this->client = new MMList(S::v('uid'), S::v('password'));
62 return $globals->mail->domain;
63 }
64
65 function get_pending_ops($domain, $list)
66 {
67 list($subs,$mails) = $this->client->get_pending_ops($list);
68 $res = XDB::query("SELECT mid
69 FROM ml_moderate
70 WHERE ml = {?} AND domain = {?}",
71 $list, $domain);
72 $mids = $res->fetchColumn();
73 foreach ($mails as $key=>$mail) {
74 if (in_array($mail['id'], $mids)) {
75 unset($mails[$key]);
76 }
77 }
78 return array($subs, $mails);
79 }
80
81 function handler_lists(&$page)
82 {
83 function filter_owner($list)
84 {
85 return $list['own'];
86 }
87
88 function filter_member($list)
89 {
90 return $list['sub'];
91 }
92
93 $domain = $this->prepare_client($page);
94
95 $page->changeTpl('lists/index.tpl');
96 $page->addJsLink('ajax.js');
97 $page->assign('xorg_title','Polytechnique.org - Listes de diffusion');
98
99
100 if (Get::has('del')) {
101 $this->client->unsubscribe(Get::v('del'));
102 pl_redirect('lists');
103 }
104 if (Get::has('add')) {
105 $this->client->subscribe(Get::v('add'));
106 pl_redirect('lists');
107 }
108 if (Post::has('promo_add')) {
109 $promo = Post::i('promo_add');
110 if ($promo >= 1900 and $promo < 2100) {
111 $this->client->subscribe("promo$promo");
112 } else {
113 $page->trig("promo incorrecte, il faut une promo sur 4 chiffres.");
114 }
115 }
116 $listes = $this->client->get_lists();
117 $owner = array_filter($listes, 'filter_owner');
118 $listes = array_diff_key($listes, $owner);
119 $member = array_filter($listes, 'filter_member');
120 $listes = array_diff_key($listes, $member);
121 foreach ($owner as $key=>$liste) {
122 list($subs,$mails) = $this->get_pending_ops($domain, $liste['list']);
123 $owner[$key]['subscriptions'] = $subs;
124 $owner[$key]['mails'] = $mails;
125 }
126 $page->register_modifier('hdc', 'list_header_decode');
127 $page->assign_by_ref('owner', $owner);
128 $page->assign_by_ref('member', $member);
129 $page->assign_by_ref('public', $listes);
130 }
131
132 function handler_ajax(&$page, $list = null)
133 {
134 header('Content-Type: text/html; charset="UTF-8"');
135 $domain = $this->prepare_client($page);
136 $page->changeTpl('lists/liste.inc.tpl', NO_SKIN);
137 if (Get::has('unsubscribe')) {
138 $this->client->unsubscribe($list);
139 }
140 if (Get::has('subscribe')) {
141 $this->client->subscribe($list);
142 }
143 if (Get::has('sadd')) { /* 4 = SUBSCRIBE */
144 $this->client->handle_request($list, Get::v('sadd'), 4, '');
145 }
146 if (Get::has('mid')) {
147 $this->moderate_mail($domain, $list, Get::i('mid'));
148 }
149
150 list($liste, $members, $owners) = $this->client->get_members($list);
151 if ($liste['own']) {
152 list($subs,$mails) = $this->get_pending_ops($domain, $list);
153 $liste['subscriptions'] = $subs;
154 $liste['mails'] = $mails;
155 }
156 $page->register_modifier('hdc', 'list_header_decode');
157 $page->assign_by_ref('liste', $liste);
158 }
159
160 function handler_create(&$page)
161 {
162 $page->changeTpl('lists/create.tpl');
163
164 $owners = preg_split("/[\s]+/", Post::v('owners'), -1, PREG_SPLIT_NO_EMPTY);
165 $members = preg_split("/[\s]+/", Post::v('members'), -1, PREG_SPLIT_NO_EMPTY);
166
167 // click on validate button 'add_owner_sub' or type <enter>
168 if (Post::has('add_owner_sub') && Post::has('add_owner')) {
169 require_once('user.func.inc.php');
170 // if we want to add an owner and then type <enter>, then both
171 // add_owner_sub and add_owner are filled.
172 $oforlifes = get_users_forlife_list(Post::v('add_owner'), true);
173 $mforlifes = get_users_forlife_list(Post::v('add_member'), true);
174 if (!is_null($oforlifes)) {
175 $owners = array_merge($owners, $oforlifes);
176 }
177 // if we want to add a member and then type <enter>, then
178 // add_owner_sub is filled, whereas add_owner is empty.
179 if (!is_null($mforlifes)) {
180 $members = array_merge($members, $mforlifes);
181 }
182 }
183
184 // click on validate button 'add_member_sub'
185 if (Post::has('add_member_sub') && Post::has('add_member')) {
186 require_once('user.func.inc.php');
187 $forlifes = get_users_forlife_list(Post::v('add_member'), true);
188 if (!is_null($forlifes)) {
189 $members = array_merge($members, $forlifes);
190 }
191 }
192
193 ksort($owners);
194 $owners = array_unique($owners);
195 ksort($members);
196 $members = array_unique($members);
197
198 $page->assign('owners', join(' ', $owners));
199 $page->assign('members', join(' ', $members));
200
201 if (!Post::has('submit')) {
202 return;
203 }
204
205 $liste = Post::v('liste');
206
207 if (empty($liste)) {
208 $page->trig('champs «addresse souhaitée» vide');
209 }
210 if (!preg_match("/^[a-zA-Z0-9\-]*$/", $liste)) {
211 $page->trig('le nom de la liste ne doit contenir que des lettres non accentuées, chiffres et tirets');
212 }
213
214 $res = XDB::query("SELECT COUNT(*) FROM aliases WHERE alias={?}", $liste);
215 $n = $res->fetchOneCell();
216
217 if ($n) {
218 $page->trig('cet alias est déjà pris');
219 }
220
221 if (!Post::v('desc')) {
222 $page->trig('le sujet est vide');
223 }
224
225 if (!count($owners)) {
226 $page->trig('pas de gestionnaire');
227 }
228
229 if (count($members)<4) {
230 $page->trig('pas assez de membres');
231 }
232
233 if (!$page->nb_errs()) {
234 $page->assign('created', true);
235 require_once 'validations.inc.php';
236 $req = new ListeReq(S::v('uid'), $liste,
237 Post::v('desc'), Post::i('advertise'),
238 Post::i('modlevel'), Post::i('inslevel'),
239 $owners, $members);
240 $req->submit();
241 }
242 }
243
244 function handler_members(&$page, $liste = null)
245 {
246 if (is_null($liste)) {
247 return PL_NOT_FOUND;
248 }
249
250 $this->prepare_client($page);
251
252 $page->changeTpl('lists/members.tpl');
253
254 if (Get::has('del')) {
255 $this->client->unsubscribe($liste);
256 pl_redirect('lists/members/'.$liste);
257 }
258
259 if (Get::has('add')) {
260 $this->client->subscribe($liste);
261 pl_redirect('lists/members/'.$liste);
262 }
263
264 $members = $this->client->get_members($liste);
265
266 $tri_promo = !Env::b('alpha');
267
268 if (list($det,$mem,$own) = $members) {
269 $membres = list_sort_members($mem, $tri_promo);
270 $moderos = list_sort_owners($own, $tri_promo);
271
272 $page->assign_by_ref('details', $det);
273 $page->assign_by_ref('members', $membres);
274 $page->assign_by_ref('owners', $moderos);
275 $page->assign('nb_m', count($mem));
276 } else {
277 $page->kill("La liste n'existe pas ou tu n'as pas le droit d'en voir les détails");
278 }
279 }
280
281 function handler_annu(&$page, $liste = null, $action = null, $subaction = null)
282 {
283 if (is_null($liste)) {
284 return PL_NOT_FOUND;
285 }
286
287 $this->prepare_client($page);
288
289 if (Get::has('del')) {
290 $this->client->unsubscribe($liste);
291 pl_redirect('lists/annu/'.$liste);
292 }
293 if (Get::has('add')) {
294 $this->client->subscribe($liste);
295 pl_redirect('lists/annu/'.$liste);
296 }
297
298 $owners = $this->client->get_owners($liste);
299 if (!is_array($owners)) {
300 $page->kill("La liste n'existe pas ou tu n'as pas le droit d'en voir les détails");
301 }
302
303 global $platal;
304 list(,$members) = $this->client->get_members($liste);
305 $users = array();
306 foreach ($members as $m) {
307 $users[] = $m[1];
308 }
309 require_once 'userset.inc.php';
310 $view = new ArraySet($users);
311 $view->addMod('trombi', 'Trombinoscope', true, array('with_promo' => true));
312 if (empty($GLOBALS['IS_XNET_SITE'])) {
313 $view->addMod('minifiche', 'Minifiches', false);
314 }
315 $view->addMod('geoloc', 'Planisphère');
316 $view->apply("lists/annu/$liste", $page, $action, $subaction);
317 if ($action == 'geoloc' && $subaction) {
318 return;
319 }
320
321 $page->changeTpl('lists/annu.tpl');
322 $moderos = list_sort_owners($owners[1]);
323 $page->assign_by_ref('details', $owners[0]);
324 $page->assign_by_ref('owners', $moderos);
325 }
326
327 function handler_archives(&$page, $liste = null, $action = null, $artid = null)
328 {
329 global $globals;
330
331 if (is_null($liste)) {
332 return PL_NOT_FOUND;
333 }
334
335 $domain = $this->prepare_client($page);
336
337 $page->changeTpl('lists/archives.tpl');
338
339 if (list($det) = $this->client->get_members($liste)) {
340 if (substr($liste,0,5) != 'promo' && ($det['ins'] || $det['priv'])
341 && !$det['own'] && ($det['sub'] < 2)) {
342 $page->kill("La liste n'existe pas ou tu n'as pas le droit de la consulter.");
343 }
344 $get = Array('listname' => $liste, 'domain' => $domain);
345 if (Post::has('updateall')) {
346 $get['updateall'] = Post::v('updateall');
347 }
348 require_once 'banana/ml.inc.php';
349 get_banana_params($get, null, $action, $artid);
350 run_banana($page, 'MLBanana', $get);
351 } else {
352 $page->kill("La liste n'existe pas ou tu n'as pas le droit de la consulter.");
353 }
354 }
355
356 function handler_rss(&$page, $liste = null, $alias = null, $hash = null)
357 {
358 require_once('rss.inc.php');
359 $uid = init_rss(null, $alias, $hash);
360 if (!$uid || !$liste) {
361 exit;
362 }
363
364 $res = XDB::query("SELECT user_id AS uid, password, alias AS forlife
365 FROM auth_user_md5 AS u
366 INNER JOIN aliases AS a ON (a.id = u.user_id AND a.type = 'a_vie')
367 WHERE u.user_id = {?}", $uid);
368 $row = $res->fetchOneAssoc();
369 $_SESSION = array_merge($row, $_SESSION);
370
371 $domain = $this->prepare_client($page);
372 if (list($det) = $this->client->get_members($liste)) {
373 if (substr($liste,0,5) != 'promo' && ($det['ins'] || $det['priv'])
374 && !$det['own'] && ($det['sub'] < 2)) {
375 exit;
376 }
377 require_once('banana/ml.inc.php');
378 $banana = new MLBanana(S::v('forlife'), Array('listname' => $liste, 'domain' => $domain, 'action' => 'rss2'));
379 $banana->run();
380 }
381 exit;
382 }
383
384 function moderate_mail($domain, $liste, $mid)
385 {
386 if (Env::has('mok')) {
387 $action = 'accept';
388 } elseif (Env::has('mno')) {
389 $action = 'refuse';
390 } elseif (Env::has('mdel')) {
391 $action = 'delete';
392 } else {
393 return false;
394 }
395 Get::kill('mid');
396 return XDB::execute("INSERT IGNORE INTO ml_moderate
397 VALUES ({?}, {?}, {?}, {?}, {?}, NOW(), {?}, NULL)",
398 $liste, $domain, $mid, S::i('uid'), $action, Post::v('reason'));
399 }
400
401 function handler_moderate(&$page, $liste = null)
402 {
403 if (is_null($liste)) {
404 return PL_NOT_FOUND;
405 }
406
407 $domain = $this->prepare_client($page);
408
409 $page->changeTpl('lists/moderate.tpl');
410
411 $page->register_modifier('hdc', 'list_header_decode');
412
413 if (Env::has('sadd') || Env::has('sdel')) {
414 if (Env::has('sadd')) { /* 4 = SUBSCRIBE */
415 $sub = $this->client->get_pending_sub($liste, Env::v('sadd'));
416 $this->client->handle_request($liste,Env::v('sadd'),4,'');
417 $info = "validée";
418 }
419 if (Post::has('sdel')) { /* 2 = REJECT */
420 $sub = $this->client->get_pending_sub($liste, Env::v('sdel'));
421 $this->client->handle_request($liste, Post::v('sdel'), 2, Post::v('reason'));
422 $info = "refusée";
423 }
424 if ($sub) {
425 $mailer = new PlMailer();
426 $mailer->setFrom("$liste-bounces@{$domain}");
427 $mailer->addTo("$liste-owner@{$domain}");
428 $mailer->addHeader('Reply-To', "$liste-owner@{$domain}");
429 $mailer->setSubject("L'inscription de {$sub['name']} a été $info");
430 $text = "L'inscription de {$sub['name']} à la liste $liste@{$domain} a été $info par " . S::v('prenom') . ' '
431 . S::v('nom') . '(' . S::v('promo') . ")\n";
432 if (trim(Post::v('reason'))) {
433 $text .= "\nLa raison invoquée est :\n" . Post::v('reason');
434 }
435 $mailer->setTxtBody(wordwrap($text, 72));
436 $mailer->send();
437 }
438 if (Env::has('sadd')) {
439 pl_redirect('lists/moderate/'.$liste);
440 }
441 }
442
443 if (Post::has('moderate_mails') && Post::has('select_mails')) {
444 $mails = array_keys(Post::v('select_mails'));
445 foreach($mails as $mail) {
446 $this->moderate_mail($domain, $liste, $mail);
447 }
448 } elseif (Env::has('mid')) {
449 if (Get::has('mid') && !Env::has('mok') && !Env::has('mdel')) {
450 $page->changeTpl('lists/moderate_mail.tpl');
451 require_once('banana/moderate.inc.php');
452 $params = array('listname' => $liste, 'domain' => $domain,
453 'artid' => Get::i('mid'), 'part' => Get::v('part'), 'action' => Get::v('action'));
454 $params['client'] = $this->client;
455 run_banana($page, 'ModerationBanana', $params);
456
457 $msg = file_get_contents('/etc/mailman/fr/refuse.txt');
458 $msg = str_replace("%(adminaddr)s", "$liste-owner@{$domain}", $msg);
459 $msg = str_replace("%(request)s", "<< SUJET DU MAIL >>", $msg);
460 $msg = str_replace("%(reason)s", "<< TON EXPLICATION >>", $msg);
461 $msg = str_replace("%(listname)s", $liste, $msg);
462 $page->assign('msg', $msg);
463 return;
464 }
465
466 $mail = $this->moderate_mail($domain, $liste, Env::i('mid'));
467 } elseif (Env::has('sid')) {
468 if (list($subs,$mails) = $this->get_pending_ops($domain, $liste)) {
469 foreach($subs as $user) {
470 if ($user['id'] == Env::v('sid')) {
471 $page->changeTpl('lists/moderate_sub.tpl');
472 $page->assign('del_user', $user);
473 return;
474 }
475 }
476 }
477
478 }
479
480 if (list($subs,$mails) = $this->get_pending_ops($domain, $liste)) {
481 foreach ($mails as $key=>$mail) {
482 $mails[$key]['stamp'] = strftime("%Y%m%d%H%M%S", $mail['stamp']);
483 if ($mail['fromx']) {
484 $page->assign('with_fromx', true);
485 } else {
486 $page->assign('with_nonfromx', true);
487 }
488 }
489 $page->assign_by_ref('subs', $subs);
490 $page->assign_by_ref('mails', $mails);
491 } else {
492 $page->kill("La liste n'existe pas ou tu n'as pas le droit de la modérer");
493 }
494 }
495
496 static public function no_login_callback($login)
497 {
498 require_once 'user.func.inc.php';
499 global $list_unregistered;
500
501 $users = get_not_registered_user($login, true);
502 if ($users && $users->total()) {
503 if (!isset($list_unregistered)) {
504 $list_unregistered = array();
505 }
506 $list_unregistered[$login] = $users;
507 } else {
508 _default_user_callback($login);
509 }
510 }
511
512 function handler_admin(&$page, $liste = null)
513 {
514 global $globals;
515
516 if (is_null($liste)) {
517 return PL_NOT_FOUND;
518 }
519
520 $domain = $this->prepare_client($page);
521
522 $page->changeTpl('lists/admin.tpl');
523
524 if (Env::has('send_mark')) {
525 $actions = Env::v('mk_action');
526 $uids = Env::v('mk_uid');
527 $mails = Env::v('mk_email');
528 foreach ($actions as $key=>$action) {
529 switch ($action) {
530 case 'none':
531 break;
532
533 case 'marketu': case 'markets':
534 require_once 'emails.inc.php';
535 $mail = valide_email($mails[$key]);
536 if (isvalid_email_redirection($mail)) {
537 $from = ($action == 'marketu') ? 'user' : 'staff';
538 $market = Marketing::get($uids[$key], $mail);
539 if (!$market) {
540 $market = new Marketing($uids[$key], $mail, 'list', "$liste@$domain", $from, S::v('uid'));
541 $market->add();
542 break;
543 }
544 }
545
546 default:
547 XDB::execute('INSERT IGNORE INTO register_subs (uid, type, sub, domain)
548 VALUES ({?}, \'list\', {?}, {?})',
549 $uids[$key], $liste, $domain);
550 }
551 }
552 }
553
554 if (Env::has('add_member')) {
555 require_once('user.func.inc.php');
556 $members = get_users_forlife_list(Env::v('add_member'), false, array('ListsModule', 'no_login_callback'));
557 $arr = $this->client->mass_subscribe($liste, $members);
558 if (is_array($arr)) {
559 foreach($arr as $addr) {
560 $page->trig("{$addr[0]} inscrit.");
561 }
562 }
563 }
564
565 if (Env::has('del_member')) {
566 if (strpos(Env::v('del_member'), '@') === false) {
567 $this->client->mass_unsubscribe(
568 $liste, array(Env::v('del_member').'@'.$globals->mail->domain));
569 } else {
570 $this->client->mass_unsubscribe($liste, array(Env::v('del_member')));
571 }
572 pl_redirect('lists/admin/'.$liste);
573 }
574
575 if (Env::has('add_owner')) {
576 require_once('user.func.inc.php');
577 $owners = get_users_forlife_list(Env::v('add_owner'), false, array('ListsModule', 'no_login_callback'));
578 if ($owners) {
579 foreach ($owners as $login) {
580 if ($this->client->add_owner($liste, $login)) {
581 $page->trig($alias." ajouté aux modérateurs.");
582 }
583 }
584 }
585 }
586
587 if (Env::has('del_owner')) {
588 if (strpos(Env::v('del_owner'), '@') === false) {
589 $this->client->del_owner($liste, Env::v('del_owner').'@'.$globals->mail->domain);
590 } else {
591 $this->client->del_owner($liste, Env::v('del_owner'));
592 }
593 pl_redirect('lists/admin/'.$liste);
594 }
595
596 if (list($det,$mem,$own) = $this->client->get_members($liste)) {
597 global $list_unregistered;
598 if ($list_unregistered) {
599 $page->assign_by_ref('unregistered', $list_unregistered);
600 }
601 $membres = list_sort_members($mem, @$tri_promo);
602 $moderos = list_sort_owners($own, @$tri_promo);
603
604 $page->assign_by_ref('details', $det);
605 $page->assign_by_ref('members', $membres);
606 $page->assign_by_ref('owners', $moderos);
607 $page->assign('np_m', count($mem));
608
609 } else {
610 $page->kill("La liste n'existe pas ou tu n'as pas le droit de l'administrer.<br />"
611 ." Si tu penses qu'il s'agit d'une erreur, "
612 ."<a href='mailto:support@polytechnique.org'>contact le support</a>");
613 }
614 }
615
616 function handler_options(&$page, $liste = null)
617 {
618 if (is_null($liste)) {
619 return PL_NOT_FOUND;
620 }
621
622 $this->prepare_client($page);
623
624 $page->changeTpl('lists/options.tpl');
625
626 if (Post::has('submit')) {
627 $values = $_POST;
628 $values = array_map('utf8_decode', $values);
629 $this->client->set_bogo_level($liste, intval($values['bogo_level']));
630 switch($values['moderate']) {
631 case '0':
632 $values['generic_nonmember_action'] = 0;
633 $values['default_member_moderation'] = 0;
634 break;
635 case '1':
636 $values['generic_nonmember_action'] = 1;
637 $values['default_member_moderation'] = 0;
638 break;
639 case '2':
640 $values['generic_nonmember_action'] = 1;
641 $values['default_member_moderation'] = 1;
642 break;
643 }
644 unset($values['submit'], $values['bogo_level'], $values['moderate']);
645 $values['send_goodbye_msg'] = !empty($values['send_goodbye_msg']);
646 $values['admin_notify_mchanges'] = !empty($values['admin_notify_mchanges']);
647 $values['subscribe_policy'] = empty($values['subscribe_policy']) ? 0 : 2;
648 if (isset($values['subject_prefix'])) {
649 $values['subject_prefix'] = trim($values['subject_prefix']).' ';
650 }
651 $this->client->set_owner_options($liste, $values);
652 } elseif (isvalid_email(Post::v('atn_add'))) {
653 $this->client->add_to_wl($liste, Post::v('atn_add'));
654 } elseif (Get::has('atn_del')) {
655 $this->client->del_from_wl($liste, Get::v('atn_del'));
656 pl_redirect('lists/options/'.$liste);
657 }
658
659 if (list($details,$options) = $this->client->get_owner_options($liste)) {
660 $page->assign_by_ref('details', $details);
661 $page->assign_by_ref('options', $options);
662 $page->assign('bogo_level', $this->client->get_bogo_level($liste));
663 } else {
664 $page->kill("La liste n'existe pas ou tu n'as pas le droit de l'administrer");
665 }
666 }
667
668 function handler_delete(&$page, $liste = null)
669 {
670 global $globals;
671 if (is_null($liste)) {
672 return PL_NOT_FOUND;
673 }
674
675 $domain = $this->prepare_client($page);
676 if ($domain == $globals->mail->domain || $domain == $globals->mail->domain2) {
677 $domain = '';
678 $table = 'aliases';
679 $type = 'liste';
680 } else {
681 $domain = '@' . $domain;
682 $table = 'virtual';
683 $type = 'list';
684 }
685
686 $page->changeTpl('lists/delete.tpl');
687 if (Post::v('valid') == 'OUI') {
688 if ($this->client->delete_list($liste, Post::b('del_archive'))) {
689 foreach (array('', '-owner', '-admin', '-bounces', '-unsubscribe') as $app) {
690 XDB::execute("DELETE FROM $table
691 WHERE type={?} AND alias={?}",
692 $type, $liste.$app.$domain);
693 }
694 $page->assign('deleted', true);
695 } else {
696 $page->kill('Une erreur est survenue lors de la suppression de la liste.<br />'
697 . 'Contact les administrateurs du site pour régler le problème : '
698 . '<a href="mailto:support@polytechnique.org">support@polytechnique.org</a>');
699 }
700 } elseif (list($details,$options) = $this->client->get_owner_options($liste)) {
701 $page->assign_by_ref('details', $details);
702 $page->assign_by_ref('options', $options);
703 $page->assign('bogo_level', $this->client->get_bogo_level($liste));
704 } else {
705 $page->kill("La liste n'existe pas ou tu n'as pas le droit de l'administrer");
706 }
707 }
708
709 function handler_soptions(&$page, $liste = null)
710 {
711 if (is_null($liste)) {
712 return PL_NOT_FOUND;
713 }
714
715 $this->prepare_client($page);
716
717 $page->changeTpl('lists/soptions.tpl');
718
719 if (Post::has('submit')) {
720 $values = $_POST;
721 $values = array_map('utf8_decode', $values);
722 unset($values['submit']);
723 $values['advertised'] = empty($values['advertised']) ? false : true;
724 $values['archive'] = empty($values['archive']) ? false : true;
725 $this->client->set_admin_options($liste, $values);
726 }
727
728 if (list($details,$options) = $this->client->get_admin_options($liste)) {
729 $page->assign_by_ref('details', $details);
730 $page->assign_by_ref('options', $options);
731 } else {
732 $page->kill("La liste n'existe pas");
733 }
734 }
735
736 function handler_check(&$page, $liste = null)
737 {
738 if (is_null($liste)) {
739 return PL_NOT_FOUND;
740 }
741
742 $this->prepare_client($page);
743
744 $page->changeTpl('lists/check.tpl');
745
746 if (Post::has('correct')) {
747 $this->client->check_options($liste, true);
748 }
749
750 if (list($details,$options) = $this->client->check_options($liste)) {
751 $page->assign_by_ref('details', $details);
752 $page->assign_by_ref('options', $options);
753 } else {
754 $page->kill("La liste n'existe pas");
755 }
756 }
757
758 function handler_admin_all(&$page) {
759 $page->changeTpl('lists/admin_all.tpl');
760 $page->assign('xorg_title','Polytechnique.org - Administration - Mailing lists');
761
762 $client = new MMList(S::v('uid'), S::v('password'));
763 $listes = $client->get_all_lists();
764 $page->assign_by_ref('listes', $listes);
765 }
766 }
767
768 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
769 ?>