X-Git-Url: https://git.cweiske.de/shpub.git/blobdiff_plain/ff771ba0eca9e65b9cf6e06f50ff4e2b7d8da1ae..0103f507ef72ef369b2f7e9f90fe8922b691c33f:/src/shpub/Cli.php diff --git a/src/shpub/Cli.php b/src/shpub/Cli.php index 9740f4e..733f4df 100644 --- a/src/shpub/Cli.php +++ b/src/shpub/Cli.php @@ -24,7 +24,8 @@ class Cli $res->command->args['server'], $res->command->args['user'], $res->command->args['key'], - $res->command->options['force'] + $res->command->options['force'], + $res->command->options['scope'] ); break; @@ -49,7 +50,7 @@ class Cli /** * Let the CLI option parser parse the options. * - * @param object $parser Option parser + * @param object $optParser Option parser * * @return object Parsed command line parameters */ @@ -89,8 +90,9 @@ class Cli protected function loadOptParser() { $optParser = new \Console_CommandLine(); - $optParser->description = 'shpub'; - $optParser->version = '0.1.0'; + $optParser->name = 'shpub'; + $optParser->description = 'Command line micropub client'; + $optParser->version = '0.3.0'; $optParser->subcommand_required = true; $optParser->addOption( @@ -115,50 +117,9 @@ class Cli ) ); - $cmd = $optParser->addCommand('connect'); - $cmd->addOption( - 'force', - array( - 'short_name' => '-f', - 'long_name' => '--force-update', - 'description' => 'Force token update if token already available', - 'action' => 'StoreTrue', - 'default' => false, - ) - ); - $cmd->addArgument( - 'server', - [ - 'optional' => false, - 'description' => 'Server URL', - ] - ); - $cmd->addArgument( - 'user', - [ - 'optional' => true, - 'description' => 'User URL', - ] - ); - $cmd->addArgument( - 'key', - [ - 'optional' => true, - 'description' => 'Short name (key)', - ] - ); - - $cmd = $optParser->addCommand('server'); - $cmd->addOption( - 'verbose', - array( - 'short_name' => '-v', - 'long_name' => '--verbose', - 'description' => 'Show more server infos', - 'action' => 'StoreTrue', - 'default' => false, - ) - ); + Command_Connect::opts($optParser); + Command_Server::opts($optParser); + Command_Targets::opts($optParser); Command_Article::opts($optParser); Command_Note::opts($optParser); @@ -172,6 +133,8 @@ class Cli Command_Undelete::opts($optParser); Command_Update::opts($optParser); + Command_Upload::opts($optParser); + return $optParser; }