' . t('Remote Diagnostics App') . ' (' . t('Not Installed') . '):
'; $o .= t('Perform diagnostics on remote channels'); return $o; } } nav_set_selected('Remote Diagnostics'); $o .= '

Remote Diagnostics

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

'; if(x($_GET,'addr')) { $channel = App::get_channel(); $addr = trim($_GET['addr']); $do_import = ((intval($_GET['import']) && is_site_admin()) ? true : false); $j = \Zotlabs\Zot\Finger::run($addr,$channel,false); $o .= '
';
			if(! $j['success']) {
				$o .= "https connection failed. Trying again with auto failover to http.\r\n\r\n";
				$j = \Zotlabs\Zot\Finger::run($addr,$channel,true);
				if(! $j['success']) {
					return $o;
				}
			}
			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; } }