efd529d064530a679ab9e357f8fc956889ecb934
[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 handler_members(&$page, $liste = null)
228 {
229 if (is_null($liste)) {
230 return PL_NOT_FOUND;
231 }
232
233 $this->prepare_client($page);
234
235 $page->changeTpl('lists/members.tpl');
236
237 if (Get::has('del')) {
238 $this->client->unsubscribe($liste);
239 pl_redirect('lists/members/'.$liste);
240 }
241
242 if (Get::has('add')) {
243 $this->client->subscribe($liste);
244 pl_redirect('lists/members/'.$liste);
245 }
246
247 $members = $this->client->get_members($liste);
248
249 $tri_promo = !Env::b('alpha');
250
251 if (list($det,$mem,$own) = $members) {
252 $membres = list_sort_members($mem, $tri_promo);
253 $moderos = list_sort_owners($own, $tri_promo);
254
255 $page->assign_by_ref('details', $det);
256 $page->assign_by_ref('members', $membres);
257 $page->assign_by_ref('owners', $moderos);
258 $page->assign('nb_m', count($mem));
259 } else {
260 $page->kill("La liste n'existe pas ou tu n'as pas le droit d'en voir les détails");
261 }
262 }
263
264 function _get_list($offset, $limit)
265 {
266 global $platal;
267 list($total, $members) = $this->client->get_members_limit($platal->argv[1], $offset, $limit);
268
269 $membres = Array();
270 foreach ($members as $member) {
271 list($m) = explode('@',$member[1]);
272 $res = XDB::query("SELECT prenom,if (nom_usage='', nom, nom_usage) AS nom,
273 promo, a.alias AS forlife
274 FROM auth_user_md5 AS u
275 INNER JOIN aliases AS a ON u.user_id = a.id
276 WHERE a.alias = {?}", $m);
277 if ($tmp = $res->fetchOneAssoc()) {
278 $membres[$tmp['nom']] = $tmp;
279 } else {
280 $membres[$member[0]] = array('addr' => $member[0]);
281 }
282 }
283 return array($total, $membres);
284 }
285
286 function handler_trombi(&$page, $liste = null)
287 {
288 if (is_null($liste)) {
289 return PL_NOT_FOUND;
290 }
291
292 $this->prepare_client($page);
293
294 $page->changeTpl('lists/trombi.tpl');
295
296 if (Get::has('del')) {
297 $this->client->unsubscribe($liste);
298 pl_redirect('lists/tromi/'.$liste);
299 }
300 if (Get::has('add')) {
301 $this->client->subscribe($liste);
302 pl_redirect('lists/tromi/'.$liste);
303 }
304
305 $owners = $this->client->get_owners($liste);
306
307 if (is_array($owners)) {
308 $moderos = list_sort_owners($owners[1]);
309
310 $page->assign_by_ref('details', $owners[0]);
311 $page->assign_by_ref('owners', $moderos);
312
313 $trombi = new Trombi(array(&$this, '_get_list'));
314 $page->assign('trombi', $trombi);
315 } else {
316 $page->kill("La liste n'existe pas ou tu n'as pas le droit d'en voir les détails");
317 }
318 }
319
320 function handler_archives(&$page, $liste = null)
321 {
322 global $globals;
323
324 if (is_null($liste)) {
325 return PL_NOT_FOUND;
326 }
327
328 $domain = $this->prepare_client($page);
329
330 $page->changeTpl('lists/archives.tpl');
331
332 $page->addCssLink('lists.archives.css');
333 if (list($det) = $this->client->get_members($liste)) {
334 if (substr($liste,0,5) != 'promo' && ($det['ins'] || $det['priv'])
335 && !$det['own'] && ($det['sub'] < 2))
336 {
337 $page->kill("La liste n'existe pas ou tu n'as pas le droit de la consulter");
338 } elseif (Get::has('file')) {
339 $file = Get::v('file');
340 $rep = Get::v('rep');
341 if (strstr('/', $file)!==false || !preg_match(',^\d+/\d+$,', $rep)) {
342 $page->kill("La liste n'existe pas ou tu n'as pas le droit de la consulter");
343 } else {
344 $page->assign('archives', $globals->lists->spool
345 ."/{$domain}{$globals->lists->vhost_sep}$liste/$rep/$file");
346 }
347 } else {
348 $archs = Array();
349 foreach (glob($globals->lists->spool
350 ."/{$domain}{$globals->lists->vhost_sep}$liste/*/*") as $rep)
351 {
352 if (preg_match(",/(\d*)/(\d*)$,", $rep, $matches)) {
353 $archs[intval($matches[1])][intval($matches[2])] = true;
354 }
355 }
356 $page->assign('archs', $archs);
357 $page->assign('range', range(1,12));
358 }
359 } else {
360 $page->kill("La liste n'existe pas ou tu n'as pas le droit de la consulter");
361 }
362 }
363
364 function moderate_mail($domain, $liste, $mid)
365 {
366 $mail = $this->client->get_pending_mail($liste, $mid);
367 $reason = '';
368
369 $prenom = S::v('prenom');
370 $nom = S::v('nom');
371
372 if (Env::has('mok')) {
373 $action = 1; /** 2 = ACCEPT **/
374 $subject = "Message accepté";
375 $append .= "a été accepté par $prenom $nom.\n";
376 } elseif (Env::has('mno')) {
377 $action = 2; /** 2 = REJECT **/
378 $subject = "Message refusé";
379 $reason = Post::v('reason');
380 $append = "a été refusé par $prenom $nom avec la raison :\n\n"
381 . $reason;
382 } elseif (Env::has('mdel')) {
383 $action = 3; /** 3 = DISCARD **/
384 $subject = "Message supprimé";
385 $append = "a été supprimé par $prenom $nom.\n\n"
386 . "Rappel: il ne faut utiliser cette opération "
387 . "que dans le cas de spams ou de virus !\n";
388 }
389
390 if (isset($action) && $this->client->handle_request($liste, $mid, $action, $reason)) {
391 $texte = "le message suivant :\n\n"
392 ." Auteur: {$mail['sender']}\n"
393 ." Sujet : « {$mail['subj']} »\n"
394 ." Date : ".strftime("le %d %b %Y à %H:%M:%S", (int)$mail['stamp'])."\n\n"
395 .$append;
396 $mailer = new PlMailer();
397 $mailer->addTo("$liste-owner@{$domain}");
398 $mailer->setFrom("$liste-bounces@{$domain}");
399 $mailer->addHeader('Reply-To', "$liste-owner@{$domain}");
400 $mailer->setSubject($subject);
401 $mailer->setTxtBody(wordwrap($texte,72));
402 $mailer->send();
403 Get::kill('mid');
404 }
405
406 return $mail;
407 }
408
409 function handler_moderate(&$page, $liste = null)
410 {
411 if (is_null($liste)) {
412 return PL_NOT_FOUND;
413 }
414
415 $domain = $this->prepare_client($page);
416
417 $page->changeTpl('lists/moderate.tpl');
418
419 $page->register_modifier('hdc', 'list_header_decode');
420
421 if (Env::has('sadd')) { /* 4 = SUBSCRIBE */
422 $this->client->handle_request($liste,Env::v('sadd'),4,'');
423 pl_redirect('lists/moderate/'.$liste);
424 }
425 if (Post::has('sdel')) { /* 2 = REJECT */
426 $this->client->handle_request($liste,Post::v('sdel'),2,Post::v('reason'));
427 }
428
429 if (Post::has('moderate_mails') && Post::has('select_mails')) {
430 $mails = array_keys(Post::v('select_mails'));
431 foreach($mails as $mail) {
432 $this->moderate_mail($domain, $liste, $mail);
433 }
434 } elseif (Env::has('mid')) {
435 if (Get::has('mid')) {
436 require_once('banana/moderate.inc.php');
437 $params = array('listname' => $liste, 'domain' => $domain, 'artid' => Get::i('mid'), 'part' => Get::v('part'));
438 $banana = new ModerationBanana($params, $this->client);
439 $res = $banana->run();
440
441 $msg = file_get_contents('/etc/mailman/fr/refuse.txt');
442 $msg = str_replace("%(adminaddr)s", "$liste-owner@{$domain}", $msg);
443 $msg = str_replace("%(request)s", "<< SUJET DU MAIL >>", $msg);
444 $msg = str_replace("%(reason)s", "<< TON EXPLICATION >>", $msg);
445 $msg = str_replace("%(listname)s", $liste, $msg);
446 $page->assign('msg', $msg);
447
448 $page->addCssLink('banana.css');
449 $page->changeTpl('lists/moderate_mail.tpl');
450 $page->assign_by_ref('mail', $res);
451 return;
452 }
453
454 $mail = $this->moderate_mail($domain, $liste, Env::i('mid'));
455 } elseif (Env::has('sid')) {
456 if (list($subs,$mails) = $this->client->get_pending_ops($liste)) {
457 foreach($subs as $user) {
458 if ($user['id'] == Env::v('sid')) {
459 $page->changeTpl('lists/moderate_sub.tpl');
460 $page->assign('del_user', $user);
461 return;
462 }
463 }
464 }
465
466 }
467
468 if (list($subs,$mails) = $this->client->get_pending_ops($liste)) {
469 foreach ($mails as $key=>$mail) {
470 $mails[$key]['stamp'] = strftime("%Y%m%d%H%M%S", $mail['stamp']);
471 }
472 $page->assign_by_ref('subs', $subs);
473 $page->assign_by_ref('mails', $mails);
474 } else {
475 $page->kill("La liste n'existe pas ou tu n'as pas le droit de la modérer");
476 }
477 }
478
479 function handler_admin(&$page, $liste = null)
480 {
481 global $globals;
482
483 if (is_null($liste)) {
484 return PL_NOT_FOUND;
485 }
486
487 $this->prepare_client($page);
488
489 $page->changeTpl('lists/admin.tpl');
490
491 if (Env::has('add_member')) {
492 require_once('user.func.inc.php');
493 $members = get_users_forlife_list(Env::v('add_member'));
494 $arr = $this->client->mass_subscribe($liste, $members);
495 if (is_array($arr)) {
496 foreach($arr as $addr) {
497 $page->trig("{$addr[0]} inscrit.");
498 }
499 }
500 }
501
502 if (Env::has('del_member')) {
503 if (strpos(Env::v('del_member'), '@') === false) {
504 $this->client->mass_unsubscribe(
505 $liste, array(Env::v('del_member').'@'.$globals->mail->domain));
506 } else {
507 $this->client->mass_unsubscribe($liste, array(Env::v('del_member')));
508 }
509 pl_redirect('lists/admin/'.$liste);
510 }
511
512 if (Env::has('add_owner')) {
513 require_once('user.func.inc.php');
514 $owners = get_users_forlife_list(Env::v('add_owner'));
515 if ($owners) {
516 foreach ($owners as $login) {
517 if ($this->client->add_owner($liste, $login)) {
518 $page->trig($alias." ajouté aux modérateurs.");
519 }
520 }
521 }
522 }
523
524 if (Env::has('del_owner')) {
525 if (strpos(Env::v('del_owner'), '@') === false) {
526 $this->client->del_owner($liste, Env::v('del_owner').'@'.$globals->mail->domain);
527 } else {
528 $this->client->del_owner($liste, Env::v('del_owner'));
529 }
530 pl_redirect('lists/admin/'.$liste);
531 }
532
533 if (list($det,$mem,$own) = $this->client->get_members($liste)) {
534 $membres = list_sort_members($mem, @$tri_promo);
535 $moderos = list_sort_owners($own, @$tri_promo);
536
537 $page->assign_by_ref('details', $det);
538 $page->assign_by_ref('members', $membres);
539 $page->assign_by_ref('owners', $moderos);
540 $page->assign('np_m', count($mem));
541
542 } else {
543 $page->kill("La liste n'existe pas ou tu n'as pas le droit de l'administrer.<br />"
544 ." Si tu penses qu'il s'agit d'une erreur, "
545 ."<a href='mailto:support@polytechnique.org'>contact le support</a>");
546 }
547 }
548
549 function handler_options(&$page, $liste = null)
550 {
551 if (is_null($liste)) {
552 return PL_NOT_FOUND;
553 }
554
555 $this->prepare_client($page);
556
557 $page->changeTpl('lists/options.tpl');
558
559 if (Post::has('submit')) {
560 $values = $_POST;
561 $this->client->set_bogo_level($liste, intval($values['bogo_level']));
562 switch($values['moderate']) {
563 case '0':
564 $values['generic_nonmember_action'] = 0;
565 $values['default_member_moderation'] = 0;
566 break;
567 case '1':
568 $values['generic_nonmember_action'] = 1;
569 $values['default_member_moderation'] = 0;
570 break;
571 case '2':
572 $values['generic_nonmember_action'] = 1;
573 $values['default_member_moderation'] = 1;
574 break;
575 }
576 unset($values['submit'], $values['bogo_level'], $values['moderate']);
577 $values['send_goodbye_msg'] = !empty($values['send_goodbye_msg']);
578 $values['admin_notify_mchanges'] = !empty($values['admin_notify_mchanges']);
579 $values['subscribe_policy'] = empty($values['subscribe_policy']) ? 0 : 2;
580 if (isset($values['subject_prefix'])) {
581 $values['subject_prefix'] = trim($values['subject_prefix']).' ';
582 }
583 $this->client->set_owner_options($liste, $values);
584 } elseif (isvalid_email(Post::v('atn_add'))) {
585 $this->client->add_to_wl($liste, Post::v('atn_add'));
586 } elseif (Get::has('atn_del')) {
587 $this->client->del_from_wl($liste, Get::v('atn_del'));
588 pl_redirect('lists/options/'.$liste);
589 }
590
591 if (list($details,$options) = $this->client->get_owner_options($liste)) {
592 $page->assign_by_ref('details', $details);
593 $page->assign_by_ref('options', $options);
594 $page->assign('bogo_level', $this->client->get_bogo_level($liste));
595 } else {
596 $page->kill("La liste n'existe pas ou tu n'as pas le droit de l'administrer");
597 }
598 }
599
600 function handler_delete(&$page, $liste = null)
601 {
602 global $globals;
603 if (is_null($liste)) {
604 return PL_NOT_FOUND;
605 }
606
607 $domain = $this->prepare_client($page);
608 if ($domain == $globals->mail->domain || $domain == $globals->mail->domain2) {
609 $domain = '';
610 $table = 'aliases';
611 $type = 'liste';
612 } else {
613 $domain = '@' . $domain;
614 $table = 'virtual';
615 $type = 'list';
616 }
617
618 $page->changeTpl('lists/delete.tpl');
619 if (Post::v('valid') == 'OUI') {
620 if ($this->client->delete_list($liste, Post::b('del_archive'))) {
621 foreach (array('', '-owner', '-admin', '-bounces') as $app) {
622 XDB::execute("DELETE FROM $table
623 WHERE type={?} AND alias={?}",
624 $type, $liste.$app.$domain);
625 }
626 $page->assign('deleted', true);
627 } else {
628 $page->kill('Une erreur est survenue lors de la suppression de la liste.<br />'
629 . 'Contact les administrateurs du site pour régler le problème : '
630 . '<a href="mailto:support@polytechnique.org">support@polytechnique.org</a>');
631 }
632 } elseif (list($details,$options) = $this->client->get_owner_options($liste)) {
633 $page->assign_by_ref('details', $details);
634 $page->assign_by_ref('options', $options);
635 $page->assign('bogo_level', $this->client->get_bogo_level($liste));
636 } else {
637 $page->kill("La liste n'existe pas ou tu n'as pas le droit de l'administrer");
638 }
639 }
640
641 function handler_soptions(&$page, $liste = null)
642 {
643 if (is_null($liste)) {
644 return PL_NOT_FOUND;
645 }
646
647 $this->prepare_client($page);
648
649 $page->changeTpl('lists/soptions.tpl');
650
651 if (Post::has('submit')) {
652 $values = $_POST;
653 unset($values['submit']);
654 $values['advertised'] = empty($values['advertised']) ? false : true;
655 $values['archive'] = empty($values['archive']) ? false : true;
656 $this->client->set_admin_options($liste, $values);
657 }
658
659 if (list($details,$options) = $this->client->get_admin_options($liste)) {
660 $page->assign_by_ref('details', $details);
661 $page->assign_by_ref('options', $options);
662 } else {
663 $page->kill("La liste n'existe pas");
664 }
665 }
666
667 function handler_check(&$page, $liste = null)
668 {
669 if (is_null($liste)) {
670 return PL_NOT_FOUND;
671 }
672
673 $this->prepare_client($page);
674
675 $page->changeTpl('lists/check.tpl');
676
677 if (Post::has('correct')) {
678 $this->client->check_options($liste, true);
679 }
680
681 if (list($details,$options) = $this->client->check_options($liste)) {
682 $page->assign_by_ref('details', $details);
683 $page->assign_by_ref('options', $options);
684 } else {
685 $page->kill("La liste n'existe pas");
686 }
687 }
688
689 function handler_admin_all(&$page) {
690 $page->changeTpl('lists/admin_all.tpl');
691 $page->assign('xorg_title','Polytechnique.org - Administration - Mailing lists');
692
693 $client = new MMList(S::v('uid'), S::v('password'));
694 $listes = $client->get_all_lists();
695 $page->assign_by_ref('listes', $listes);
696 }
697 }
698
699 ?>