2010-09-30 22:41:22 -04:00
|
|
|
<?php
|
2020-02-09 10:34:23 -05:00
|
|
|
/**
|
2022-01-02 02:27:47 -05:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 10:34:23 -05:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* 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 <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2010-09-30 22:41:22 -04:00
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2018-10-29 17:20:46 -04:00
|
|
|
use Friendica\Core\Logger;
|
2018-08-11 16:40:44 -04:00
|
|
|
use Friendica\Core\Protocol;
|
2022-05-17 22:13:54 -04:00
|
|
|
use Friendica\Core\System;
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-29 21:50:15 -05:00
|
|
|
use Friendica\DI;
|
2018-07-24 22:53:46 -04:00
|
|
|
use Friendica\Model\Contact;
|
2018-03-13 02:21:44 -04:00
|
|
|
use Friendica\Protocol\OStatus;
|
2018-11-08 10:14:37 -05:00
|
|
|
use Friendica\Util\Strings;
|
2019-07-30 18:26:01 -04:00
|
|
|
use Friendica\Util\Network;
|
2021-03-10 17:31:33 -05:00
|
|
|
use Friendica\Model\GServer;
|
|
|
|
use Friendica\Model\Post;
|
2017-04-30 00:07:00 -04:00
|
|
|
|
2018-03-13 17:03:56 -04:00
|
|
|
function hub_return($valid, $body)
|
|
|
|
{
|
2018-03-13 02:21:44 -04:00
|
|
|
if ($valid) {
|
2010-09-30 22:41:22 -04:00
|
|
|
echo $body;
|
2018-03-13 02:21:44 -04:00
|
|
|
} else {
|
2019-05-01 23:16:10 -04:00
|
|
|
throw new \Friendica\Network\HTTPException\NotFoundException();
|
2010-09-30 22:41:22 -04:00
|
|
|
}
|
2022-05-17 22:13:54 -04:00
|
|
|
System::exit();
|
2010-09-30 22:41:22 -04:00
|
|
|
}
|
|
|
|
|
2018-03-13 17:03:56 -04:00
|
|
|
function pubsub_init(App $a)
|
|
|
|
{
|
2010-09-30 22:41:22 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-03-13 17:03:56 -04:00
|
|
|
function pubsub_post(App $a)
|
|
|
|
{
|
2010-11-11 23:32:20 -05:00
|
|
|
|
2010-09-30 22:41:22 -04:00
|
|
|
}
|