3b02c8626538118609f3120f9c738fea8cbe0385
2 /********************************************************************************
3 * banana/nntp.inc.php : NNTP protocole handler
4 * ------------------------
6 * This file is part of the banana distribution
7 * Copyright: See COPYING files that comes with this distribution
8 ********************************************************************************/
10 require_once dirname(__FILE__
) . '/banana.inc.php';
11 require_once dirname(__FILE__
) . '/message.inc.php';
12 require_once dirname(__FILE__
) . '/nntpcore.inc.php';
13 require_once dirname(__FILE__
) . '/protocoleinterface.inc.php';
15 class BananaNNTP
extends BananaNNTPCore
implements BananaProtocoleInterface
17 private $description = null
;
18 private $ingroup = null
;
21 private $boxes = null
;
23 /** Build a protocole handler plugged on the given box
25 public function __construct()
27 $url = parse_url(Banana
::$nntp_host);
28 if ($url['scheme'] == 'nntps' ||
$url['scheme'] == 'snntp') {
29 $url['host'] = 'ssl://' . $url['host'];
31 if (!isset($url['port'])) {
34 if (!isset($url['user'])) {
35 parent
::__construct($url['host'], $url['port']);
37 parent
::__construct($url['host'], $url['port'], 120, false
);
38 $this->authinfo($url['user'], $url['pass']);
42 /** Return the descript;ion of the current box
44 public function getDescription()
46 if ($this->description
) {
47 return $this->description
;
49 $descs = $this->xgtitle(Banana
::$group);
50 if (isset($descs[Banana
::$group])) {
51 $this->description
= $descs[Banana
::$group];
53 return $this->description
;
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)
61 public function getBoxList($mode = Banana
::BOXES_ALL
, $since = 0, $withstats = false
)
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);
68 $list = $this->listGroups();
69 if ($mode == Banana
::BOXES_SUB
) {
70 $sub = array_flip(Banana
::$profile['subscribe']);
71 $list = array_intersect_key($list, $sub);
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);
81 $this->boxes
[$group] = array('desc' => $desc);
83 $this->boxes
[$group] = array('desc' => null
);
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;
101 * @param id Id of the emssage (can be either an Message-id or a message index)
102 * @return A BananaMessage or null if the given id can't be retreived
104 public function &getMessage($id)
106 if (is_numeric($id) && Banana
::$group != $this->ingroup
) {
107 if (is_null(Banana
::$spool)) {
108 $this->group(Banana
::$group);
109 $this->ingroup
= Banana
::$group;
111 $id = array_search($id, Banana
::$spool->ids
);
114 $data = $this->article($id);
115 if ($data !== false
) {
116 return new BananaMessage($data);
121 /** Return the sources of the message
123 public function getMessageSource($id)
125 if (is_numeric($id) && Banana
::$group != $this->ingroup
) {
126 if (is_null(Banana
::$spool)) {
127 $this->group(Banana
::$group);
128 $this->ingroup
= Banana
::$group;
130 $id = array_search($id, Banana
::$spool->ids
);
133 $data = $this->article($id);
134 if ($data !== false
) {
135 return implode("\n", $data);
140 /** Return the indexes of the messages presents in the Box
141 * @return Array(number of messages, MSGNUM of the first message, MSGNUM of the last message)
143 public function getIndexes()
145 list($msgnum, $first, $last, $groupname) = $this->group(Banana
::$group);
146 $this->ingroup
= Banana
::$group;
147 return array($msgnum, $first, $last);
150 /** Return the message headers (in BananaMessage) for messages from firstid to lastid
151 * @return Array(id => array(headername => headervalue))
153 public function &getMessageHeaders($firstid, $lastid, array $msg_headers = array())
156 foreach ($msg_headers as $header) {
157 $headers = $this->xhdr($header, $firstid, $lastid);
158 array_walk($headers, array('BananaMimePart', 'decodeHeader'));
159 $header = strtolower($header);
160 if ($header == 'date') {
161 $headers = array_map('strtotime', $headers);
163 foreach ($headers as $id=>&$value) {
164 if (!isset($messages[$id])) {
165 $messages[$id] = array();
167 $messages[$id][$header] =& $value;
173 /** Add protocole specific data in the spool
175 public function updateSpool(array &$messages)
180 /** Return the indexes of the new messages since the give date
181 * @return Array(MSGNUM of new messages)
183 public function getNewIndexes($since)
185 return $this->newnews(Banana
::$group, $since);
188 /** Return true if can post
190 public function canSend()
192 return $this->isValid();
195 /** Return true if can cancel
197 public function canCancel()
199 return $this->isValid();
202 /** Return the list of requested header for a new post
204 public function requestedHeaders()
206 return Array('From', 'Subject', 'dest' => 'Newsgroups', 'reply' => 'Followup-To', 'Organization');
211 public function send(BananaMessage
&$message)
213 $sources = $message->get(true
);
214 return $this->post($sources);
217 /** Cancel the message
219 public function cancel(BananaMessage
&$message)
221 $headers = Array('From' => Banana
::$profile['From'],
222 'Newsgroups' => Banana
::$group,
223 'Subject' => 'cmsg ' . $message->getHeaderValue('message-id'),
224 'Control' => 'cancel ' . $message->getHeaderValue('message-id'));
225 $headers = array_merge($headers, Banana
::$msgedit_headers);
226 $body = 'Message canceled with Banana';
227 $msg = BananaMessage
::newMessage($headers, $body);
228 return $this->send($msg);
231 /** Return the protocole name
233 public function name()
238 /** Return the filename for the spool
240 public function filename()
242 $url = parse_url(Banana
::$nntp_host);
244 if (isset($url['host'])) {
245 $file .= $url['host'] . '_';
247 if (isset($url['port'])) {
248 $file .= $url['port'] . '_';
250 $file .= Banana
::$group;
255 // vim:set et sw=4 sts=4 ts=4: