aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-10-06 15:21:22 +0200
committerMario Vavti <mario@mariovavti.com>2018-10-06 15:21:22 +0200
commit6a297a8f3d5eb4c403a14799e83de22d0637b46d (patch)
treec4e5d7d92f9baaf10f89574f6d4ff071c2033aa0
parent453ce4df3bddab898f49102f74ffb072693e2dbd (diff)
downloadvolse-hubzilla-6a297a8f3d5eb4c403a14799e83de22d0637b46d.tar.gz
volse-hubzilla-6a297a8f3d5eb4c403a14799e83de22d0637b46d.tar.bz2
volse-hubzilla-6a297a8f3d5eb4c403a14799e83de22d0637b46d.zip
remote diagnostics app
-rw-r--r--Zotlabs/Module/Probe.php19
-rw-r--r--app/probe.apd4
2 files changed, 18 insertions, 5 deletions
diff --git a/Zotlabs/Module/Probe.php b/Zotlabs/Module/Probe.php
index 2c67c6aae..d338b08ea 100644
--- a/Zotlabs/Module/Probe.php
+++ b/Zotlabs/Module/Probe.php
@@ -1,16 +1,29 @@
<?php
namespace Zotlabs\Module;
-require_once('include/zot.php');
+use App;
+use Zotlabs\Lib\Apps;
+require_once('include/zot.php');
class Probe extends \Zotlabs\Web\Controller {
function get() {
+ if(local_channel()) {
+ if(! Apps::system_app_installed(local_channel(), 'Remote Diagnostics')) {
+ //Do not display any associated widgets at this point
+ App::$pdl = '';
+
+ $o = '<b>' . t('Remote Diagnostics App') . ' (' . t('Not Installed') . '):</b><br>';
+ $o .= t('Perform diagnostics on remote channels');
+ return $o;
+ }
+ }
+
nav_set_selected('Remote Diagnostics');
- $o .= '<h3>Probe Diagnostic</h3>';
+ $o .= '<h3>Remote Diagnostics</h3>';
$o .= '<form action="probe" method="get">';
$o .= 'Lookup address: <input type="text" style="width: 250px;" name="addr" value="' . $_GET['addr'] .'" />';
@@ -19,7 +32,7 @@ class Probe extends \Zotlabs\Web\Controller {
$o .= '<br /><br />';
if(x($_GET,'addr')) {
- $channel = \App::get_channel();
+ $channel = App::get_channel();
$addr = trim($_GET['addr']);
$do_import = ((intval($_GET['import']) && is_site_admin()) ? true : false);
diff --git a/app/probe.apd b/app/probe.apd
index c7b849ee1..19515c0aa 100644
--- a/app/probe.apd
+++ b/app/probe.apd
@@ -1,6 +1,6 @@
-version: 1
+version: 1.1
url: $baseurl/probe
requires: local_channel
name: Remote Diagnostics
photo: icon:user-md
-categories: System
+categories: Developer