| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  | <?php | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  |  * StatusNet - the distributed open-source microblogging tool | 
					
						
							|  |  |  |  * Copyright (C) 2008, 2009, StatusNet, Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU Affero General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |  * along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * MSN background connection manager for MSN-using queue handlers, | 
					
						
							|  |  |  |  * allowing them to send outgoing messages on the right connection. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Input is handled during socket select loop, keepalive pings during idle. | 
					
						
							|  |  |  |  * Any incoming messages will be handled. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * In a multi-site queuedaemon.php run, one connection will be instantiated | 
					
						
							|  |  |  |  * for each site being handled by the current process that has MSN enabled. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | class MsnManager extends ImManager { | 
					
						
							|  |  |  |     public $conn = null; | 
					
						
							| 
									
										
										
										
											2010-08-09 07:05:58 -07:00
										 |  |  |     protected $lastPing = null; | 
					
						
							|  |  |  |     protected $pingInterval; | 
					
						
							| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Initialise connection to server. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return boolean true on success | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function start($master) { | 
					
						
							|  |  |  |         if (parent::start($master)) { | 
					
						
							| 
									
										
										
										
											2010-08-09 07:03:54 -07:00
										 |  |  |             $this->requeue_waiting_messages(); | 
					
						
							| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  |             $this->connect(); | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |     * Return any open sockets that the run loop should listen | 
					
						
							|  |  |  |     * for input on. | 
					
						
							|  |  |  |     * | 
					
						
							|  |  |  |     * @return array Array of socket resources | 
					
						
							|  |  |  |     */ | 
					
						
							|  |  |  |     public function getSockets() { | 
					
						
							|  |  |  |         $this->connect(); | 
					
						
							|  |  |  |         if ($this->conn) { | 
					
						
							|  |  |  |             return $this->conn->getSockets(); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             return array(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Idle processing for io manager's execution loop. | 
					
						
							|  |  |  |      * Send keepalive pings to server. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function idle($timeout = 0) { | 
					
						
							| 
									
										
										
										
											2010-08-09 07:05:58 -07:00
										 |  |  |         if (empty($this->lastPing) || time() - $this->lastPing > $this->pingInterval) { | 
					
						
							| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  |             $this->send_ping(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-26 11:21:11 -07:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Message pump is triggered on socket input, so we only need an idle() | 
					
						
							|  |  |  |      * call often enough to trigger our outgoing pings. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2010-08-09 07:05:58 -07:00
										 |  |  |     public function timeout() { | 
					
						
							| 
									
										
										
										
											2010-07-26 11:21:11 -07:00
										 |  |  |         return $this->pingInterval; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Process MSN events that have come in over the wire. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param resource $socket Socket ready | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function handleInput($socket) { | 
					
						
							|  |  |  |         common_log(LOG_DEBUG, 'Servicing the MSN queue.'); | 
					
						
							|  |  |  |         $this->stats('msn_process'); | 
					
						
							|  |  |  |         $this->conn->receive(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |     * Initiate connection | 
					
						
							|  |  |  |     * | 
					
						
							|  |  |  |     * @return void | 
					
						
							|  |  |  |     */ | 
					
						
							| 
									
										
										
										
											2010-06-16 18:05:29 +01:00
										 |  |  |     public function connect() { | 
					
						
							| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  |         if (!$this->conn) { | 
					
						
							| 
									
										
										
										
											2010-06-15 20:51:04 +01:00
										 |  |  |             $this->conn = new MSN( | 
					
						
							|  |  |  |                 array( | 
					
						
							|  |  |  |                     'user' => $this->plugin->user, | 
					
						
							|  |  |  |                     'password' => $this->plugin->password, | 
					
						
							|  |  |  |                     'alias' => $this->plugin->nickname, | 
					
						
							| 
									
										
										
										
											2011-04-25 19:27:18 +02:00
										 |  |  |                     // TRANS: MSN bot status message.
 | 
					
						
							|  |  |  |                     'psm' => _m('Send me a message to post a notice'), | 
					
						
							| 
									
										
										
										
											2010-08-11 10:36:19 -07:00
										 |  |  |                     'debug' => false | 
					
						
							| 
									
										
										
										
											2010-06-15 20:51:04 +01:00
										 |  |  |                 ) | 
					
						
							|  |  |  |             ); | 
					
						
							| 
									
										
										
										
											2010-06-26 12:55:32 -07:00
										 |  |  |             $this->conn->registerHandler('IMin', array($this, 'handle_msn_message')); | 
					
						
							| 
									
										
										
										
											2010-07-30 17:12:35 -07:00
										 |  |  |             $this->conn->registerHandler('SessionReady', array($this, 'handle_session_ready')); | 
					
						
							| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  |             $this->conn->registerHandler('Pong', array($this, 'update_ping_time')); | 
					
						
							|  |  |  |             $this->conn->registerHandler('ConnectFailed', array($this, 'handle_connect_failed')); | 
					
						
							|  |  |  |             $this->conn->registerHandler('Reconnect', array($this, 'handle_reconnect')); | 
					
						
							|  |  |  |             $this->conn->signon(); | 
					
						
							| 
									
										
										
										
											2010-08-09 07:05:58 -07:00
										 |  |  |             $this->lastPing = time(); | 
					
						
							| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |         return $this->conn; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |     * Called by the idle process to send a ping | 
					
						
							|  |  |  |     * when necessary | 
					
						
							|  |  |  |     * | 
					
						
							|  |  |  |     * @return void | 
					
						
							|  |  |  |     */ | 
					
						
							| 
									
										
										
										
											2010-08-09 07:05:58 -07:00
										 |  |  |     protected function send_ping() { | 
					
						
							| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  |         $this->connect(); | 
					
						
							|  |  |  |         if (!$this->conn) { | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->conn->sendPing(); | 
					
						
							| 
									
										
										
										
											2010-08-09 07:05:58 -07:00
										 |  |  |         $this->lastPing = time(); | 
					
						
							| 
									
										
										
										
											2010-06-15 20:51:04 +01:00
										 |  |  |         $this->pingInterval = 50; | 
					
						
							| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Update the time till the next ping | 
					
						
							| 
									
										
										
										
											2010-07-30 17:12:35 -07:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  |      * @param $data Time till next ping | 
					
						
							| 
									
										
										
										
											2010-06-16 14:15:08 +01:00
										 |  |  |      * @return void | 
					
						
							| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2010-06-26 12:55:32 -07:00
										 |  |  |     public function update_ping_time($data) { | 
					
						
							| 
									
										
										
										
											2010-07-26 11:14:18 -07:00
										 |  |  |         $this->pingInterval = $data; | 
					
						
							| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |     * Called via a callback when a message is received | 
					
						
							|  |  |  |     * | 
					
						
							|  |  |  |     * Passes it back to the queuing system | 
					
						
							|  |  |  |     * | 
					
						
							|  |  |  |     * @param array $data Data | 
					
						
							| 
									
										
										
										
											2010-06-16 20:35:46 +01:00
										 |  |  |     * @return boolean | 
					
						
							| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  |     */ | 
					
						
							| 
									
										
										
										
											2010-06-26 12:55:32 -07:00
										 |  |  |     public function handle_msn_message($data) { | 
					
						
							| 
									
										
										
										
											2010-08-31 00:05:40 -04:00
										 |  |  |         $this->plugin->enqueueIncomingRaw($data); | 
					
						
							| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-30 17:12:35 -07:00
										 |  |  |     /** | 
					
						
							|  |  |  |     * Called via a callback when a session becomes ready | 
					
						
							|  |  |  |     * | 
					
						
							|  |  |  |     * @param array $data Data | 
					
						
							|  |  |  |     */ | 
					
						
							|  |  |  |     public function handle_session_ready($data) { | 
					
						
							| 
									
										
										
										
											2010-08-04 16:14:25 -07:00
										 |  |  |         $sessionFailed = false; | 
					
						
							| 
									
										
										
										
											2010-07-31 10:47:58 -07:00
										 |  |  |         $wm = Msn_waiting_message::top($data['to']); | 
					
						
							|  |  |  |         while ($wm != NULL) { | 
					
						
							| 
									
										
										
										
											2010-08-04 16:14:25 -07:00
										 |  |  |             if ($sessionFailed) { | 
					
						
							| 
									
										
										
										
											2010-08-31 00:01:55 -04:00
										 |  |  |                 $this->plugin->sendMessage($wm->screenname, $wm->message); | 
					
						
							| 
									
										
										
										
											2010-08-04 16:14:25 -07:00
										 |  |  |                 $sessionFailed = true; | 
					
						
							|  |  |  |             } elseif (!$this->conn->sendMessage($wm->screenname, $wm->message, $ignore)) { | 
					
						
							| 
									
										
										
										
											2010-08-31 00:01:55 -04:00
										 |  |  |                 $this->plugin->sendMessage($wm->screenname, $wm->message); | 
					
						
							| 
									
										
										
										
											2010-07-30 17:12:35 -07:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-07-31 10:47:58 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-04 16:14:25 -07:00
										 |  |  |             $wm->delete(); | 
					
						
							| 
									
										
										
										
											2010-07-31 10:47:58 -07:00
										 |  |  |             $wm = Msn_waiting_message::top($data['to']); | 
					
						
							| 
									
										
										
										
											2010-07-30 17:12:35 -07:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-09 07:03:54 -07:00
										 |  |  |     /** | 
					
						
							|  |  |  |     * Requeue messages from the waiting table so we try | 
					
						
							|  |  |  |     * to send them again | 
					
						
							|  |  |  |     * | 
					
						
							|  |  |  |     * @return void | 
					
						
							|  |  |  |     */ | 
					
						
							|  |  |  |     protected function requeue_waiting_messages() { | 
					
						
							| 
									
										
										
										
											2010-08-18 10:27:03 -07:00
										 |  |  |         $wm = Msn_waiting_message::top(); | 
					
						
							| 
									
										
										
										
											2010-08-09 07:03:54 -07:00
										 |  |  |         while ($wm != NULL) { | 
					
						
							| 
									
										
										
										
											2010-08-31 00:01:55 -04:00
										 |  |  |             $this->plugin->sendMessage($wm->screenname, $wm->message); | 
					
						
							| 
									
										
										
										
											2010-08-09 07:03:54 -07:00
										 |  |  |             $wm->delete(); | 
					
						
							| 
									
										
										
										
											2010-08-18 10:27:03 -07:00
										 |  |  |             $wm = Msn_waiting_message::top(); | 
					
						
							| 
									
										
										
										
											2010-08-09 07:03:54 -07:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  |     /** | 
					
						
							|  |  |  |     * Called by callback to log failure during connect | 
					
						
							|  |  |  |     * | 
					
						
							| 
									
										
										
										
											2010-08-18 14:07:40 -04:00
										 |  |  |     * @param string $message error message reported | 
					
						
							| 
									
										
										
										
											2010-06-16 00:04:59 +01:00
										 |  |  |     * @return void | 
					
						
							| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  |     */ | 
					
						
							| 
									
										
										
										
											2010-08-18 14:07:40 -04:00
										 |  |  |     public function handle_connect_failed($message) { | 
					
						
							|  |  |  |         common_log(LOG_NOTICE, 'MSN connect failed, retrying: ' . $message); | 
					
						
							| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |     * Called by callback to log reconnection | 
					
						
							|  |  |  |     * | 
					
						
							|  |  |  |     * @param void $data Not used (there to keep callback happy) | 
					
						
							| 
									
										
										
										
											2010-06-16 00:04:59 +01:00
										 |  |  |     * @return void | 
					
						
							| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  |     */ | 
					
						
							| 
									
										
										
										
											2010-06-26 12:55:32 -07:00
										 |  |  |     public function handle_reconnect($data) { | 
					
						
							| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  |         common_log(LOG_NOTICE, 'MSN reconnecting'); | 
					
						
							| 
									
										
										
										
											2010-08-09 07:03:54 -07:00
										 |  |  |         // Requeue messages waiting in the DB
 | 
					
						
							|  |  |  |         $this->requeue_waiting_messages(); | 
					
						
							| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-07-30 17:12:35 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |     * Enters a message into the database for sending via a callback | 
					
						
							|  |  |  |     * when the session is established | 
					
						
							|  |  |  |     * | 
					
						
							|  |  |  |     * @param string $to Intended recipient | 
					
						
							|  |  |  |     * @param string $message Message | 
					
						
							|  |  |  |     */ | 
					
						
							| 
									
										
										
										
											2010-08-09 07:05:58 -07:00
										 |  |  |     protected function enqueue_waiting_message($to, $message) { | 
					
						
							| 
									
										
										
										
											2010-07-30 17:12:35 -07:00
										 |  |  |         $wm = new Msn_waiting_message(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $wm->screenname = $to; | 
					
						
							|  |  |  |         $wm->message    = $message; | 
					
						
							|  |  |  |         $wm->created    = common_sql_now(); | 
					
						
							|  |  |  |         $result         = $wm->insert(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!$result) { | 
					
						
							|  |  |  |             common_log_db_error($wm, 'INSERT', __FILE__); | 
					
						
							| 
									
										
										
										
											2011-04-25 19:27:18 +02:00
										 |  |  |             // TRANS: Server exception thrown when a message to be sent through MSN cannot be added to the database queue.
 | 
					
						
							|  |  |  |             throw new ServerException(_m('Database error inserting queue item.')); | 
					
						
							| 
									
										
										
										
											2010-07-30 17:12:35 -07:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-16 14:15:08 +01:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Send a message using the daemon | 
					
						
							| 
									
										
										
										
											2010-07-30 17:12:35 -07:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @param $data Message data | 
					
						
							| 
									
										
										
										
											2010-06-16 14:15:08 +01:00
										 |  |  |      * @return boolean true on success | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2010-06-16 18:05:29 +01:00
										 |  |  |     public function send_raw_message($data) { | 
					
						
							| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  |         $this->connect(); | 
					
						
							|  |  |  |         if (!$this->conn) { | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-30 17:12:35 -07:00
										 |  |  |         $waitForSession = false; | 
					
						
							|  |  |  |         if (!$this->conn->sendMessage($data['to'], $data['message'], $waitForSession)) { | 
					
						
							|  |  |  |             if ($waitForSession) { | 
					
						
							|  |  |  |                 $this->enqueue_waiting_message($data['to'], $data['message']); | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 return false; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-07-30 17:12:35 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  |         // Sending a command updates the time till next ping
 | 
					
						
							| 
									
										
										
										
											2010-08-09 07:05:58 -07:00
										 |  |  |         $this->lastPing = time(); | 
					
						
							| 
									
										
										
										
											2010-06-14 19:53:43 +01:00
										 |  |  |         $this->pingInterval = 50; | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |