2010-10-01 04:41:22 +02:00
|
|
|
<?php
|
|
|
|
|
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;
|
2018-12-02 20:33:01 +01:00
|
|
|
use Friendica\Core\System;
|
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)
|
|
|
|
{
|
2018-11-09 19:29:42 +01:00
|
|
|
$nick = (($a->argc > 1) ? Strings::escapeTags(trim($a->argv[1])) : '');
|
2010-11-08 06:07:47 +01:00
|
|
|
$contact_id = (($a->argc > 2) ? intval($a->argv[2]) : 0 );
|
2010-10-01 04:41:22 +02:00
|
|
|
|
2018-03-13 07:21:44 +01:00
|
|
|
if ($_SERVER['REQUEST_METHOD'] === 'GET') {
|
2019-10-15 15:01:17 +02:00
|
|
|
$hub_mode = Strings::escapeTags(trim($_GET['hub_mode'] ?? ''));
|
|
|
|
$hub_topic = Strings::escapeTags(trim($_GET['hub_topic'] ?? ''));
|
|
|
|
$hub_challenge = Strings::escapeTags(trim($_GET['hub_challenge'] ?? ''));
|
|
|
|
$hub_verify = Strings::escapeTags(trim($_GET['hub_verify_token'] ?? ''));
|
2010-10-01 11:28:06 +02:00
|
|
|
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log('Subscription from ' . $_SERVER['REMOTE_ADDR'] . ' Mode: ' . $hub_mode . ' Nick: ' . $nick);
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log('Data: ' . print_r($_GET,true), Logger::DATA);
|
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)) {
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log('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)) {
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log('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'])) {
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log('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)) {
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log('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)) {
|
2018-07-20 14:19:26 +02:00
|
|
|
DBA::update('contact', ['subhub' => $subscribe], ['id' => $contact['id']]);
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log($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
|
|
|
|
2019-12-16 01:33:13 +01:00
|
|
|
Logger::log('Feed arrived from ' . $_SERVER['REMOTE_ADDR'] . ' for ' . DI::args()->getCommand() . ' with user-agent: ' . $_SERVER['HTTP_USER_AGENT']);
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log('Data: ' . $xml, Logger::DATA);
|
2010-10-01 11:28:06 +02:00
|
|
|
|
2018-11-09 19:29:42 +01:00
|
|
|
$nick = (($a->argc > 1) ? Strings::escapeTags(trim($a->argv[1])) : '');
|
2010-11-08 06:07:47 +01:00
|
|
|
$contact_id = (($a->argc > 2) ? intval($a->argv[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);
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log('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)) {
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log('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
|
|
|
|
2018-08-11 22:40:44 +02:00
|
|
|
if (!in_array($contact['rel'], [Contact::SHARING, Contact::FRIEND]) && ($contact['network'] != Protocol::FEED)) {
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log('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
|
|
|
|
2018-03-13 22:03:56 +01:00
|
|
|
// We import feeds from OStatus, Friendica and ATOM/RSS.
|
|
|
|
/// @todo Check if Friendica posts really arrive here - otherwise we can discard some stuff
|
2018-08-11 22:40:44 +02:00
|
|
|
if (!in_array($contact['network'], [Protocol::OSTATUS, Protocol::DFRN, Protocol::FEED])) {
|
2018-03-13 22:03:56 +01:00
|
|
|
hub_post_return();
|
|
|
|
}
|
2010-10-01 04:41:22 +02:00
|
|
|
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log('Import item for ' . $nick . ' from ' . $contact['nick'] . ' (' . $contact['id'] . ')');
|
2018-03-13 22:03:56 +01:00
|
|
|
$feedhub = '';
|
|
|
|
consume_feed($xml, $importer, $contact, $feedhub);
|
2010-11-12 05:32:20 +01:00
|
|
|
|
2018-03-13 22:03:56 +01:00
|
|
|
// do it a second time for DFRN so that any children find their parents.
|
2018-08-11 22:40:44 +02:00
|
|
|
if ($contact['network'] === Protocol::DFRN) {
|
2018-03-13 22:03:56 +01:00
|
|
|
consume_feed($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
|
|
|
}
|