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