X-Git-Url: https://git.cweiske.de/shpub.git/blobdiff_plain/e4bedda9ac3854ceb3d7b88a83155558e9ea6062..6c791f2d0c159d56c570802c8d9bd3612262aa9e:/src/shpub/Command/Like.php diff --git a/src/shpub/Command/Like.php b/src/shpub/Command/Like.php index 26f615a..a619f7a 100644 --- a/src/shpub/Command/Like.php +++ b/src/shpub/Command/Like.php @@ -1,42 +1,44 @@ cfg = $cfg; + $cmd = $optParser->addCommand('like'); + $cmd->description = 'Create a 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->setType('entry'); + $req->addProperty('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); } } }