2013-11-17 14:16:25 +00:00
|
|
|
<?php
|
|
|
|
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2017-11-07 02:22:52 +00:00
|
|
|
use Friendica\Core\Config;
|
2018-01-27 16:59:10 +00:00
|
|
|
use Friendica\Core\System;
|
2017-11-08 03:57:46 +00:00
|
|
|
use Friendica\Database\DBM;
|
2018-01-27 02:38:34 +00:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2018-01-27 04:09:48 +00:00
|
|
|
use Friendica\Util\Network;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2013-11-17 14:16:25 +00:00
|
|
|
function post_var($name) {
|
|
|
|
return (x($_POST, $name)) ? notags(trim($_POST[$name])) : '';
|
|
|
|
}
|
|
|
|
|
2017-01-09 12:14:55 +00:00
|
|
|
function pubsubhubbub_init(App $a) {
|
2013-11-17 14:16:25 +00:00
|
|
|
// PuSH subscription must be considered "public" so just block it
|
|
|
|
// if public access isn't enabled.
|
2017-11-07 02:22:52 +00:00
|
|
|
if (Config::get('system', 'block_public')) {
|
2018-01-27 16:59:10 +00:00
|
|
|
System::httpExit(403);
|
2013-11-17 14:16:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Subscription request from subscriber
|
|
|
|
// https://pubsubhubbub.googlecode.com/git/pubsubhubbub-core-0.4.html#anchor4
|
|
|
|
// Example from GNU Social:
|
2017-08-23 05:01:15 +00:00
|
|
|
// [hub_mode] => subscribe
|
|
|
|
// [hub_callback] => http://status.local/main/push/callback/1
|
|
|
|
// [hub_verify] => sync
|
|
|
|
// [hub_verify_token] => af11...
|
|
|
|
// [hub_secret] => af11...
|
|
|
|
// [hub_topic] => http://friendica.local/dfrn_poll/sazius
|
|
|
|
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
2013-11-17 14:16:25 +00:00
|
|
|
$hub_mode = post_var('hub_mode');
|
|
|
|
$hub_callback = post_var('hub_callback');
|
|
|
|
$hub_verify = post_var('hub_verify');
|
|
|
|
$hub_verify_token = post_var('hub_verify_token');
|
|
|
|
$hub_secret = post_var('hub_secret');
|
|
|
|
$hub_topic = post_var('hub_topic');
|
|
|
|
|
|
|
|
// check for valid hub_mode
|
|
|
|
if ($hub_mode === 'subscribe') {
|
|
|
|
$subscribe = 1;
|
2017-08-23 05:01:15 +00:00
|
|
|
} elseif ($hub_mode === 'unsubscribe') {
|
2013-11-17 14:16:25 +00:00
|
|
|
$subscribe = 0;
|
|
|
|
} else {
|
2018-05-18 12:18:12 +00:00
|
|
|
logger("Invalid hub_mode=$hub_mode, ignoring.");
|
2018-01-27 16:59:10 +00:00
|
|
|
System::httpExit(404);
|
2013-11-17 14:16:25 +00:00
|
|
|
}
|
|
|
|
|
2018-05-18 12:18:12 +00:00
|
|
|
logger("$hub_mode request from " . $_SERVER['REMOTE_ADDR']);
|
2013-11-17 14:16:25 +00:00
|
|
|
|
2017-08-23 05:01:15 +00:00
|
|
|
// get the nick name from the topic, a bit hacky but needed as a fallback
|
2013-11-17 14:16:25 +00:00
|
|
|
$nick = substr(strrchr($hub_topic, "/"), 1);
|
|
|
|
|
2017-08-23 05:01:15 +00:00
|
|
|
// Normally the url should now contain the nick name as last part of the url
|
|
|
|
if ($a->argc > 1) {
|
|
|
|
$nick = $a->argv[1];
|
|
|
|
}
|
|
|
|
|
2013-11-17 14:16:25 +00:00
|
|
|
if (!$nick) {
|
2018-05-18 12:18:12 +00:00
|
|
|
logger('Bad hub_topic=$hub_topic, ignoring.');
|
2018-01-27 16:59:10 +00:00
|
|
|
System::httpExit(404);
|
2013-11-17 14:16:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// fetch user from database given the nickname
|
2018-05-18 12:18:12 +00:00
|
|
|
$condition = ['nickname' => $nick, 'account_expired' => false, 'account_removed' => false];
|
|
|
|
$owner = dba::selectFirst('user', ['uid', 'hidewall'], $condition);
|
|
|
|
if (!DBM::is_result($owner)) {
|
|
|
|
logger('Local account not found: ' . $nick . ' - topic: ' . $hub_topic . ' - callback: ' . $hub_callback);
|
2018-01-27 16:59:10 +00:00
|
|
|
System::httpExit(404);
|
2013-11-17 14:16:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// abort if user's wall is supposed to be private
|
2018-05-18 12:18:12 +00:00
|
|
|
if ($owner['hidewall']) {
|
|
|
|
logger('Local user ' . $nick . 'has chosen to hide wall, ignoring.');
|
2018-01-27 16:59:10 +00:00
|
|
|
System::httpExit(403);
|
2013-11-17 14:16:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// get corresponding row from contact table
|
2018-05-18 12:18:12 +00:00
|
|
|
$condition = ['uid' => $owner['uid'], 'blocked' => false,
|
|
|
|
'pending' => false, 'self' => true];
|
|
|
|
$contact = dba::selectFirst('contact', ['poll'], $condition);
|
|
|
|
if (!DBM::is_result($contact)) {
|
|
|
|
logger('Self contact for user ' . $owner['uid'] . ' not found.');
|
2018-01-27 16:59:10 +00:00
|
|
|
System::httpExit(404);
|
2013-11-17 14:16:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// sanity check that topic URLs are the same
|
2018-05-18 12:18:12 +00:00
|
|
|
$hub_topic2 = str_replace('/feed/', '/dfrn_poll/', $hub_topic);
|
|
|
|
if (!link_compare($hub_topic, $contact['poll']) && !link_compare($hub_topic2, $contact['poll'])) {
|
|
|
|
logger('Hub topic ' . $hub_topic . ' != ' . $contact['poll']);
|
2018-01-27 16:59:10 +00:00
|
|
|
System::httpExit(404);
|
2013-11-17 14:16:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// do subscriber verification according to the PuSH protocol
|
|
|
|
$hub_challenge = random_string(40);
|
2015-12-12 16:41:25 +00:00
|
|
|
$params = 'hub.mode=' .
|
2013-11-17 14:16:25 +00:00
|
|
|
($subscribe == 1 ? 'subscribe' : 'unsubscribe') .
|
|
|
|
'&hub.topic=' . urlencode($hub_topic) .
|
|
|
|
'&hub.challenge=' . $hub_challenge .
|
|
|
|
'&hub.lease_seconds=604800' .
|
|
|
|
'&hub.verify_token=' . $hub_verify_token;
|
2015-12-12 16:41:25 +00:00
|
|
|
|
2013-11-17 14:16:25 +00:00
|
|
|
// lease time is hard coded to one week (in seconds)
|
|
|
|
// we don't actually enforce the lease time because GNU
|
|
|
|
// Social/StatusNet doesn't honour it (yet)
|
|
|
|
|
2018-01-27 16:13:41 +00:00
|
|
|
$body = Network::fetchUrl($hub_callback . "?" . $params);
|
2013-11-17 14:16:25 +00:00
|
|
|
$ret = $a->get_curl_code();
|
|
|
|
|
|
|
|
// give up if the HTTP return code wasn't a success (2xx)
|
|
|
|
if ($ret < 200 || $ret > 299) {
|
2018-05-18 12:18:12 +00:00
|
|
|
logger("Subscriber verification for $hub_topic at $hub_callback returned $ret, ignoring.");
|
2018-01-27 16:59:10 +00:00
|
|
|
System::httpExit(404);
|
2013-11-17 14:16:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// check that the correct hub_challenge code was echoed back
|
|
|
|
if (trim($body) !== $hub_challenge) {
|
2018-05-18 12:18:12 +00:00
|
|
|
logger("Subscriber did not echo back hub.challenge, ignoring.");
|
2013-11-17 14:16:25 +00:00
|
|
|
logger("\"$hub_challenge\" != \"".trim($body)."\"");
|
2018-01-27 16:59:10 +00:00
|
|
|
System::httpExit(404);
|
2013-11-17 14:16:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// fetch the old subscription if it exists
|
2018-05-18 12:18:12 +00:00
|
|
|
$subscriber = dba::selectFirst('push_subscriber', ['last_update', 'push'], ['callback_url' => $hub_callback]);
|
2013-11-17 14:16:25 +00:00
|
|
|
|
|
|
|
// delete old subscription if it exists
|
2018-05-02 19:26:15 +00:00
|
|
|
dba::delete('push_subscriber', ['callback_url' => $hub_callback]);
|
2013-11-17 14:16:25 +00:00
|
|
|
|
|
|
|
if ($subscribe) {
|
2018-01-27 02:38:34 +00:00
|
|
|
$last_update = DateTimeFormat::utcNow();
|
2013-11-17 14:16:25 +00:00
|
|
|
$push_flag = 0;
|
|
|
|
|
|
|
|
// if we are just updating an old subscription, keep the
|
2018-05-18 12:18:12 +00:00
|
|
|
// old values for last_update but reset the push
|
|
|
|
if (DBM::is_result($subscriber)) {
|
|
|
|
$last_update = $subscriber['last_update'];
|
|
|
|
$push_flag = min($subscriber['push'], 1);
|
2013-11-17 14:16:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// subscribe means adding the row to the table
|
2018-05-18 12:18:12 +00:00
|
|
|
$fields = ['uid' => $owner['uid'], 'callback_url' => $hub_callback,
|
|
|
|
'topic' => $hub_topic, 'nickname' => $nick, 'push' => $push_flag,
|
|
|
|
'last_update' => $last_update, 'renewed' => DateTimeFormat::utcNow(),
|
|
|
|
'secret' => $hub_secret];
|
|
|
|
dba::insert('push_subscriber', $fields);
|
|
|
|
|
|
|
|
logger("Successfully subscribed [$hub_callback].");
|
2013-11-17 14:16:25 +00:00
|
|
|
} else {
|
2018-05-18 12:18:12 +00:00
|
|
|
logger("Successfully unsubscribed [$hub_callback].");
|
2013-11-17 14:16:25 +00:00
|
|
|
// we do nothing here, since the row was already deleted
|
|
|
|
}
|
2018-01-27 16:59:10 +00:00
|
|
|
System::httpExit(202);
|
2013-11-17 14:16:25 +00:00
|
|
|
}
|
|
|
|
killme();
|
|
|
|
}
|