]> git.mxchange.org Git - friendica.git/blob - mod/ostatus_subscribe.php
Merge pull request #11140 from nupplaphil/friendica-11138
[friendica.git] / mod / ostatus_subscribe.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
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\APContact;
26 use Friendica\Model\Contact;
27 use Friendica\Protocol\ActivityPub;
28
29 function ostatus_subscribe_content(App $a)
30 {
31         if (!local_user()) {
32                 notice(DI::l10n()->t('Permission denied.'));
33                 DI::baseUrl()->redirect('ostatus_subscribe');
34                 // NOTREACHED
35         }
36
37         $o = '<h2>' . DI::l10n()->t('Subscribing to contacts') . '</h2>';
38
39         $uid = local_user();
40
41         $counter = intval($_REQUEST['counter'] ?? 0);
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 = Contact::getByURL($_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                 if ($contact['network'] == Protocol::OSTATUS) {
57                         $api = $contact['baseurl'] . '/api/';
58
59                         // Fetching friends
60                         $curlResult = DI::httpClient()->get($api . 'statuses/friends.json?screen_name=' . $contact['nick']);
61
62                         if (!$curlResult->isSuccess()) {
63                                 DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
64                                 return $o . DI::l10n()->t('Couldn\'t fetch friends for contact.');
65                         }
66
67                         $friends = $curlResult->getBody();
68                         if (empty($friends)) {
69                                 DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
70                                 return $o . DI::l10n()->t('Couldn\'t fetch following contacts.');
71                         }
72                         DI::pConfig()->set($uid, 'ostatus', 'legacy_friends', $friends);
73                 } elseif ($apcontact = APContact::getByURL($contact['url'])) {
74                         if (empty($apcontact['following'])) {
75                                 DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
76                                 return $o . DI::l10n()->t('Couldn\'t fetch remote profile.');
77                         }
78                         $followings = ActivityPub::fetchItems($apcontact['following']);
79                         if (empty($followings)) {
80                                 DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
81                                 return $o . DI::l10n()->t('Couldn\'t fetch following contacts.');
82                         }
83                         DI::pConfig()->set($uid, 'ostatus', 'legacy_friends', json_encode($followings));
84                 } else {
85                         DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
86                         return $o . DI::l10n()->t('Unsupported network');
87                 }
88         }
89
90         $friends = json_decode(DI::pConfig()->get($uid, 'ostatus', 'legacy_friends'));
91
92         if (empty($friends)) {
93                 $friends = [];
94         }
95
96         $total = sizeof($friends);
97
98         if ($counter >= $total) {
99                 DI::page()['htmlhead'] = '<meta http-equiv="refresh" content="0; URL=' . DI::baseUrl() . '/settings/connectors">';
100                 DI::pConfig()->delete($uid, 'ostatus', 'legacy_friends');
101                 DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
102                 $o .= DI::l10n()->t('Done');
103                 return $o;
104         }
105
106         $friend = $friends[$counter++];
107
108         $url = $friend->statusnet_profile_url ?? $friend;
109
110         $o .= '<p>' . $counter . '/' . $total . ': ' . $url;
111
112         $probed = Contact::getByURL($url);
113         if (in_array($probed['network'], Protocol::FEDERATED)) {
114                 $result = Contact::createFromProbeForUser($a->getLoggedInUserId(), $probed['url']);
115                 if ($result['success']) {
116                         $o .= ' - ' . DI::l10n()->t('success');
117                 } else {
118                         $o .= ' - ' . DI::l10n()->t('failed');
119                 }
120         } else {
121                 $o .= ' - ' . DI::l10n()->t('ignored');
122         }
123
124         $o .= '</p>';
125
126         $o .= '<p>' . DI::l10n()->t('Keep this window open until done.') . '</p>';
127
128         DI::page()['htmlhead'] = '<meta http-equiv="refresh" content="0; URL=' . DI::baseUrl() . '/ostatus_subscribe?counter=' . $counter . '">';
129
130         return $o;
131 }