friendica/mod/pubsub.php

139 lines
4.8 KiB
PHP
Raw Normal View History

2010-10-01 04:41:22 +02:00
<?php
use Friendica\App;
2018-10-29 22:20:46 +01:00
use Friendica\Core\Logger;
use Friendica\Core\Protocol;
use Friendica\Database\DBA;
use Friendica\Model\Contact;
use Friendica\Protocol\OStatus;
use Friendica\Util\Strings;
use Friendica\Core\System;
function hub_return($valid, $body)
{
if ($valid) {
header($_SERVER["SERVER_PROTOCOL"] . ' 200 OK');
2010-10-01 04:41:22 +02:00
echo $body;
} else {
2018-12-02 21:14:53 +01:00
System::httpExit(404);
2010-10-01 04:41:22 +02:00
}
killme();
2010-10-01 04:41:22 +02:00
}
// when receiving an XML feed, always return OK
function hub_post_return()
{
2018-12-02 21:10:53 +01:00
System::httpExit(200);
}
2010-10-01 04:41:22 +02:00
function pubsub_init(App $a)
{
$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
if ($_SERVER['REQUEST_METHOD'] === 'GET') {
$hub_mode = Strings::escapeTags(trim(defaults($_GET, 'hub_mode', '')));
$hub_topic = Strings::escapeTags(trim(defaults($_GET, 'hub_topic', '')));
$hub_challenge = Strings::escapeTags(trim(defaults($_GET, 'hub_challenge', '')));
$hub_lease = Strings::escapeTags(trim(defaults($_GET, 'hub_lease_seconds', '')));
$hub_verify = Strings::escapeTags(trim(defaults($_GET, 'hub_verify_token', '')));
2018-10-29 22:20:46 +01:00
Logger::log('Subscription from ' . $_SERVER['REMOTE_ADDR'] . ' Mode: ' . $hub_mode . ' Nick: ' . $nick);
Logger::log('Data: ' . print_r($_GET,true), Logger::DATA);
2010-10-01 04:41:22 +02:00
$subscribe = (($hub_mode === 'subscribe') ? 1 : 0);
$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
$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)) {
$condition['hub-verify'] = $hub_verify;
2018-03-13 08:16:31 +01:00
}
2010-10-01 04:41:22 +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
}
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']);
hub_return(false, '');
}
2010-10-01 04:41:22 +02: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.
if (($hub_mode === 'unsubscribe') && empty($hub_verify)) {
2018-10-29 22:20:46 +01:00
Logger::log('Bogus unsubscribe');
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)) {
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 . '.');
}
hub_return(true, $hub_challenge);
2010-10-01 04:41:22 +02:00
}
}
function pubsub_post(App $a)
{
2010-10-01 04:41:22 +02:00
$xml = file_get_contents('php://input');
2018-10-29 22:20:46 +01:00
Logger::log('Feed arrived from ' . $_SERVER['REMOTE_ADDR'] . ' for ' . $a->cmd . ' with user-agent: ' . $_SERVER['HTTP_USER_AGENT']);
Logger::log('Data: ' . $xml, Logger::DATA);
$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
$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();
}
2010-10-01 04:41:22 +02:00
$condition = ['id' => $contact_id, 'uid' => $importer['uid'], 'subhub' => true, 'blocked' => false];
$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)) {
$author = OStatus::salmonAuthor($xml, $importer);
if (!empty($author['contact-id'])) {
$condition = ['id' => $author['contact-id'], 'uid' => $importer['uid'], 'subhub' => true, 'blocked' => false];
$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-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);
hub_post_return();
}
2011-02-10 04:56:40 +01:00
}
2010-10-01 04:41:22 +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();
}
// We import feeds from OStatus, Friendica and ATOM/RSS.
/// @todo Check if Friendica posts really arrive here - otherwise we can discard some stuff
if (!in_array($contact['network'], [Protocol::OSTATUS, Protocol::DFRN, Protocol::FEED])) {
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'] . ')');
$feedhub = '';
consume_feed($xml, $importer, $contact, $feedhub);
// do it a second time for DFRN so that any children find their parents.
if ($contact['network'] === Protocol::DFRN) {
consume_feed($xml, $importer, $contact, $feedhub);
}
2010-10-01 05:24:03 +02:00
hub_post_return();
2010-10-01 04:41:22 +02:00
}