".t("Subscribing to OStatus contacts").""; $uid = local_user(); $a = get_app(); $counter = intval($_REQUEST['counter']); if (get_pconfig($uid, "ostatus", "legacy_friends") == "") { if ($_REQUEST["url"] == "") { return $o.t("No contact provided."); } $contact = probe_url($_REQUEST["url"]); if (!$contact) { return $o.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"]); if (!$data["success"]) { return $o.t("Couldn't fetch friends for contact."); } set_pconfig($uid, "ostatus", "legacy_friends", $data["body"]); } $friends = json_decode(get_pconfig($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"); return $o; } $friend = $friends[$counter++]; $url = $friend->statusnet_profile_url; $o .= "

".$counter."/".$total.": ".$url; $data = probe_url($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"); } $o .= "

"; $o .= "

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

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