2015-09-05 10:32:10 +02:00
|
|
|
<?php
|
2018-01-09 15:59:52 +01:00
|
|
|
/**
|
2021-03-29 08:40:20 +02:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 16:18:46 +01:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2018-01-09 15:59:52 +01:00
|
|
|
*/
|
2018-11-23 01:03:02 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-08-11 22:40:44 +02:00
|
|
|
use Friendica\Core\Protocol;
|
2019-12-16 00:28:31 +01:00
|
|
|
use Friendica\DI;
|
2018-01-09 15:59:52 +01:00
|
|
|
use Friendica\Model\Contact;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2018-11-23 01:03:02 +01:00
|
|
|
function ostatus_subscribe_content(App $a)
|
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2020-07-23 08:25:01 +02:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect('ostatus_subscribe');
|
2015-09-05 10:32:10 +02:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2020-01-18 20:52:34 +01:00
|
|
|
$o = '<h2>' . DI::l10n()->t('Subscribing to OStatus contacts') . '</h2>';
|
2015-09-05 10:32:10 +02:00
|
|
|
|
|
|
|
$uid = local_user();
|
|
|
|
|
|
|
|
$counter = intval($_REQUEST['counter']);
|
|
|
|
|
2020-01-18 16:50:57 +01:00
|
|
|
if (DI::pConfig()->get($uid, 'ostatus', 'legacy_friends') == '') {
|
2015-09-05 10:32:10 +02:00
|
|
|
|
2018-11-23 01:03:02 +01:00
|
|
|
if ($_REQUEST['url'] == '') {
|
2020-01-18 16:56:46 +01:00
|
|
|
DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
|
2020-01-18 20:52:34 +01:00
|
|
|
return $o . DI::l10n()->t('No contact provided.');
|
2016-12-22 15:30:23 +01:00
|
|
|
}
|
2015-09-05 10:32:10 +02:00
|
|
|
|
2020-07-16 12:22:14 +02:00
|
|
|
$contact = Contact::getByURL($_REQUEST['url']);
|
2016-12-22 15:30:23 +01:00
|
|
|
if (!$contact) {
|
2020-01-18 16:56:46 +01:00
|
|
|
DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
|
2020-01-18 20:52:34 +01:00
|
|
|
return $o . DI::l10n()->t('Couldn\'t fetch information for contact.');
|
2016-12-22 15:30:23 +01:00
|
|
|
}
|
2015-09-05 10:32:10 +02:00
|
|
|
|
2018-11-23 01:03:02 +01:00
|
|
|
$api = $contact['baseurl'] . '/api/';
|
2015-09-05 10:32:10 +02:00
|
|
|
|
|
|
|
// Fetching friends
|
2020-03-04 22:35:09 +01:00
|
|
|
$curlResult = DI::httpRequest()->get($api . 'statuses/friends.json?screen_name=' . $contact['nick']);
|
2015-09-05 10:32:10 +02:00
|
|
|
|
2018-10-10 21:08:43 +02:00
|
|
|
if (!$curlResult->isSuccess()) {
|
2020-01-18 16:56:46 +01:00
|
|
|
DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
|
2020-01-18 20:52:34 +01:00
|
|
|
return $o . DI::l10n()->t('Couldn\'t fetch friends for contact.');
|
2016-12-22 15:30:23 +01:00
|
|
|
}
|
2015-09-05 10:32:10 +02:00
|
|
|
|
2020-01-18 16:54:50 +01:00
|
|
|
DI::pConfig()->set($uid, 'ostatus', 'legacy_friends', $curlResult->getBody());
|
2015-09-05 10:32:10 +02:00
|
|
|
}
|
|
|
|
|
2020-01-18 16:50:57 +01:00
|
|
|
$friends = json_decode(DI::pConfig()->get($uid, 'ostatus', 'legacy_friends'));
|
2015-09-05 10:32:10 +02:00
|
|
|
|
2018-11-23 01:03:24 +01:00
|
|
|
if (empty($friends)) {
|
|
|
|
$friends = [];
|
|
|
|
}
|
|
|
|
|
2015-09-05 10:32:10 +02:00
|
|
|
$total = sizeof($friends);
|
|
|
|
|
|
|
|
if ($counter >= $total) {
|
2019-12-30 23:00:08 +01:00
|
|
|
DI::page()['htmlhead'] = '<meta http-equiv="refresh" content="0; URL=' . DI::baseUrl() . '/settings/connectors">';
|
2020-01-18 16:56:46 +01:00
|
|
|
DI::pConfig()->delete($uid, 'ostatus', 'legacy_friends');
|
|
|
|
DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
|
2020-01-18 20:52:34 +01:00
|
|
|
$o .= DI::l10n()->t('Done');
|
2015-09-05 10:32:10 +02:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
$friend = $friends[$counter++];
|
|
|
|
|
|
|
|
$url = $friend->statusnet_profile_url;
|
|
|
|
|
2018-11-23 01:03:02 +01:00
|
|
|
$o .= '<p>' . $counter . '/' . $total . ': ' . $url;
|
2015-09-05 10:32:10 +02:00
|
|
|
|
2020-07-16 12:22:14 +02:00
|
|
|
$probed = Contact::getByURL($url);
|
2018-12-22 18:00:28 +01:00
|
|
|
if ($probed['network'] == Protocol::OSTATUS) {
|
2020-06-25 02:57:47 +02:00
|
|
|
$result = Contact::createFromProbe($a->user, $probed['url'], true, Protocol::OSTATUS);
|
2018-11-23 01:03:02 +01:00
|
|
|
if ($result['success']) {
|
2020-01-18 20:52:34 +01:00
|
|
|
$o .= ' - ' . DI::l10n()->t('success');
|
2016-12-22 15:30:23 +01:00
|
|
|
} else {
|
2020-01-18 20:52:34 +01:00
|
|
|
$o .= ' - ' . DI::l10n()->t('failed');
|
2016-12-22 15:30:23 +01:00
|
|
|
}
|
|
|
|
} else {
|
2020-01-18 20:52:34 +01:00
|
|
|
$o .= ' - ' . DI::l10n()->t('ignored');
|
2016-12-22 15:30:23 +01:00
|
|
|
}
|
2015-09-05 10:32:10 +02:00
|
|
|
|
2018-11-23 01:03:02 +01:00
|
|
|
$o .= '</p>';
|
2015-09-05 10:32:10 +02:00
|
|
|
|
2020-01-18 20:52:34 +01:00
|
|
|
$o .= '<p>' . DI::l10n()->t('Keep this window open until done.') . '</p>';
|
2015-09-05 10:32:10 +02:00
|
|
|
|
2019-12-30 23:00:08 +01:00
|
|
|
DI::page()['htmlhead'] = '<meta http-equiv="refresh" content="0; URL=' . DI::baseUrl() . '/ostatus_subscribe?counter=' . $counter . '">';
|
2015-09-05 10:32:10 +02:00
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|