Probe Diagnostic'; $o .= '
'; $o .= 'Lookup address: '; $o .= '
'; $o .= '

'; if(x($_GET,'addr')) { $channel = $a->get_channel(); $addr = trim($_GET['addr']); $do_import = ((intval($_GET['import']) && is_site_admin()) ? true : false); $res = zot_finger($addr,$channel,false); $o .= '
';
		if($res['success'])
			$j = json_decode($res['body'],true);
		else {
			$o .= sprintf( t('Fetching URL returns error: %1$s'),$res['error'] . "\r\n\r\n");
			$o .= "https connection failed. Trying again with auto failover to http.\r\n\r\n";
			$res = zot_finger($addr,$channel,true);
			if($res['success'])
				$j = json_decode($res['body'],true);
			else
				$o .= sprintf( t('Fetching URL returns error: %1$s'),$res['error'] . "\r\n\r\n");

		}
		if($do_import && $j)
			$x = import_xchan($j);
		if($j && $j['permissions'] && $j['permissions']['iv'])
			$j['permissions'] = json_decode(crypto_unencapsulate($j['permissions'],$channel['channel_prvkey']),true);
		$o .= str_replace("\n",'
',print_r($j,true)); $o .= '
'; } return $o; }