2010-10-01 02:41:22 +00:00
|
|
|
<?php
|
|
|
|
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2018-08-11 20:40:44 +00:00
|
|
|
use Friendica\Core\Protocol;
|
2018-07-20 12:19:26 +00:00
|
|
|
use Friendica\Database\DBA;
|
2018-07-25 02:53:46 +00:00
|
|
|
use Friendica\Model\Contact;
|
2018-03-13 06:21:44 +00:00
|
|
|
use Friendica\Protocol\OStatus;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2018-10-19 19:12:53 +00:00
|
|
|
require_once 'include/items.php';
|
2014-04-04 09:02:36 +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) {
|
2018-03-13 21:03:56 +00:00
|
|
|
header($_SERVER["SERVER_PROTOCOL"] . ' 200 OK');
|
2010-10-01 02:41:22 +00:00
|
|
|
echo $body;
|
2018-03-13 06:21:44 +00:00
|
|
|
} else {
|
2018-03-13 21:03:56 +00:00
|
|
|
header($_SERVER["SERVER_PROTOCOL"] . ' 404 Not Found');
|
2010-10-01 02:41:22 +00:00
|
|
|
}
|
2018-03-13 21:03:56 +00:00
|
|
|
killme();
|
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()
|
|
|
|
{
|
|
|
|
header($_SERVER["SERVER_PROTOCOL"] . ' 200 OK');
|
2010-10-01 02:41:22 +00:00
|
|
|
killme();
|
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)
|
|
|
|
{
|
2010-10-01 02:41:22 +00:00
|
|
|
$nick = (($a->argc > 1) ? notags(trim($a->argv[1])) : '');
|
2010-11-08 05:07:47 +00:00
|
|
|
$contact_id = (($a->argc > 2) ? intval($a->argv[2]) : 0 );
|
2010-10-01 02:41:22 +00:00
|
|
|
|
2018-03-13 06:21:44 +00:00
|
|
|
if ($_SERVER['REQUEST_METHOD'] === 'GET') {
|
2018-03-13 21:03:56 +00:00
|
|
|
$hub_mode = notags(trim(defaults($_GET, 'hub_mode', '')));
|
|
|
|
$hub_topic = notags(trim(defaults($_GET, 'hub_topic', '')));
|
|
|
|
$hub_challenge = notags(trim(defaults($_GET, 'hub_challenge', '')));
|
|
|
|
$hub_lease = notags(trim(defaults($_GET, 'hub_lease_seconds', '')));
|
|
|
|
$hub_verify = notags(trim(defaults($_GET, 'hub_verify_token', '')));
|
2010-10-01 09:28:06 +00:00
|
|
|
|
2018-03-13 21:03:56 +00:00
|
|
|
logger('Subscription from ' . $_SERVER['REMOTE_ADDR'] . ' Mode: ' . $hub_mode . ' Nick: ' . $nick);
|
|
|
|
logger('Data: ' . print_r($_GET,true), LOGGER_DATA);
|
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)) {
|
2018-03-13 21:03:56 +00:00
|
|
|
logger('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)) {
|
2018-03-13 21:03:56 +00:00
|
|
|
logger('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-03-13 21:03:56 +00:00
|
|
|
if (!empty($hub_topic) && !link_compare($hub_topic, $contact['poll'])) {
|
|
|
|
logger('Hub topic ' . $hub_topic . ' != ' . $contact['poll']);
|
|
|
|
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)) {
|
|
|
|
logger('Bogus unsubscribe');
|
|
|
|
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)) {
|
2018-07-20 12:19:26 +00:00
|
|
|
DBA::update('contact', ['subhub' => $subscribe], ['id' => $contact['id']]);
|
2018-03-13 21:03:56 +00:00
|
|
|
logger($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)
|
|
|
|
{
|
2010-10-01 02:41:22 +00:00
|
|
|
$xml = file_get_contents('php://input');
|
|
|
|
|
2018-03-13 21:03:56 +00:00
|
|
|
logger('Feed arrived from ' . $_SERVER['REMOTE_ADDR'] . ' for ' . $a->cmd . ' with user-agent: ' . $_SERVER['HTTP_USER_AGENT']);
|
|
|
|
logger('Data: ' . $xml, LOGGER_DATA);
|
2010-10-01 09:28:06 +00:00
|
|
|
|
2010-10-01 02:41:22 +00:00
|
|
|
$nick = (($a->argc > 1) ? notags(trim($a->argv[1])) : '');
|
2010-11-08 05:07:47 +00:00
|
|
|
$contact_id = (($a->argc > 2) ? intval($a->argv[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);
|
2018-03-13 21:03:56 +00:00
|
|
|
logger('No record for ' . $nick .' with contact id ' . $contact_id . ' - using '.$author['contact-id'].' instead.');
|
|
|
|
}
|
2018-07-21 12:46:04 +00:00
|
|
|
if (!DBA::isResult($contact)) {
|
2018-03-13 21:33:45 +00:00
|
|
|
logger('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
|
|
|
|
2018-08-11 20:40:44 +00:00
|
|
|
if (!in_array($contact['rel'], [Contact::SHARING, Contact::FRIEND]) && ($contact['network'] != Protocol::FEED)) {
|
2018-03-13 21:03:56 +00:00
|
|
|
logger('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
|
|
|
|
2018-03-13 21:03:56 +00: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 20:40:44 +00:00
|
|
|
if (!in_array($contact['network'], [Protocol::OSTATUS, Protocol::DFRN, Protocol::FEED])) {
|
2018-03-13 21:03:56 +00:00
|
|
|
hub_post_return();
|
|
|
|
}
|
2010-10-01 02:41:22 +00:00
|
|
|
|
2018-03-13 21:03:56 +00:00
|
|
|
logger('Import item for ' . $nick . ' from ' . $contact['nick'] . ' (' . $contact['id'] . ')');
|
|
|
|
$feedhub = '';
|
|
|
|
consume_feed($xml, $importer, $contact, $feedhub);
|
2010-11-12 04:32:20 +00:00
|
|
|
|
2018-03-13 21:03:56 +00:00
|
|
|
// do it a second time for DFRN so that any children find their parents.
|
2018-08-11 20:40:44 +00:00
|
|
|
if ($contact['network'] === Protocol::DFRN) {
|
2018-03-13 21:03:56 +00:00
|
|
|
consume_feed($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
|
|
|
}
|