* Rewrite: - stopped using deprecated NETWORK_* constants, now Protocol::* should be used - still left them intact for slow/lazy developers ... * Removed deprecated NETWORK_* constants as per code reviewer's request.
		
			
				
	
	
		
			94 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * @file mod/ostatus_subscribe.php
 | 
						|
 */
 | 
						|
use Friendica\App;
 | 
						|
use Friendica\Core\L10n;
 | 
						|
use Friendica\Core\PConfig;
 | 
						|
use Friendica\Core\Protocol;
 | 
						|
use Friendica\Core\System;
 | 
						|
use Friendica\Model\Contact;
 | 
						|
use Friendica\Network\Probe;
 | 
						|
use Friendica\Util\Network;
 | 
						|
 | 
						|
function ostatus_subscribe_content(App $a) {
 | 
						|
 | 
						|
	if (! local_user()) {
 | 
						|
		notice(L10n::t('Permission denied.') . EOL);
 | 
						|
		goaway($_SESSION['return_url']);
 | 
						|
		// NOTREACHED
 | 
						|
	}
 | 
						|
 | 
						|
	$o = "<h2>".L10n::t("Subscribing to OStatus contacts")."</h2>";
 | 
						|
 | 
						|
	$uid = local_user();
 | 
						|
 | 
						|
	$a = get_app();
 | 
						|
 | 
						|
	$counter = intval($_REQUEST['counter']);
 | 
						|
 | 
						|
	if (PConfig::get($uid, "ostatus", "legacy_friends") == "") {
 | 
						|
 | 
						|
		if ($_REQUEST["url"] == "") {
 | 
						|
			PConfig::delete($uid, "ostatus", "legacy_contact");
 | 
						|
			return $o.L10n::t("No contact provided.");
 | 
						|
		}
 | 
						|
 | 
						|
		$contact = Probe::uri($_REQUEST["url"]);
 | 
						|
 | 
						|
		if (!$contact) {
 | 
						|
			PConfig::delete($uid, "ostatus", "legacy_contact");
 | 
						|
			return $o.L10n::t("Couldn't fetch information for contact.");
 | 
						|
		}
 | 
						|
 | 
						|
		$api = $contact["baseurl"]."/api/";
 | 
						|
 | 
						|
		// Fetching friends
 | 
						|
		$data = Network::curl($api."statuses/friends.json?screen_name=".$contact["nick"]);
 | 
						|
 | 
						|
		if (!$data["success"]) {
 | 
						|
			PConfig::delete($uid, "ostatus", "legacy_contact");
 | 
						|
			return $o.L10n::t("Couldn't fetch friends for contact.");
 | 
						|
		}
 | 
						|
 | 
						|
		PConfig::set($uid, "ostatus", "legacy_friends", $data["body"]);
 | 
						|
	}
 | 
						|
 | 
						|
	$friends = json_decode(PConfig::get($uid, "ostatus", "legacy_friends"));
 | 
						|
 | 
						|
	$total = sizeof($friends);
 | 
						|
 | 
						|
	if ($counter >= $total) {
 | 
						|
		$a->page['htmlhead'] = '<meta http-equiv="refresh" content="0; URL='.System::baseUrl().'/settings/connectors">';
 | 
						|
		PConfig::delete($uid, "ostatus", "legacy_friends");
 | 
						|
		PConfig::delete($uid, "ostatus", "legacy_contact");
 | 
						|
		$o .= L10n::t("Done");
 | 
						|
		return $o;
 | 
						|
	}
 | 
						|
 | 
						|
	$friend = $friends[$counter++];
 | 
						|
 | 
						|
	$url = $friend->statusnet_profile_url;
 | 
						|
 | 
						|
	$o .= "<p>".$counter."/".$total.": ".$url;
 | 
						|
 | 
						|
	$data = Probe::uri($url);
 | 
						|
	if ($data["network"] == Protocol::OSTATUS) {
 | 
						|
		$result = Contact::createFromProbe($uid, $url, true, Protocol::OSTATUS);
 | 
						|
		if ($result["success"]) {
 | 
						|
			$o .= " - ".L10n::t("success");
 | 
						|
		} else {
 | 
						|
			$o .= " - ".L10n::t("failed");
 | 
						|
		}
 | 
						|
	} else {
 | 
						|
		$o .= " - ".L10n::t("ignored");
 | 
						|
	}
 | 
						|
 | 
						|
	$o .= "</p>";
 | 
						|
 | 
						|
	$o .= "<p>".L10n::t("Keep this window open until done.")."</p>";
 | 
						|
 | 
						|
	$a->page['htmlhead'] = '<meta http-equiv="refresh" content="0; URL='.System::baseUrl().'/ostatus_subscribe?counter='.$counter.'">';
 | 
						|
 | 
						|
	return $o;
 | 
						|
}
 |