3 * @copyright Copyright (C) 2010-2021, the Friendica project
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
23 use Friendica\Core\Logger;
24 use Friendica\Database\DBA;
26 use Friendica\Model\PushSubscriber;
27 use Friendica\Util\Strings;
29 function post_var($name) {
30 return !empty($_POST[$name]) ? Strings::escapeTags(trim($_POST[$name])) : '';
33 function pubsubhubbub_init(App $a) {
34 // PuSH subscription must be considered "public" so just block it
35 // if public access isn't enabled.
36 if (DI::config()->get('system', 'block_public')) {
37 throw new \Friendica\Network\HTTPException\ForbiddenException();
40 // Subscription request from subscriber
41 // https://pubsubhubbub.googlecode.com/git/pubsubhubbub-core-0.4.html#anchor4
42 // Example from GNU Social:
43 // [hub_mode] => subscribe
44 // [hub_callback] => http://status.local/main/push/callback/1
45 // [hub_verify] => sync
46 // [hub_verify_token] => af11...
47 // [hub_secret] => af11...
48 // [hub_topic] => http://friendica.local/dfrn_poll/sazius
50 if ($_SERVER['REQUEST_METHOD'] === 'POST') {
51 $hub_mode = post_var('hub_mode');
52 $hub_callback = post_var('hub_callback');
53 $hub_verify_token = post_var('hub_verify_token');
54 $hub_secret = post_var('hub_secret');
55 $hub_topic = post_var('hub_topic');
57 // check for valid hub_mode
58 if ($hub_mode === 'subscribe') {
60 } elseif ($hub_mode === 'unsubscribe') {
63 Logger::log("Invalid hub_mode=$hub_mode, ignoring.");
64 throw new \Friendica\Network\HTTPException\NotFoundException();
67 Logger::log("$hub_mode request from " . $_SERVER['REMOTE_ADDR']);
70 // Normally the url should now contain the nick name as last part of the url
73 // Get the nick name from the topic as a fallback
76 // Extract nick name and strip any .atom extension
77 $nick = basename($nick, '.atom');
80 Logger::log('Bad hub_topic=$hub_topic, ignoring.');
81 throw new \Friendica\Network\HTTPException\NotFoundException();
84 // fetch user from database given the nickname
85 $condition = ['nickname' => $nick, 'account_expired' => false, 'account_removed' => false];
86 $owner = DBA::selectFirst('user', ['uid', 'nickname'], $condition);
87 if (!DBA::isResult($owner)) {
88 Logger::log('Local account not found: ' . $nick . ' - topic: ' . $hub_topic . ' - callback: ' . $hub_callback);
89 throw new \Friendica\Network\HTTPException\NotFoundException();
92 // get corresponding row from contact table
93 $condition = ['uid' => $owner['uid'], 'blocked' => false,
94 'pending' => false, 'self' => true];
95 $contact = DBA::selectFirst('contact', ['poll'], $condition);
96 if (!DBA::isResult($contact)) {
97 Logger::log('Self contact for user ' . $owner['uid'] . ' not found.');
98 throw new \Friendica\Network\HTTPException\NotFoundException();
101 // sanity check that topic URLs are the same
102 $hub_topic2 = str_replace('/feed/', '/dfrn_poll/', $hub_topic);
103 $self = DI::baseUrl() . '/api/statuses/user_timeline/' . $owner['nickname'] . '.atom';
105 if (!Strings::compareLink($hub_topic, $contact['poll']) && !Strings::compareLink($hub_topic2, $contact['poll']) && !Strings::compareLink($hub_topic, $self)) {
106 Logger::log('Hub topic ' . $hub_topic . ' != ' . $contact['poll']);
107 throw new \Friendica\Network\HTTPException\NotFoundException();
110 // do subscriber verification according to the PuSH protocol
111 $hub_challenge = Strings::getRandomHex(40);
113 $params = http_build_query([
114 'hub.mode' => $subscribe == 1 ? 'subscribe' : 'unsubscribe',
115 'hub.topic' => $hub_topic,
116 'hub.challenge' => $hub_challenge,
117 'hub.verify_token' => $hub_verify_token,
119 // lease time is hard coded to one week (in seconds)
120 // we don't actually enforce the lease time because GNU
121 // Social/StatusNet doesn't honour it (yet)
122 'hub.lease_seconds' => 604800,
125 $hub_callback = rtrim($hub_callback, ' ?&#');
126 $separator = parse_url($hub_callback, PHP_URL_QUERY) === null ? '?' : '&';
128 $fetchResult = DI::httpRequest()->fetchFull($hub_callback . $separator . $params);
129 $body = $fetchResult->getBody();
130 $ret = $fetchResult->getReturnCode();
132 // give up if the HTTP return code wasn't a success (2xx)
133 if ($ret < 200 || $ret > 299) {
134 Logger::log("Subscriber verification for $hub_topic at $hub_callback returned $ret, ignoring.");
135 throw new \Friendica\Network\HTTPException\NotFoundException();
138 // check that the correct hub_challenge code was echoed back
139 if (trim($body) !== $hub_challenge) {
140 Logger::log("Subscriber did not echo back hub.challenge, ignoring.");
141 Logger::log("\"$hub_challenge\" != \"".trim($body)."\"");
142 throw new \Friendica\Network\HTTPException\NotFoundException();
145 PushSubscriber::renew($owner['uid'], $nick, $subscribe, $hub_callback, $hub_topic, $hub_secret);
147 throw new \Friendica\Network\HTTPException\AcceptedException();