]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/publicqueuehandler.php
9ea9ee73a3290af300640b7a17a6547ecc2c7a44
[quix0rs-gnu-social.git] / lib / publicqueuehandler.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, StatusNet, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('STATUSNET') && !defined('LACONICA')) {
21     exit(1);
22 }
23
24 /**
25  * Queue handler for pushing new notices to public XMPP subscribers.
26  * @fixme correct this exception handling
27  */
28 class PublicQueueHandler extends QueueHandler
29 {
30
31     function transport()
32     {
33         return 'public';
34     }
35
36     function handle_notice($notice)
37     {
38         require_once(INSTALLDIR.'/lib/jabber.php');
39         try {
40             return jabber_public_notice($notice);
41         } catch (XMPPHP_Exception $e) {
42             $this->log(LOG_ERR, "Got an XMPPHP_Exception: " . $e->getMessage());
43             die($e->getMessage());
44         }
45         return true;
46     }
47 }