2010-10-01 04:41:22 +02:00
|
|
|
<?php
|
2020-02-09 16:34:23 +01:00
|
|
|
/**
|
2022-01-02 08:27:47 +01:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 16:34:23 +01: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-10-01 04:41:22 +02:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-10-29 22:20:46 +01:00
|
|
|
use Friendica\Core\Logger;
|
2018-08-11 22:40:44 +02:00
|
|
|
use Friendica\Core\Protocol;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-30 03:50:15 +01:00
|
|
|
use Friendica\DI;
|
2018-07-25 04:53:46 +02:00
|
|
|
use Friendica\Model\Contact;
|
2018-03-13 07:21:44 +01:00
|
|
|
use Friendica\Protocol\OStatus;
|
2018-11-08 16:14:37 +01:00
|
|
|
use Friendica\Util\Strings;
|
2019-07-31 00:26:01 +02:00
|
|
|
use Friendica\Util\Network;
|
2021-03-10 23:31:33 +01:00
|
|
|
use Friendica\Model\GServer;
|
|
|
|
use Friendica\Model\Post;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2018-03-13 22:03:56 +01:00
|
|
|
function hub_return($valid, $body)
|
|
|
|
{
|
2018-03-13 07:21:44 +01:00
|
|
|
if ($valid) {
|
2010-10-01 04:41:22 +02:00
|
|
|
echo $body;
|
2018-03-13 07:21:44 +01:00
|
|
|
} else {
|
2019-05-02 05:16:10 +02:00
|
|
|
throw new \Friendica\Network\HTTPException\NotFoundException();
|
2010-10-01 04:41:22 +02:00
|
|
|
}
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2010-10-01 04:41:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// when receiving an XML feed, always return OK
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2018-03-13 22:03:56 +01:00
|
|
|
function hub_post_return()
|
|
|
|
{
|
2019-05-02 05:16:10 +02:00
|
|
|
throw new \Friendica\Network\HTTPException\OKException();
|
2016-02-05 21:52:39 +01:00
|
|
|
}
|
2010-10-01 04:41:22 +02:00
|
|
|
|
2018-03-13 22:03:56 +01:00
|
|
|
function pubsub_init(App $a)
|
|
|
|
{
|
2021-11-05 20:59:18 +01:00
|
|
|
$nick = ((DI::args()->getArgc() > 1) ? trim(DI::args()->getArgv()[1]) : '');
|
|
|
|
$contact_id = ((DI::args()->getArgc() > 2) ? intval(DI::args()->getArgv()[2]) : 0 );
|
2010-10-01 04:41:22 +02:00
|
|
|
|
2022-01-03 19:30:27 +01:00
|
|
|
if (DI::args()->getMethod() === App\Router::GET) {
|
2021-11-05 20:59:18 +01:00
|
|
|
$hub_mode = trim($_GET['hub_mode'] ?? '');
|
|
|
|
$hub_topic = trim($_GET['hub_topic'] ?? '');
|
|
|
|
$hub_challenge = trim($_GET['hub_challenge'] ?? '');
|
|
|
|
$hub_verify = trim($_GET['hub_verify_token'] ?? '');
|
2010-10-01 11:28:06 +02:00
|
|
|
|
2021-10-20 20:53:52 +02:00
|
|
|
Logger::notice('Subscription from ' . $_SERVER['REMOTE_ADDR'] . ' Mode: ' . $hub_mode . ' Nick: ' . $nick);
|
|
|
|
Logger::debug('Data: ', ['get' => $_GET]);
|
2010-10-01 04:41:22 +02:00
|
|
|
|
|
|
|
$subscribe = (($hub_mode === 'subscribe') ? 1 : 0);
|
|
|
|
|
2018-07-20 14:19:26 +02:00
|
|
|
$owner = DBA::selectFirst('user', ['uid'], ['nickname' => $nick, 'account_expired' => false, 'account_removed' => false]);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($owner)) {
|
2021-10-20 20:53:52 +02:00
|
|
|
Logger::notice('Local account not found: ' . $nick);
|
2010-10-01 04:41:22 +02:00
|
|
|
hub_return(false, '');
|
2012-06-08 10:15:53 +02:00
|
|
|
}
|
2010-10-01 04:41:22 +02:00
|
|
|
|
2018-03-13 22:03:56 +01:00
|
|
|
$condition = ['uid' => $owner['uid'], 'id' => $contact_id, 'blocked' => false, 'pending' => false];
|
2010-10-01 04:41:22 +02:00
|
|
|
|
2018-03-13 08:16:31 +01:00
|
|
|
if (!empty($hub_verify)) {
|
2018-03-13 22:03:56 +01:00
|
|
|
$condition['hub-verify'] = $hub_verify;
|
2018-03-13 08:16:31 +01:00
|
|
|
}
|
2010-10-01 04:41:22 +02:00
|
|
|
|
2018-07-20 14:19:26 +02:00
|
|
|
$contact = DBA::selectFirst('contact', ['id', 'poll'], $condition);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($contact)) {
|
2021-10-20 20:53:52 +02:00
|
|
|
Logger::notice('Contact ' . $contact_id . ' not found.');
|
2010-10-01 04:41:22 +02:00
|
|
|
hub_return(false, '');
|
2012-06-08 10:15:53 +02:00
|
|
|
}
|
|
|
|
|
2018-11-08 16:46:50 +01:00
|
|
|
if (!empty($hub_topic) && !Strings::compareLink($hub_topic, $contact['poll'])) {
|
2021-10-20 20:53:52 +02:00
|
|
|
Logger::notice('Hub topic ' . $hub_topic . ' != ' . $contact['poll']);
|
2018-03-13 22:03:56 +01:00
|
|
|
hub_return(false, '');
|
2018-03-13 07:21:44 +01:00
|
|
|
}
|
2010-10-01 04:41:22 +02:00
|
|
|
|
2017-01-09 13:14:55 +01:00
|
|
|
// We must initiate an unsubscribe request with a verify_token.
|
2010-10-01 04:41:22 +02:00
|
|
|
// Don't allow outsiders to unsubscribe us.
|
|
|
|
|
2018-03-13 22:03:56 +01:00
|
|
|
if (($hub_mode === 'unsubscribe') && empty($hub_verify)) {
|
2021-10-20 20:53:52 +02:00
|
|
|
Logger::notice('Bogus unsubscribe');
|
2018-03-13 22:03:56 +01:00
|
|
|
hub_return(false, '');
|
2011-10-05 03:53:56 +02:00
|
|
|
}
|
2010-10-01 04:41:22 +02:00
|
|
|
|
2018-03-13 08:16:31 +01:00
|
|
|
if (!empty($hub_mode)) {
|
2021-09-10 20:21:19 +02:00
|
|
|
Contact::update(['subhub' => $subscribe], ['id' => $contact['id']]);
|
2021-10-20 20:53:52 +02:00
|
|
|
Logger::notice($hub_mode . ' success for contact ' . $contact_id . '.');
|
2018-03-13 07:21:44 +01:00
|
|
|
}
|
2014-03-09 09:19:14 +01:00
|
|
|
hub_return(true, $hub_challenge);
|
2010-10-01 04:41:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-13 22:03:56 +01:00
|
|
|
function pubsub_post(App $a)
|
|
|
|
{
|
2019-07-31 00:26:01 +02:00
|
|
|
$xml = Network::postdata();
|
2010-10-01 04:41:22 +02:00
|
|
|
|
2021-10-25 21:27:21 +02:00
|
|
|
Logger::info('Feed arrived from ' . $_SERVER['REMOTE_ADDR'] . ' for ' . DI::args()->getCommand() . ' with user-agent: ' . $_SERVER['HTTP_USER_AGENT']);
|
2021-10-20 20:53:52 +02:00
|
|
|
Logger::debug('Data: ' . $xml);
|
2010-10-01 11:28:06 +02:00
|
|
|
|
2021-11-05 20:59:18 +01:00
|
|
|
$nick = ((DI::args()->getArgc() > 1) ? trim(DI::args()->getArgv()[1]) : '');
|
|
|
|
$contact_id = ((DI::args()->getArgc() > 2) ? intval(DI::args()->getArgv()[2]) : 0 );
|
2010-10-01 04:41:22 +02:00
|
|
|
|
2018-07-20 14:19:26 +02:00
|
|
|
$importer = DBA::selectFirst('user', [], ['nickname' => $nick, 'account_expired' => false, 'account_removed' => false]);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($importer)) {
|
2010-10-01 04:41:22 +02:00
|
|
|
hub_post_return();
|
2016-12-20 10:10:33 +01:00
|
|
|
}
|
2010-10-01 04:41:22 +02:00
|
|
|
|
2018-03-13 22:03:56 +01:00
|
|
|
$condition = ['id' => $contact_id, 'uid' => $importer['uid'], 'subhub' => true, 'blocked' => false];
|
2018-07-20 14:19:26 +02:00
|
|
|
$contact = DBA::selectFirst('contact', [], $condition);
|
2010-10-01 04:41:22 +02:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($contact)) {
|
2018-03-13 07:21:44 +01:00
|
|
|
$author = OStatus::salmonAuthor($xml, $importer);
|
|
|
|
if (!empty($author['contact-id'])) {
|
2018-03-13 22:03:56 +01:00
|
|
|
$condition = ['id' => $author['contact-id'], 'uid' => $importer['uid'], 'subhub' => true, 'blocked' => false];
|
2018-07-20 14:19:26 +02:00
|
|
|
$contact = DBA::selectFirst('contact', [], $condition);
|
2021-10-20 20:53:52 +02:00
|
|
|
Logger::notice('No record for ' . $nick .' with contact id ' . $contact_id . ' - using '.$author['contact-id'].' instead.');
|
2018-03-13 22:03:56 +01:00
|
|
|
}
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($contact)) {
|
2021-10-20 20:53:52 +02:00
|
|
|
Logger::notice('Contact ' . $author["author-link"] . ' (' . $contact_id . ') for user ' . $nick . " wasn't found - ignored. XML: " . $xml);
|
2018-03-13 22:03:56 +01:00
|
|
|
hub_post_return();
|
2018-03-13 07:21:44 +01:00
|
|
|
}
|
2011-02-10 04:56:40 +01:00
|
|
|
}
|
2010-10-01 04:41:22 +02:00
|
|
|
|
2021-03-10 23:31:33 +01:00
|
|
|
if (!empty($contact['gsid'])) {
|
|
|
|
GServer::setProtocol($contact['gsid'], Post\DeliveryData::OSTATUS);
|
|
|
|
}
|
|
|
|
|
2018-08-11 22:40:44 +02:00
|
|
|
if (!in_array($contact['rel'], [Contact::SHARING, Contact::FRIEND]) && ($contact['network'] != Protocol::FEED)) {
|
2021-10-20 20:53:52 +02:00
|
|
|
Logger::notice('Contact ' . $contact['id'] . ' is not expected to share with us - ignored.');
|
2011-08-24 10:41:27 +02:00
|
|
|
hub_post_return();
|
2018-03-13 07:21:44 +01:00
|
|
|
}
|
2010-10-01 11:28:06 +02:00
|
|
|
|
2021-01-09 13:59:30 +01:00
|
|
|
// We only import feeds from OStatus here
|
|
|
|
if ($contact['network'] != Protocol::OSTATUS) {
|
|
|
|
Logger::warning('Unexpected network', ['contact' => $contact]);
|
2018-03-13 22:03:56 +01:00
|
|
|
hub_post_return();
|
|
|
|
}
|
2010-10-01 04:41:22 +02:00
|
|
|
|
2021-10-25 21:27:21 +02:00
|
|
|
Logger::info('Import item for ' . $nick . ' from ' . $contact['nick'] . ' (' . $contact['id'] . ')');
|
2018-03-13 22:03:56 +01:00
|
|
|
$feedhub = '';
|
2021-01-09 13:59:30 +01:00
|
|
|
OStatus::import($xml, $importer, $contact, $feedhub);
|
2010-11-12 05:32:20 +01:00
|
|
|
|
2010-10-01 05:24:03 +02:00
|
|
|
hub_post_return();
|
2010-10-01 04:41:22 +02:00
|
|
|
}
|