X-Git-Url: https://git.cweiske.de/shpub.git/blobdiff_plain/be472fa254f752d28b4254fc308d27c8057f2aab..7066ca245ef989b71e2ec71030ca9637d7196ff8:/src/shpub/Cli.php diff --git a/src/shpub/Cli.php b/src/shpub/Cli.php index 823e297..77b62cc 100644 --- a/src/shpub/Cli.php +++ b/src/shpub/Cli.php @@ -23,20 +23,25 @@ class Cli $cmd->run( $res->command->args['server'], $res->command->args['user'], - $res->command->args['key'] + $res->command->args['key'], + $res->command->options['force'] ); break; - case 'like': - $this->requireValidHost(); - $cmd = new Command_Like($this->cfg->host); - $cmd->run($res->command->args['url']); + + case 'server': + $cmd = new Command_Server($this->cfg); + $cmd->run($res->command->options['verbose']); break; + default: - var_dump($this->cfg->host, $res); - Log::err('FIXME'); + $class = 'shpub\\Command_' . ucfirst($res->command_name); + $this->requireValidHost(); + $cmd = new $class($this->cfg); + $cmd->run($res->command); + break; } } catch (\Exception $e) { - echo 'Error: ' . $e->getMessage() . "\n"; + Log::err('Error: ' . $e->getMessage()); exit(1); } } @@ -62,10 +67,13 @@ class Cli } else { $this->cfg->host = $this->cfg->hosts[$key]; } + } else { + $key = $this->cfg->getDefaultHost(); + if ($key !== null) { + $this->cfg->host = $this->cfg->hosts[$key]; + } } - if ($opts['user'] !== null) { - $this->cfg->host->user = $opts['user']; - } + $this->cfg->setDebug($opts['debug']); return $res; } catch (\Exception $exc) { @@ -82,7 +90,7 @@ class Cli { $optParser = new \Console_CommandLine(); $optParser->description = 'shpub'; - $optParser->version = '0.0.0'; + $optParser->version = '0.0.6'; $optParser->subcommand_required = true; $optParser->addOption( @@ -97,18 +105,27 @@ class Cli ) ); $optParser->addOption( - 'user', + 'debug', array( - 'short_name' => '-u', - 'long_name' => '--user', - 'description' => 'User URL', - 'help_name' => 'URL', - 'action' => 'StoreString', - 'default' => null, + 'short_name' => '-d', + 'long_name' => '--debug', + 'description' => 'Verbose output', + 'action' => 'StoreTrue', + 'default' => false, ) ); $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', [ @@ -119,7 +136,7 @@ class Cli $cmd->addArgument( 'user', [ - 'optional' => false, + 'optional' => true, 'description' => 'User URL', ] ); @@ -131,31 +148,28 @@ class Cli ] ); - //$cmd = $optParser->addCommand('post'); - $cmd = $optParser->addCommand('reply'); - $cmd->addArgument( - 'url', - [ - 'optional' => false, - 'description' => 'URL that is replied to', - ] - ); - $cmd->addArgument( - 'text', - [ - 'optional' => false, - 'description' => 'Reply text', - ] + $cmd = $optParser->addCommand('server'); + $cmd->addOption( + 'verbose', + array( + 'short_name' => '-v', + 'long_name' => '--verbose', + 'description' => 'Show more server infos', + 'action' => 'StoreTrue', + 'default' => false, + ) ); - $cmd = $optParser->addCommand('like'); - $cmd->addArgument( - 'url', - [ - 'optional' => false, - 'description' => 'URL that is liked', - ] - ); + Command_Article::opts($optParser); + Command_Note::opts($optParser); + Command_Reply::opts($optParser); + Command_Like::opts($optParser); + Command_Repost::opts($optParser); + Command_Rsvp::opts($optParser); + + Command_Delete::opts($optParser); + Command_Undelete::opts($optParser); + Command_Update::opts($optParser); return $optParser; } @@ -170,6 +184,8 @@ class Cli 'Server data incomplete. "shpub connect" first.' ); } + + $this->cfg->host->loadEndpoints(); } } ?>