Add "json" option
[shpub.git] / src / shpub / Command / Article.php
index b51740de1487674143128fa52958e0f241ca2670..8445af49e7471eab0d803ad81c7fc03e41a37f07 100644 (file)
@@ -3,16 +3,6 @@ namespace shpub;
 
 class Command_Article extends Command_AbstractProps
 {
-    /**
-     * @var Config
-     */
-    protected $cfg;
-
-    public function __construct($cfg)
-    {
-        $this->cfg = $cfg;
-    }
-
     public static function opts(\Console_CommandLine $optParser)
     {
         $cmd = $optParser->addCommand('article');
@@ -48,14 +38,14 @@ class Command_Article extends Command_AbstractProps
     public function run(\Console_CommandLine_Result $cmdRes)
     {
         $req = new Request($this->cfg->host, $this->cfg);
-        $req->req->addPostParameter('h', 'entry');
-        $req->req->addPostParameter('name', $cmdRes->args['title']);
+        $req->setType('entry');
+        $req->addProperty('name', $cmdRes->args['title']);
         if ($cmdRes->options['html']) {
-            $req->req->addPostParameter(
-                'content[html]', $cmdRes->args['text']
+            $req->addProperty(
+                'content', ['html' => $cmdRes->args['text']]
             );
         } else {
-            $req->req->addPostParameter('content', $cmdRes->args['text']);
+            $req->addProperty('content', $cmdRes->args['text']);
         }
         $this->handleGenericOptions($cmdRes, $req);