Non significant spaces suck.
[platal.git] / include / banana / moderate.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_checkcancel($_headers)
26 {
27 return ($_headers['x-org-id'] == S::v('forlife') or S::has_perms());
28 }
29
30 function hook_makeLink($params)
31 {
32 global $platal, $globals;
33 $base = $globals->baseurl . '/' . $platal->ns . 'lists/moderate/' . ModerationBanana::$listname . '?';
34 $get = '';
35 foreach ($params as $key=>$value) {
36 if ($key == 'artid') {
37 $key = 'mid';
38 }
39 if ($key == 'group') {
40 continue;
41 }
42 if ($key == 'action' && $value != 'showext') {
43 continue;
44 }
45 if (!empty($get)) {
46 $get .= '&';
47 }
48 $get .= $key . '=' . $value;
49 }
50 return $base . $get;
51 }
52
53 class ModerationBanana extends Banana
54 {
55 static public $listname;
56 static public $domain;
57 static public $client;
58
59 function __construct($forlife, $params = null)
60 {
61 global $globals;
62 ModerationBanana::$client = $params['client'];
63 ModerationBanana::$listname = $params['listname'];
64 ModerationBanana::$domain = isset($params['domain']) ? $params['domain'] : $globals->mail->domain;
65 $params['group'] = ModerationBanana::$listname . '@' . ModerationBanana::$domain;
66 Banana::$spool_root = $globals->banana->spool_root;
67 Banana::$spool_boxlist = false;
68 Banana::$msgshow_withthread = false;
69 Banana::$withtabs = false;
70 Banana::$msgshow_externalimages = false;
71 Banana::$msgshow_mimeparts[] = 'source';
72 Banana::$feed_active = false;
73 Banana::$debug_smarty = ($globals->debug & DEBUG_SMARTY);
74 array_push(Banana::$msgparse_headers, 'x-org-id', 'x-org-mail');
75 parent::__construct($params, 'MLInterface', 'ModerationPage');
76 }
77 }
78
79 require_once('banana/page.inc.php');
80
81 class ModerationPage extends BananaPage
82 {
83 protected function prepare()
84 {
85 $this->killPage('subscribe');
86 $this->killPage('forums');
87 $this->assign('noactions', true);
88 return parent::prepare();
89 }
90
91 public function trig($msg)
92 {
93 global $page;
94 if ($page) {
95 $page->trig($msg);
96 }
97 return true;
98 }
99 }
100
101 require_once('banana/protocoleinterface.inc.php');
102 require_once('banana/message.inc.php');
103
104 class BananaMLInterface implements BananaProtocoleInterface
105 {
106 private $infos; //(list, addr, host, desc, info, diff, ins, priv, sub, own, nbsub)
107 private $helds; //(id, sender, size, subj, date)
108
109 public function __construct()
110 {
111 $this->infos = ModerationBanana::$client->get_members(ModerationBanana::$listname);
112 $this->infos = $this->infos[0];
113
114 $mods = ModerationBanana::$client->get_pending_ops(ModerationBanana::$listname);
115 $this->helds = $mods[1];
116 }
117
118 public function isValid()
119 {
120 return !is_null(ModerationBanana::$client);
121 }
122
123 public function lastErrNo()
124 {
125 return 0;
126 }
127
128 public function lastError()
129 {
130 return null;
131 }
132
133 public function getDescription()
134 {
135 return $this->infos['desc'];
136 }
137
138 public function getBoxList($mode = Banana::BOXES_ALL, $since = 0, $withstats = false)
139 {
140 return array(Banana::$group => Array(
141 'desc' => $this->infos['desc'],
142 'msgnum' => count($this->helds),
143 'unread' => count($this->helds)));
144 }
145
146 public function &getMessage($id)
147 {
148 $message = null;
149 $msg = ModerationBanana::$client->get_pending_mail(ModerationBanana::$listname, $id, 1);
150 if ($msg) {
151 $message = new BananaMessage(html_entity_decode($msg));
152 }
153 return $message;
154 }
155
156 public function getMessageSource($id)
157 {
158 return ModerationBanana::$client->get_pending_mail(ModerationBanana::$listname, $id, 1);
159 }
160
161 public function getIndexes()
162 {
163 $ids = array();
164 foreach ($this->helds as &$desc) {
165 $ids[] = intval($desc['id']);
166 }
167 sort($ids);
168 return array(count($ids), min($ids), max($ids));
169 }
170
171 public function &getMessageHeaders($firstid, $lastid, array $msg_headers = array())
172 {
173 $conv = array('from' => 'sender', 'subject' => 'subj', 'date' => 'stamp', 'message-id' => 'id');
174 $headers = array();
175 foreach ($msg_headers as $hdr) {
176 $hdr = strtolower($hdr);
177 $mlhdr = isset($conv[$hdr]) ? $conv[$hdr] : $hdr;
178 foreach ($this->helds as &$desc) {
179 $id = intval($desc['id']);
180 if (!isset($headers[$id])) {
181 $headers[$id] = array();
182 }
183 if ($mlhdr == 'id') {
184 $headers[$id][$hdr] = $desc['stamp'] . '$' . $desc['id'] . '@' . Banana::$group;
185 } else {
186 $headers[$id][$hdr] = isset($desc[$mlhdr]) ? banana_html_entity_decode($desc[$mlhdr]) : null;
187 }
188 }
189 }
190 return $headers;
191 }
192
193 public function updateSpool(array &$messages) { }
194
195 public function getNewIndexes($since)
196 {
197 $ids = array();
198 foreach ($this->helds as &$desc) {
199 if ($desc['stamp'] > $since) {
200 $ids[] = intval($desc['id']);
201 }
202 }
203 sort($ids);
204 return $ids;
205 }
206
207 public function canSend()
208 {
209 return false;
210 }
211
212 public function canCancel()
213 {
214 return false;
215 }
216
217 public function requestedHeaders()
218 {
219 return array();
220 }
221
222 public function send(BananaMessage &$message)
223 {
224 return true;
225 }
226
227 public function cancel(BananaMessage &$message)
228 {
229 return true;
230 }
231
232 public function name()
233 {
234 return 'MLModeration';
235 }
236
237 public function filename()
238 {
239 return ModerationBanana::$domain . '_' . ModerationBanana::$listname;
240 }
241
242 public function backtrace()
243 {
244 return null;
245 }
246 }
247
248 // vim:set et sw=4 sts=4 ts=4 enc=utf-8:
249 ?>