X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fostatus_subscribe.php;h=07f4647e69caed04160a948b1b8cb10f73eab288;hb=4a0781db1918eb3a954c928fb096a6deafd82016;hp=ba17e28b73992b47238fc14ab725a96582172224;hpb=a020086128e3d903a030cc3b3d403ab9bce02d88;p=friendica.git diff --git a/mod/ostatus_subscribe.php b/mod/ostatus_subscribe.php index ba17e28b73..07f4647e69 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,36 +26,39 @@ function ostatus_subscribe_content(App &$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."); + if ($_REQUEST["url"] == "") { + 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."); + if (!$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."); + if (!$data["success"]) { + 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; } @@ -58,21 +68,23 @@ function ostatus_subscribe_content(App &$a) { $o .= "

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