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