Merge branch 'master' of /home/git/platal into profile_edit
[platal.git] / include / banana / moderate.inc.php
CommitLineData
24cec3d8 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
22require_once 'banana/banana.inc.php';
23require_once 'banana/hooks.inc.php';
24
25function hook_checkcancel($_headers)
26{
27 return ($_headers['x-org-id'] == S::v('forlife') or S::has_perms());
28}
29
30function hook_makeLink($params)
31{
32 global $platal, $globals;
3e949cf9 33 $base = $globals->baseurl . '/' . $platal->ns . 'lists/moderate/' . ModerationBanana::$listname . '?';
24cec3d8 34 $get = '';
35 foreach ($params as $key=>$value) {
36 if ($key == 'artid') {
37 $key = 'mid';
38 }
39 if ($key == 'group') {
40 continue;
41 }
d96379f6 42 if ($key == 'action' && $value != 'showext') {
24cec3d8 43 continue;
44 }
45 if (!empty($get)) {
46 $get .= '&';
47 }
48 $get .= $key . '=' . $value;
49 }
50 return $base . $get;
51}
52
53class ModerationBanana extends Banana
54{
55 static public $listname;
56 static public $domain;
57 static public $client;
58
b2bffbe6 59 function __construct($forlife, $params = null)
24cec3d8 60 {
61 global $globals;
4f355064 62 ModerationBanana::$client = $params['client'];
24cec3d8 63 ModerationBanana::$listname = $params['listname'];
64 ModerationBanana::$domain = isset($params['domain']) ? $params['domain'] : $globals->mail->domain;
65 $params['group'] = ModerationBanana::$listname . '@' . ModerationBanana::$domain;
580d1c7d 66 Banana::$spool_root = $globals->banana->spool_root;
24cec3d8 67 Banana::$spool_boxlist = false;
68 Banana::$msgshow_withthread = false;
69 Banana::$withtabs = false;
1515e65a 70 Banana::$msgshow_externalimages = false;
71 Banana::$msgshow_mimeparts[] = 'source';
6544d0e1 72 Banana::$feed_active = false;
81e9c63f 73 Banana::$debug_smarty = ($globals->debug & DEBUG_SMARTY);
24cec3d8 74 array_push(Banana::$msgparse_headers, 'x-org-id', 'x-org-mail');
75 parent::__construct($params, 'MLInterface', 'ModerationPage');
76 }
77}
78
79require_once('banana/page.inc.php');
80
81class 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) {
2d967f8c 95 $page->trig($msg);
24cec3d8 96 }
97 return true;
98 }
99}
100
101require_once('banana/protocoleinterface.inc.php');
102require_once('banana/message.inc.php');
103
104class 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 {
787bb3d7 111 $this->infos = ModerationBanana::$client->get_members(ModerationBanana::$listname);
24cec3d8 112 $this->infos = $this->infos[0];
787bb3d7 113
24cec3d8 114 $mods = ModerationBanana::$client->get_pending_ops(ModerationBanana::$listname);
115 $this->helds = $mods[1];
116 }
787bb3d7 117
24cec3d8 118 public function isValid()
119 {
120 return !is_null(ModerationBanana::$client);
121 }
787bb3d7 122
24cec3d8 123 public function lastErrNo()
124 {
125 return 0;
126 }
787bb3d7 127
24cec3d8 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) {
ea626742 151 $message = new BananaMessage(html_entity_decode($msg));
24cec3d8 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 }
d3f26be9 241
242 public function backtrace()
243 {
244 return null;
245 }
24cec3d8 246}
247
a7de4ef7 248// vim:set et sw=4 sts=4 ts=4 enc=utf-8:
24cec3d8 249?>