X-Git-Url: https://git.cweiske.de/linksys-wrt3g-tools.git/blobdiff_plain/8735a31fb391e9ef228f23873addb015385c77b4..b92abe47b7290b0e861ddadaa7abcde5bc65cd6e:/scripts/linksys-wrt3g.php diff --git a/scripts/linksys-wrt3g.php b/scripts/linksys-wrt3g.php index e9279e3..7d87cd1 100755 --- a/scripts/linksys-wrt3g.php +++ b/scripts/linksys-wrt3g.php @@ -72,13 +72,29 @@ $parser->addOption( ) ); -$parser->addCommand( +$stCmd = $parser->addCommand( 'status', array( 'aliases' => array('s', 'st'), - 'description' => 'Show the router status' + 'description' => 'Show the connection status' + ) +); +$stCmd = $parser->addCommand( + 'cardstatus', + array( + 'aliases' => array('c', 'cs'), + 'description' => 'Show the card/SIM status' ) ); +$stCmd = $parser->addCommand( + 'allstatus', + array( + 'aliases' => array('a', 'as'), + 'description' => 'Show all status details' + ) +); + + $parser->addCommand( 'reboot', array( @@ -101,6 +117,8 @@ try { $router->user = $result->options['user']; $router->password = $result->options['password']; + $router->log('Command: ' . $result->command_name, 2); + switch ($result->command_name) { case 'reboot': $resp = $router->reboot(); @@ -110,9 +128,17 @@ try { } break; + case 'allstatus': + case 'cardstatus': case 'status': default: - $arStatus = $router->getStatus(); + if ($result->command_name == 'allstatus') { + $arStatus = $router->getFullStatus(); + } else if ($result->command_name == 'cardstatus') { + $arStatus = $router->getCardStatus(); + } else { + $arStatus = $router->getConnectionStatus(); + } foreach ($arStatus as $key => $value) { echo $key . ': ' . $value . "\n"; }