Merge branch '2020.06-rc' into stable
[friendica.git/.git] / mod / ostatus_subscribe.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
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.
11  *
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.
16  *
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/>.
19  *
20  */
21
22 use Friendica\App;
23 use Friendica\Core\Protocol;
24 use Friendica\DI;
25 use Friendica\Model\Contact;
26 use Friendica\Network\Probe;
27 use Friendica\Util\Network;
28
29 function ostatus_subscribe_content(App $a)
30 {
31         if (!local_user()) {
32                 notice(DI::l10n()->t('Permission denied.') . EOL);
33                 DI::baseUrl()->redirect('ostatus_subscribe');
34                 // NOTREACHED
35         }
36
37         $o = '<h2>' . DI::l10n()->t('Subscribing to OStatus contacts') . '</h2>';
38
39         $uid = local_user();
40
41         $counter = intval($_REQUEST['counter']);
42
43         if (DI::pConfig()->get($uid, 'ostatus', 'legacy_friends') == '') {
44
45                 if ($_REQUEST['url'] == '') {
46                         DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
47                         return $o . DI::l10n()->t('No contact provided.');
48                 }
49
50                 $contact = Probe::uri($_REQUEST['url']);
51                 if (!$contact) {
52                         DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
53                         return $o . DI::l10n()->t('Couldn\'t fetch information for contact.');
54                 }
55
56                 $api = $contact['baseurl'] . '/api/';
57
58                 // Fetching friends
59                 $curlResult = Network::curl($api . 'statuses/friends.json?screen_name=' . $contact['nick']);
60
61                 if (!$curlResult->isSuccess()) {
62                         DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
63                         return $o . DI::l10n()->t('Couldn\'t fetch friends for contact.');
64                 }
65
66                 DI::pConfig()->set($uid, 'ostatus', 'legacy_friends', $curlResult->getBody());
67         }
68
69         $friends = json_decode(DI::pConfig()->get($uid, 'ostatus', 'legacy_friends'));
70
71         if (empty($friends)) {
72                 $friends = [];
73         }
74
75         $total = sizeof($friends);
76
77         if ($counter >= $total) {
78                 DI::page()['htmlhead'] = '<meta http-equiv="refresh" content="0; URL=' . DI::baseUrl() . '/settings/connectors">';
79                 DI::pConfig()->delete($uid, 'ostatus', 'legacy_friends');
80                 DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
81                 $o .= DI::l10n()->t('Done');
82                 return $o;
83         }
84
85         $friend = $friends[$counter++];
86
87         $url = $friend->statusnet_profile_url;
88
89         $o .= '<p>' . $counter . '/' . $total . ': ' . $url;
90
91         $probed = Probe::uri($url);
92         if ($probed['network'] == Protocol::OSTATUS) {
93                 $result = Contact::createFromProbe($a->user, $probed['url'], true, Protocol::OSTATUS);
94                 if ($result['success']) {
95                         $o .= ' - ' . DI::l10n()->t('success');
96                 } else {
97                         $o .= ' - ' . DI::l10n()->t('failed');
98                 }
99         } else {
100                 $o .= ' - ' . DI::l10n()->t('ignored');
101         }
102
103         $o .= '</p>';
104
105         $o .= '<p>' . DI::l10n()->t('Keep this window open until done.') . '</p>';
106
107         DI::page()['htmlhead'] = '<meta http-equiv="refresh" content="0; URL=' . DI::baseUrl() . '/ostatus_subscribe?counter=' . $counter . '">';
108
109         return $o;
110 }