2015-09-05 04:32:10 -04:00
|
|
|
<?php
|
2018-01-09 09:59:52 -05:00
|
|
|
/**
|
2020-02-09 10:18:46 -05:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @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 09:59:52 -05:00
|
|
|
*/
|
2018-11-22 19:03:02 -05:00
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2018-08-11 16:40:44 -04:00
|
|
|
use Friendica\Core\Protocol;
|
2019-12-15 18:28:31 -05:00
|
|
|
use Friendica\DI;
|
2018-01-09 09:59:52 -05:00
|
|
|
use Friendica\Model\Contact;
|
2017-04-30 00:07:00 -04:00
|
|
|
|
2018-11-22 19:03:02 -05:00
|
|
|
function ostatus_subscribe_content(App $a)
|
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2020-07-23 02:25:01 -04:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect('ostatus_subscribe');
|
2015-09-05 04:32:10 -04:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2020-01-18 14:52:34 -05:00
|
|
|
$o = '<h2>' . DI::l10n()->t('Subscribing to OStatus contacts') . '</h2>';
|
2015-09-05 04:32:10 -04:00
|
|
|
|
|
|
|
$uid = local_user();
|
|
|
|
|
|
|
|
$counter = intval($_REQUEST['counter']);
|
|
|
|
|
2020-01-18 10:50:57 -05:00
|
|
|
if (DI::pConfig()->get($uid, 'ostatus', 'legacy_friends') == '') {
|
2015-09-05 04:32:10 -04:00
|
|
|
|
2018-11-22 19:03:02 -05:00
|
|
|
if ($_REQUEST['url'] == '') {
|
2020-01-18 10:56:46 -05:00
|
|
|
DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
|
2020-01-18 14:52:34 -05:00
|
|
|
return $o . DI::l10n()->t('No contact provided.');
|
2016-12-22 09:30:23 -05:00
|
|
|
}
|
2015-09-05 04:32:10 -04:00
|
|
|
|
2020-07-16 06:22:14 -04:00
|
|
|
$contact = Contact::getByURL($_REQUEST['url']);
|
2016-12-22 09:30:23 -05:00
|
|
|
if (!$contact) {
|
2020-01-18 10:56:46 -05:00
|
|
|
DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
|
2020-01-18 14:52:34 -05:00
|
|
|
return $o . DI::l10n()->t('Couldn\'t fetch information for contact.');
|
2016-12-22 09:30:23 -05:00
|
|
|
}
|
2015-09-05 04:32:10 -04:00
|
|
|
|
2018-11-22 19:03:02 -05:00
|
|
|
$api = $contact['baseurl'] . '/api/';
|
2015-09-05 04:32:10 -04:00
|
|
|
|
|
|
|
// Fetching friends
|
2020-03-04 16:35:09 -05:00
|
|
|
$curlResult = DI::httpRequest()->get($api . 'statuses/friends.json?screen_name=' . $contact['nick']);
|
2015-09-05 04:32:10 -04:00
|
|
|
|
2018-10-10 15:08:43 -04:00
|
|
|
if (!$curlResult->isSuccess()) {
|
2020-01-18 10:56:46 -05:00
|
|
|
DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
|
2020-01-18 14:52:34 -05:00
|
|
|
return $o . DI::l10n()->t('Couldn\'t fetch friends for contact.');
|
2016-12-22 09:30:23 -05:00
|
|
|
}
|
2015-09-05 04:32:10 -04:00
|
|
|
|
2020-01-18 10:54:50 -05:00
|
|
|
DI::pConfig()->set($uid, 'ostatus', 'legacy_friends', $curlResult->getBody());
|
2015-09-05 04:32:10 -04:00
|
|
|
}
|
|
|
|
|
2020-01-18 10:50:57 -05:00
|
|
|
$friends = json_decode(DI::pConfig()->get($uid, 'ostatus', 'legacy_friends'));
|
2015-09-05 04:32:10 -04:00
|
|
|
|
2018-11-22 19:03:24 -05:00
|
|
|
if (empty($friends)) {
|
|
|
|
$friends = [];
|
|
|
|
}
|
|
|
|
|
2015-09-05 04:32:10 -04:00
|
|
|
$total = sizeof($friends);
|
|
|
|
|
|
|
|
if ($counter >= $total) {
|
2019-12-30 17:00:08 -05:00
|
|
|
DI::page()['htmlhead'] = '<meta http-equiv="refresh" content="0; URL=' . DI::baseUrl() . '/settings/connectors">';
|
2020-01-18 10:56:46 -05:00
|
|
|
DI::pConfig()->delete($uid, 'ostatus', 'legacy_friends');
|
|
|
|
DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
|
2020-01-18 14:52:34 -05:00
|
|
|
$o .= DI::l10n()->t('Done');
|
2015-09-05 04:32:10 -04:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
$friend = $friends[$counter++];
|
|
|
|
|
|
|
|
$url = $friend->statusnet_profile_url;
|
|
|
|
|
2018-11-22 19:03:02 -05:00
|
|
|
$o .= '<p>' . $counter . '/' . $total . ': ' . $url;
|
2015-09-05 04:32:10 -04:00
|
|
|
|
2020-07-16 06:22:14 -04:00
|
|
|
$probed = Contact::getByURL($url);
|
2018-12-22 12:00:28 -05:00
|
|
|
if ($probed['network'] == Protocol::OSTATUS) {
|
2020-06-24 20:57:47 -04:00
|
|
|
$result = Contact::createFromProbe($a->user, $probed['url'], true, Protocol::OSTATUS);
|
2018-11-22 19:03:02 -05:00
|
|
|
if ($result['success']) {
|
2020-01-18 14:52:34 -05:00
|
|
|
$o .= ' - ' . DI::l10n()->t('success');
|
2016-12-22 09:30:23 -05:00
|
|
|
} else {
|
2020-01-18 14:52:34 -05:00
|
|
|
$o .= ' - ' . DI::l10n()->t('failed');
|
2016-12-22 09:30:23 -05:00
|
|
|
}
|
|
|
|
} else {
|
2020-01-18 14:52:34 -05:00
|
|
|
$o .= ' - ' . DI::l10n()->t('ignored');
|
2016-12-22 09:30:23 -05:00
|
|
|
}
|
2015-09-05 04:32:10 -04:00
|
|
|
|
2018-11-22 19:03:02 -05:00
|
|
|
$o .= '</p>';
|
2015-09-05 04:32:10 -04:00
|
|
|
|
2020-01-18 14:52:34 -05:00
|
|
|
$o .= '<p>' . DI::l10n()->t('Keep this window open until done.') . '</p>';
|
2015-09-05 04:32:10 -04:00
|
|
|
|
2019-12-30 17:00:08 -05:00
|
|
|
DI::page()['htmlhead'] = '<meta http-equiv="refresh" content="0; URL=' . DI::baseUrl() . '/ostatus_subscribe?counter=' . $counter . '">';
|
2015-09-05 04:32:10 -04:00
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|