X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fostatus_subscribe.php;h=e8ba144a1633a7b2e5d30d4a35ffb502096eab73;hb=5c63de1692c5be4ca457e03fc037683909a44348;hp=04c8d7bde79e841de8c8f5724f503e7a4adfa0c4;hpb=949507d6881b2a24df1d3bbb43c63782f7ac9d49;p=friendica.git diff --git a/mod/ostatus_subscribe.php b/mod/ostatus_subscribe.php index 04c8d7bde7..e8ba144a16 100644 --- a/mod/ostatus_subscribe.php +++ b/mod/ostatus_subscribe.php @@ -1,17 +1,24 @@ ".t("Subscribing to OStatus contacts").""; + $o = "

".L10n::t("Subscribing to OStatus contacts")."

"; $uid = local_user(); @@ -19,39 +26,42 @@ function ostatus_subscribe_content(&$a) { $counter = intval($_REQUEST['counter']); - if (get_pconfig($uid, "ostatus", "legacy_friends") == "") { + if (PConfig::get($uid, "ostatus", "legacy_friends") == "") { if ($_REQUEST["url"] == "") { - return $o.t("No contact provided."); + PConfig::delete($uid, "ostatus", "legacy_contact"); + return $o.L10n::t("No contact provided."); } - $contact = probe_url($_REQUEST["url"]); + $contact = Probe::uri($_REQUEST["url"]); if (!$contact) { - return $o.t("Couldn't fetch information for contact."); + PConfig::delete($uid, "ostatus", "legacy_contact"); + return $o.L10n::t("Couldn't fetch information for contact."); } $api = $contact["baseurl"]."/api/"; // Fetching friends - $data = z_fetch_url($api."statuses/friends.json?screen_name=".$contact["nick"]); + $data = Network::curl($api."statuses/friends.json?screen_name=".$contact["nick"]); if (!$data["success"]) { - return $o.t("Couldn't fetch friends for contact."); + PConfig::delete($uid, "ostatus", "legacy_contact"); + return $o.L10n::t("Couldn't fetch friends for contact."); } - set_pconfig($uid, "ostatus", "legacy_friends", $data["body"]); + PConfig::set($uid, "ostatus", "legacy_friends", $data["body"]); } - $friends = json_decode(get_pconfig($uid, "ostatus", "legacy_friends")); + $friends = json_decode(PConfig::get($uid, "ostatus", "legacy_friends")); $total = sizeof($friends); if ($counter >= $total) { - $a->page['htmlhead'] = ''; - del_pconfig($uid, "ostatus", "legacy_friends"); - del_pconfig($uid, "ostatus", "legacy_contact"); - $o .= t("Done"); + $a->page['htmlhead'] = ''; + PConfig::delete($uid, "ostatus", "legacy_friends"); + PConfig::delete($uid, "ostatus", "legacy_contact"); + $o .= L10n::t("Done"); return $o; } @@ -61,23 +71,23 @@ function ostatus_subscribe_content(&$a) { $o .= "

".$counter."/".$total.": ".$url; - $data = probe_url($url); + $data = Probe::uri($url); if ($data["network"] == NETWORK_OSTATUS) { - $result = new_contact($uid,$url,true); + $result = Contact::createFromProbe($uid, $url, true, NETWORK_OSTATUS); if ($result["success"]) { - $o .= " - ".t("success"); + $o .= " - ".L10n::t("success"); } else { - $o .= " - ".t("failed"); + $o .= " - ".L10n::t("failed"); } } else { - $o .= " - ".t("ignored"); + $o .= " - ".L10n::t("ignored"); } $o .= "

"; - $o .= "

".t("Keep this window open until done.")."

"; + $o .= "

".L10n::t("Keep this window open until done.")."

"; - $a->page['htmlhead'] = ''; + $a->page['htmlhead'] = ''; return $o; }