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