Can hide unuseful pages
[banana.git] / banana / nntp.inc.php
CommitLineData
7027794f 1<?php
2/********************************************************************************
3* banana/nntp.inc.php : NNTP protocole handler
4* ------------------------
5*
6* This file is part of the banana distribution
7* Copyright: See COPYING files that comes with this distribution
8********************************************************************************/
9
10require_once dirname(__FILE__) . '/banana.inc.php';
11require_once dirname(__FILE__) . '/message.inc.php';
12require_once dirname(__FILE__) . '/nntpcore.inc.php';
13require_once dirname(__FILE__) . '/protocoleinterface.inc.php';
14
15class BananaNNTP extends BananaNNTPCore implements BananaProtocoleInterface
16{
7027794f 17 private $description = null;
18 private $ingroup = null;
19
20 private $mode = null;
21 private $boxes = null;
22
23 /** Build a protocole handler plugged on the given box
24 */
0e25d15d 25 public function __construct()
7027794f 26 {
e9360b11 27 $url = parse_url(Banana::$nntp_host);
7027794f 28 if ($url['scheme'] == 'nntps' || $url['scheme'] == 'snntp') {
29 $url['host'] = 'ssl://' . $url['host'];
30 }
31 if (!isset($url['port'])) {
32 $url['port'] = 119;
33 }
34 if (!isset($url['user'])) {
35 parent::__construct($url['host'], $url['port']);
36 } else {
37 parent::__construct($url['host'], $url['port'], 120, false);
38 $this->authinfo($url['user'], $url['pass']);
39 }
7027794f 40 }
41
42 /** Return the descript;ion of the current box
43 */
44 public function getDescription()
45 {
46 if ($this->description) {
47 return $this->description;
48 }
0e25d15d 49 $descs = $this->xgtitle(Banana::$group);
50 if (isset($descs[Banana::$group])) {
51 $this->description = $descs[Banana::$group];
7027794f 52 }
53 return $this->description;
54 }
55
56 /** Return the list of the boxes
57 * @param mode Kind of boxes to list
58 * @param since date of last check (for new boxes and new messages)
59 * @return Array(boxname => array(desc => boxdescripton, msgnum => number of message, unread =>number of unread messages)
60 */
61 public function getBoxList($mode = Banana::BOXES_ALL, $since = 0, $withstats = false)
62 {
63 if (!is_array($this->boxes) || $this->mode != $mode) {
64 $descs = $this->xgtitle();
65 if ($mode == Banana::BOXES_NEW && $since) {
66 $list = $this->newgroups($since);
67 } else {
68 $list = $this->listGroups();
69 if ($mode == Banana::BOXES_SUB) {
70 $sub = array_flip(Banana::$profile['subscribe']);
71 $list = array_intersect_key($list, $sub);
72 }
73 }
74 $this->boxes = array();
75 foreach ($list as $group=>&$infos) {
76 if (isset($descs[$group])) {
77 $desc = $descs[$group];
78 if (!is_utf8($desc)) {
79 $desc = utf8_encode($desc);
80 }
81 $this->boxes[$group] = array('desc' => $desc);
82 } else {
83 $this->boxes[$group] = array('desc' => null);
84 }
85 }
86 ksort($this->boxes);
87 }
88 if ($withstats) {
89 foreach ($this->boxes as $group=>&$desc) {
90 list($msgnum, $first, $last, $groupname) = $this->group($group);
91 $this->ingroup = $group;
92 $new = count($this->newnews($group, $since));
93 $desc['msgnum'] = $msgnum;
94 $desc['unread'] = $new;
95 }
96 }
97 return $this->boxes;
98 }
99
100 /** Return a message
101 * @param id Id of the emssage (can be either an Message-id or a message index)
7027794f 102 * @return A BananaMessage or null if the given id can't be retreived
103 */
7a5823f9 104 public function &getMessage($id)
7027794f 105 {
7a5823f9 106 if (is_numeric($id) && Banana::$group != $this->ingroup) {
7027794f 107 if (is_null(Banana::$spool)) {
0e25d15d 108 $this->group(Banana::$group);
109 $this->ingroup = Banana::$group;
7027794f 110 } else {
111 $id = array_search($id, Banana::$spool->ids);
112 }
113 }
114 $data = $this->article($id);
115 if ($data !== false) {
116 return new BananaMessage($data);
117 }
7d3f4749 118 $data = null;
119 return $data;
7027794f 120 }
121
7a5823f9 122 /** Return the sources of the message
123 */
124 public function getMessageSource($id)
125 {
126 if (is_numeric($id) && Banana::$group != $this->ingroup) {
127 if (is_null(Banana::$spool)) {
128 $this->group(Banana::$group);
129 $this->ingroup = Banana::$group;
130 } else {
131 $id = array_search($id, Banana::$spool->ids);
132 }
133 }
134 $data = $this->article($id);
135 if ($data !== false) {
136 return implode("\n", $data);
137 }
7d3f4749 138 $data = null;
139 return $data;
7a5823f9 140 }
141
7027794f 142 /** Return the indexes of the messages presents in the Box
143 * @return Array(number of messages, MSGNUM of the first message, MSGNUM of the last message)
144 */
145 public function getIndexes()
146 {
0e25d15d 147 list($msgnum, $first, $last, $groupname) = $this->group(Banana::$group);
148 $this->ingroup = Banana::$group;
7027794f 149 return array($msgnum, $first, $last);
150 }
151
152 /** Return the message headers (in BananaMessage) for messages from firstid to lastid
153 * @return Array(id => array(headername => headervalue))
154 */
155 public function &getMessageHeaders($firstid, $lastid, array $msg_headers = array())
156 {
157 $messages = array();
158 foreach ($msg_headers as $header) {
159 $headers = $this->xhdr($header, $firstid, $lastid);
160 array_walk($headers, array('BananaMimePart', 'decodeHeader'));
161 $header = strtolower($header);
162 if ($header == 'date') {
163 $headers = array_map('strtotime', $headers);
164 }
165 foreach ($headers as $id=>&$value) {
166 if (!isset($messages[$id])) {
167 $messages[$id] = array();
168 }
169 $messages[$id][$header] =& $value;
170 }
171 }
172 return $messages;
173 }
174
175 /** Add protocole specific data in the spool
176 */
177 public function updateSpool(array &$messages)
178 {
179 return true;
180 }
181
182 /** Return the indexes of the new messages since the give date
183 * @return Array(MSGNUM of new messages)
184 */
185 public function getNewIndexes($since)
186 {
0e25d15d 187 return $this->newnews(Banana::$group, $since);
7027794f 188 }
189
190 /** Return true if can post
191 */
192 public function canSend()
193 {
194 return $this->isValid();
195 }
196
197 /** Return true if can cancel
198 */
199 public function canCancel()
200 {
201 return $this->isValid();
202 }
203
204 /** Return the list of requested header for a new post
205 */
206 public function requestedHeaders()
207 {
208 return Array('From', 'Subject', 'dest' => 'Newsgroups', 'reply' => 'Followup-To', 'Organization');
209 }
210
211 /** Send the message
212 */
213 public function send(BananaMessage &$message)
214 {
215 $sources = $message->get(true);
216 return $this->post($sources);
217 }
218
219 /** Cancel the message
220 */
221 public function cancel(BananaMessage &$message)
222 {
223 $headers = Array('From' => Banana::$profile['From'],
0e25d15d 224 'Newsgroups' => Banana::$group,
7027794f 225 'Subject' => 'cmsg ' . $message->getHeaderValue('message-id'),
226 'Control' => 'cancel ' . $message->getHeaderValue('message-id'));
e9360b11 227 $headers = array_merge($headers, Banana::$msgedit_headers);
7027794f 228 $body = 'Message canceled with Banana';
229 $msg = BananaMessage::newMessage($headers, $body);
230 return $this->send($msg);
231 }
232
233 /** Return the protocole name
234 */
235 public function name()
236 {
237 return 'NNTP';
238 }
7027794f 239
e9360b11 240 /** Return the filename for the spool
241 */
242 public function filename()
243 {
244 $url = parse_url(Banana::$nntp_host);
245 $file = '';
246 if (isset($url['host'])) {
247 $file .= $url['host'] . '_';
248 }
249 if (isset($url['port'])) {
250 $file .= $url['port'] . '_';
251 }
252 $file .= Banana::$group;
253 return $file;
254 }
7027794f 255}
7027794f 256
257// vim:set et sw=4 sts=4 ts=4:
258?>