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