2015-09-05 04:32:10 -04:00
|
|
|
<?php
|
2018-01-09 09:59:52 -05:00
|
|
|
/**
|
|
|
|
* @file mod/ostatus_subscribe.php
|
|
|
|
*/
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2018-01-21 13:33:59 -05:00
|
|
|
use Friendica\Core\L10n;
|
2017-11-06 21:22:52 -05:00
|
|
|
use Friendica\Core\PConfig;
|
2017-08-26 02:04:21 -04:00
|
|
|
use Friendica\Core\System;
|
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
|
|
|
|
2017-01-09 07:14:25 -05:00
|
|
|
function ostatus_subscribe_content(App $a) {
|
2015-09-05 04:32:10 -04:00
|
|
|
|
2016-12-20 05:56:34 -05:00
|
|
|
if (! local_user()) {
|
2018-01-21 13:33:59 -05:00
|
|
|
notice(L10n::t('Permission denied.') . EOL);
|
2015-09-05 04:32:10 -04:00
|
|
|
goaway($_SESSION['return_url']);
|
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2018-01-22 16:59:31 -05:00
|
|
|
$o = "<h2>".L10n::t("Subscribing to OStatus contacts")."</h2>";
|
2015-09-05 04:32:10 -04:00
|
|
|
|
|
|
|
$uid = local_user();
|
|
|
|
|
|
|
|
$a = get_app();
|
|
|
|
|
|
|
|
$counter = intval($_REQUEST['counter']);
|
|
|
|
|
2017-11-06 21:22:52 -05:00
|
|
|
if (PConfig::get($uid, "ostatus", "legacy_friends") == "") {
|
2015-09-05 04:32:10 -04:00
|
|
|
|
2016-12-22 09:30:23 -05:00
|
|
|
if ($_REQUEST["url"] == "") {
|
2018-01-22 16:59:31 -05:00
|
|
|
return $o.L10n::t("No contact provided.");
|
2016-12-22 09:30:23 -05:00
|
|
|
}
|
2015-09-05 04:32:10 -04:00
|
|
|
|
2017-11-06 21:22:52 -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) {
|
2018-01-22 16:59:31 -05:00
|
|
|
return $o.L10n::t("Couldn't fetch information for contact.");
|
2016-12-22 09:30:23 -05:00
|
|
|
}
|
2015-09-05 04:32:10 -04:00
|
|
|
|
|
|
|
$api = $contact["baseurl"]."/api/";
|
|
|
|
|
|
|
|
// Fetching friends
|
2018-01-27 11:13:41 -05:00
|
|
|
$data = Network::curl($api."statuses/friends.json?screen_name=".$contact["nick"]);
|
2015-09-05 04:32:10 -04:00
|
|
|
|
2016-12-22 09:30:23 -05:00
|
|
|
if (!$data["success"]) {
|
2018-01-22 16:59:31 -05:00
|
|
|
return $o.L10n::t("Couldn't fetch friends for contact.");
|
2016-12-22 09:30:23 -05:00
|
|
|
}
|
2015-09-05 04:32:10 -04:00
|
|
|
|
2017-11-06 21:22:52 -05:00
|
|
|
PConfig::set($uid, "ostatus", "legacy_friends", $data["body"]);
|
2015-09-05 04:32:10 -04:00
|
|
|
}
|
|
|
|
|
2017-11-06 21:22:52 -05:00
|
|
|
$friends = json_decode(PConfig::get($uid, "ostatus", "legacy_friends"));
|
2015-09-05 04:32:10 -04:00
|
|
|
|
|
|
|
$total = sizeof($friends);
|
|
|
|
|
|
|
|
if ($counter >= $total) {
|
2017-08-26 03:32:10 -04:00
|
|
|
$a->page['htmlhead'] = '<meta http-equiv="refresh" content="0; URL='.System::baseUrl().'/settings/connectors">';
|
2017-11-07 09:12:01 -05:00
|
|
|
PConfig::delete($uid, "ostatus", "legacy_friends");
|
|
|
|
PConfig::delete($uid, "ostatus", "legacy_contact");
|
2018-01-22 07:29:50 -05:00
|
|
|
$o .= L10n::t("Done");
|
2015-09-05 04:32:10 -04:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
$friend = $friends[$counter++];
|
|
|
|
|
|
|
|
$url = $friend->statusnet_profile_url;
|
|
|
|
|
|
|
|
$o .= "<p>".$counter."/".$total.": ".$url;
|
|
|
|
|
2017-11-06 21:22:52 -05:00
|
|
|
$data = Probe::uri($url);
|
2015-09-05 04:32:10 -04:00
|
|
|
if ($data["network"] == NETWORK_OSTATUS) {
|
2018-01-09 11:40:25 -05:00
|
|
|
$result = Contact::createFromProbe($uid, $url, true, NETWORK_OSTATUS);
|
2016-12-22 09:30:23 -05:00
|
|
|
if ($result["success"]) {
|
2018-01-22 16:59:31 -05:00
|
|
|
$o .= " - ".L10n::t("success");
|
2016-12-22 09:30:23 -05:00
|
|
|
} else {
|
2018-01-22 16:59:31 -05:00
|
|
|
$o .= " - ".L10n::t("failed");
|
2016-12-22 09:30:23 -05:00
|
|
|
}
|
|
|
|
} else {
|
2018-01-22 16:59:31 -05:00
|
|
|
$o .= " - ".L10n::t("ignored");
|
2016-12-22 09:30:23 -05:00
|
|
|
}
|
2015-09-05 04:32:10 -04:00
|
|
|
|
|
|
|
$o .= "</p>";
|
|
|
|
|
2018-01-22 16:59:31 -05:00
|
|
|
$o .= "<p>".L10n::t("Keep this window open until done.")."</p>";
|
2015-09-05 04:32:10 -04:00
|
|
|
|
2017-08-26 03:32:10 -04:00
|
|
|
$a->page['htmlhead'] = '<meta http-equiv="refresh" content="0; URL='.System::baseUrl().'/ostatus_subscribe?counter='.$counter.'">';
|
2015-09-05 04:32:10 -04:00
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|