aboutsummaryrefslogtreecommitdiffstats
path: root/mod/probe.php
blob: 62a2227b0148d4848a60d1725ee61203dba336b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php

require_once('include/zot.php');

function probe_content(&$a) {

	$o .= '<h3>Probe Diagnostic</h3>';

	$o .= '<form action="probe" method="get">';
	$o .= 'Lookup address: <input type="text" style="width: 250px;" name="addr" value="' . $_GET['addr'] .'" />';
	$o .= '<input type="submit" name="submit" value="Submit" /></form>'; 

	$o .= '<br /><br />';

	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 .= '<pre>';
		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 .= "<strong>https connection failed. Trying again with auto failover to http.</strong>\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",'<br />',print_r($j,true));
		$o .= '</pre>';
	}
	return $o;
}