2008-08-28 05:54:07 +09:00
|
|
|
<?php
|
|
|
|
/*
|
2009-08-26 07:14:12 +09:00
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
2009-08-26 07:12:20 +09:00
|
|
|
* Copyright (C) 2008, 2009, StatusNet, Inc.
|
2008-08-28 05:54:07 +09:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2019-08-08 06:47:17 +09:00
|
|
|
defined('GNUSOCIAL') || die();
|
2008-08-28 05:54:07 +09:00
|
|
|
|
2010-01-13 12:57:15 +09:00
|
|
|
/**
|
|
|
|
* Queue handler for pushing new notices to local subscribers using SMS.
|
|
|
|
*/
|
2008-12-24 04:49:23 +09:00
|
|
|
class SmsQueueHandler extends QueueHandler
|
|
|
|
{
|
2008-12-24 04:33:23 +09:00
|
|
|
function transport()
|
|
|
|
{
|
2008-12-24 04:19:07 +09:00
|
|
|
return 'sms';
|
|
|
|
}
|
2008-08-28 09:30:13 +09:00
|
|
|
|
2019-08-09 08:15:38 +09:00
|
|
|
function handle($notice) : bool
|
2008-12-24 04:33:23 +09:00
|
|
|
{
|
2019-08-08 06:47:17 +09:00
|
|
|
if (!($notice instanceof Notice)) {
|
|
|
|
common_log(LOG_ERR, "Got a bogus notice, not broadcasting");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-08-23 21:36:02 +09:00
|
|
|
require_once INSTALLDIR . '/lib/util/mail.php';
|
2008-12-24 04:19:07 +09:00
|
|
|
return mail_broadcast_notice_sms($notice);
|
|
|
|
}
|
2008-08-28 05:54:07 +09:00
|
|
|
}
|