3 * StatusNet, the distributed open-source microblogging tool
9 * LICENCE: This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * @author Craig Andrews <candrews@integralblue.com>
25 * @copyright 2009-2010 StatusNet, Inc.
26 * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
27 * @maintainer Craig Andrews <candrews@integralblue.com>
28 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
29 * @link http://status.net/
32 if (!defined('STATUSNET')) {
36 class ImapManager extends IoManager
38 protected $conn = null;
40 function __construct($plugin)
42 $this->plugin = $plugin;
46 * Fetch the singleton manager for the current site.
47 * @return mixed ImapManager, or false if unneeded
49 public static function get()
51 throw new Exception(_m('ImapManager should be created using its constructor, not the using the static get method.'));
55 * Lists the IM connection socket to allow i/o master to wake
56 * when input comes in here as well as from the queue source.
58 * @return array of resources
60 public function getSockets()
66 * Tell the i/o master we need one instance for each supporting site
67 * being handled in this process.
69 public static function multiSite()
71 return IoManager::INSTANCE_PER_SITE;
75 * Initialize connection to server.
76 * @return boolean true on success
78 public function start($master)
80 if(parent::start($master))
82 $this->conn = $this->connect();
89 public function handleInput($socket)
91 $this->check_mailbox();
95 public function poll()
97 return $this->check_mailbox() > 0;
100 function pollInterval()
102 return $this->plugin->poll_frequency;
105 protected function connect()
107 $this->conn = imap_open($this->plugin->mailbox, $this->plugin->user, $this->plugin->password);
109 common_log(LOG_INFO, "Connected");
112 common_log(LOG_INFO, "Failed to connect: " . imap_last_error());
117 protected function check_mailbox()
119 imap_ping($this->conn);
120 $count = imap_num_msg($this->conn);
121 common_log(LOG_INFO, "Found $count messages");
123 $handler = new IMAPMailHandler();
124 for($i=1; $i <= $count; $i++)
126 $rawmessage = imap_fetchheader($this->conn, $count, FT_PREFETCHTEXT) . imap_body($this->conn, $i);
127 $handler->handle_message($rawmessage);
128 imap_delete($this->conn, $i);
130 imap_expunge($this->conn);
131 common_log(LOG_INFO, "Finished processing messages");