X-Git-Url: https://git.cweiske.de/shpub.git/blobdiff_plain/e4bedda9ac3854ceb3d7b88a83155558e9ea6062..f46e4d3108d944bcf86f5905780f1fcfd441c036:/src/shpub/Command/Like.php diff --git a/src/shpub/Command/Like.php b/src/shpub/Command/Like.php index 26f615a..65020dc 100644 --- a/src/shpub/Command/Like.php +++ b/src/shpub/Command/Like.php @@ -1,42 +1,43 @@ cfg = $cfg; + $cmd = $optParser->addCommand('like'); + static::optsGeneric($cmd); + $cmd->addArgument( + 'url', + [ + 'optional' => false, + 'description' => 'URL that is liked', + ] + ); } - public function run($url) + public function run(\Console_CommandLine_Result $cmdRes) { - $url = Validator::url($url, 'url'); + $url = Validator::url($cmdRes->args['url'], 'url'); if ($url === false) { exit(10); } - $body = http_build_query( - [ - 'h' => 'entry', - 'like-of' => $url, - ] - ); - $req = new Request($this->cfg->host, $this->cfg); - $res = $req->send($body); + $req->req->addPostParameter('h', 'entry'); + $req->req->addPostParameter('like-of', $url); + + $this->handleGenericOptions($cmdRes, $req); + $res = $req->send(); + $postUrl = $res->getHeader('Location'); if ($postUrl === null) { Log::err('Error: Server sent no "Location" header and said:'); Log::err($res->getBody()); exit(20); } else { - echo "Like created at server\n"; - echo $postUrl . "\n"; + Log::info('Like created at server'); + Log::msg($postUrl); } } }