2015-09-05 10:32:10 +02:00
|
|
|
<?php
|
2018-01-09 15:59:52 +01:00
|
|
|
/**
|
|
|
|
* @file mod/ostatus_subscribe.php
|
|
|
|
*/
|
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-11-07 03:22:52 +01:00
|
|
|
use Friendica\Network\Probe;
|
2018-01-27 05:18:38 +01:00
|
|
|
use Friendica\Util\Network;
|
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-01-18 20:52:34 +01:00
|
|
|
notice(DI::l10n()->t('Permission denied.') . EOL);
|
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
|
|
|
|
2018-11-23 01:03:02 +01:00
|
|
|
$contact = Probe::uri($_REQUEST['url']);
|
2015-09-05 10:32:10 +02:00
|
|
|
|
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
|
2018-11-23 01:03:02 +01:00
|
|
|
$curlResult = Network::curl($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
|
|
|
|
2018-12-22 18:00:28 +01:00
|
|
|
$probed = Probe::uri($url);
|
|
|
|
if ($probed['network'] == Protocol::OSTATUS) {
|
2018-08-11 22:40:44 +02:00
|
|
|
$result = Contact::createFromProbe($uid, $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;
|
|
|
|
}
|