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)
107 if (is_numeric($id) && Banana
::$group != $this->ingroup
) {
108 if (is_null(Banana
::$spool)) {
109 $this->group(Banana
::$group);
110 $this->ingroup
= Banana
::$group;
112 $id = array_search($id, Banana
::$spool->ids
);
115 $data = $this->article($id);
116 if ($data !== false
) {
117 $message = new BananaMessage($data);
122 /** Return the sources of the message
124 public function getMessageSource($id)
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;
131 $id = array_search($id, Banana
::$spool->ids
);
134 $data = $this->article($id);
135 if ($data !== false
) {
136 return implode("\n", $data);
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)
145 public function getIndexes()
147 list($msgnum, $first, $last, $groupname) = $this->group(Banana
::$group);
148 $this->ingroup
= Banana
::$group;
149 return array($msgnum, $first, $last);
152 /** Return the message headers (in BananaMessage) for messages from firstid to lastid
153 * @return Array(id => array(headername => headervalue))
155 public function &getMessageHeaders($firstid, $lastid, array $msg_headers = 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);
165 foreach ($headers as $id=>&$value) {
166 if (!isset($messages[$id])) {
167 $messages[$id] = array();
169 $messages[$id][$header] =& $value;
175 /** Add protocole specific data in the spool
177 public function updateSpool(array &$messages)
182 /** Return the indexes of the new messages since the give date
183 * @return Array(MSGNUM of new messages)
185 public function getNewIndexes($since)
187 return $this->newnews(Banana
::$group, $since);
190 /** Return true if can post
192 public function canSend()
194 return $this->isValid();
197 /** Return true if can cancel
199 public function canCancel()
201 return $this->isValid();
204 /** Return the list of requested header for a new post
206 public function requestedHeaders()
208 return Array('From', 'Subject', 'dest' => 'Newsgroups', 'reply' => 'Followup-To', 'Organization');
213 public function send(BananaMessage
&$message)
215 $sources = $message->get(true
);
216 return $this->post($sources);
219 /** Cancel the message
221 public function cancel(BananaMessage
&$message)
223 $headers = Array('From' => Banana
::$profile['From'],
224 'Newsgroups' => Banana
::$group,
225 'Subject' => 'cmsg ' . $message->getHeaderValue('message-id'),
226 'Control' => 'cancel ' . $message->getHeaderValue('message-id'));
227 $headers = array_merge($headers, Banana
::$msgedit_headers);
228 $body = 'Message canceled with Banana';
229 $msg = BananaMessage
::newMessage($headers, $body);
230 return $this->send($msg);
233 /** Return the protocole name
235 public function name()
240 /** Return the filename for the spool
242 public function filename()
244 $url = parse_url(Banana
::$nntp_host);
246 if (isset($url['host'])) {
247 $file .= $url['host'] . '_';
249 if (isset($url['port'])) {
250 $file .= $url['port'] . '_';
252 $file .= Banana
::$group;
257 // vim:set et sw=4 sts=4 ts=4 enc=utf-8: