8a42f30e9d72531b6452a88ab307244cdd5d96b0
[platal.git] / include / banana / ml.inc.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 require_once 'banana/banana.inc.php';
23 require_once 'banana/hooks.inc.php';
24
25 function hook_makeLink($params)
26 {
27 global $globals, $platal;
28 $base = $globals->baseurl . '/' . $platal->ns . 'lists/archives/' . MLBanana::$listname;
29 $base = $base . hook_platalMessageLink($params);
30 if (@$params['action'] == 'showext') {
31 $base .= '?action=showext';
32 }
33 return $base;
34 }
35
36 class MLBanana extends Banana
37 {
38 static public $listname;
39 static public $domain;
40
41 function __construct($params = null)
42 {
43 Banana::$spool_root = $globals->banana->spool_root;
44 Banana::$spool_boxlist = false;
45 Banana::$msgedit_canattach = true;
46 if (S::has_perms()) {
47 Banana::$msgshow_mimeparts[] = 'source';
48 }
49 array_push(Banana::$msgparse_headers, 'x-org-id', 'x-org-mail');
50
51 MLBanana::$listname = $params['listname'];
52 MLBanana::$domain = $params['domain'];
53 $params['group'] = $params['listname'] . '@' . $params['domain'];
54 parent::__construct($params, 'MLArchive');
55 }
56
57 public function run()
58 {
59 global $platal, $globals;
60
61 $nom = S::v('prenom') . ' ' . S::v('nom');
62 $mail = S::v('bestalias') . '@' . $globals->mail->domain;
63 $sig = $nom . ' (' . S::v('promo') . ')';
64 Banana::$msgedit_headers['X-Org-Mail'] = S::v('forlife') . '@' . $globals->mail->domain;
65
66 // Build user profile
67 Banana::$profile['headers']['From'] = utf8_encode("$nom <$mail>");
68 Banana::$profile['headers']['Organization'] = 'Utilisateur de Polytechnique.org';
69 Banana::$profile['signature'] = utf8_encode($sig);
70
71 // Page design
72 Banana::$page->killPage('forums');
73 Banana::$page->killPage('subscribe');
74
75 // Run Banana
76 return parent::run();
77 }
78 }
79
80 require_once('banana/mbox.inc.php');
81
82 class BananaMLArchive extends BananaMBox
83 {
84 public function name()
85 {
86 return 'MLArchives';
87 }
88
89 public function getBoxList($mode = Banana::BOXES_ALL, $since = 0, $withstats = false)
90 {
91 global $globals;
92 $spool = $globals->lists->spool . '/';
93 $list = glob($spool . '*.mbox', GLOB_ONLYDIR);
94 if ($list === false) {
95 return array();
96 }
97 $groups = array();
98 foreach ($list as $path) {
99 $path = substr($path, strlen($spool));
100 $path = substr($path, 0, -5);
101 list($domain, $listname) = explode($globals->lists->vhost_sep, $path, 2);
102 $group = $listname . '@' . $domain;
103 $groups[$group] = array('desc' => null, 'msgnum' => null, 'unread' => null);
104 }
105 return $groups;
106 }
107
108 public function filename()
109 {
110 if (MLBanana::$listname) {
111 $listname = MLBanana::$listname;
112 $domain = MLBanana::$domain;
113 } else {
114 list($listname, $domain) = explode('@', Banana::$group);
115 }
116 return $domain . '_' . $listname;
117 }
118
119 protected function getFileName()
120 {
121 global $globals;
122 $base = $globals->lists->spool;
123 if (MLBanana::$listname) {
124 $listname = MLBanana::$listname;
125 $domain = MLBanana::$domain;
126 } else {
127 list($listname, $domain) = explode('@', Banana::$group);
128 }
129 $file = $domain . $globals->lists->vhost_sep . $listname . '.mbox';
130 return "$base/$file/$file";
131 }
132 }
133
134 ?>