]> git.r.bdr.sh - rbdr/blog/blobdiff - bin/blog.js
Escape ampersand in titles
[rbdr/blog] / bin / blog.js
index 7864f9ba96b6be61e63d8d423f04bcc9260de791..a9e2d1eb380d860aa55272d93f84f8351d9b677c 100755 (executable)
@@ -1,13 +1,24 @@
 #!/usr/bin/env node
 'use strict';
 
+const Package = require('../package.json');
 const Config = require('../config/config');
 const Blog = require('..');
 const Minimist = require('minimist');
 
 const internals = {
   blog: new Blog(Config),
-  expectedKeys: ['add',  'generate', 'update', 'publish'],
+  expectedKeys: [
+    'add',
+    'generate',
+    'update',
+    'publish',
+    'publish-archive',
+    'add-remote',
+    'remove-remote',
+    'sync-up',
+    'sync-down',
+    'version'],
 
   // Application entry point. Reads arguments and calls the
   // corresponding method from the blog lib
@@ -22,6 +33,11 @@ const internals = {
 
           const value = parsedArguments[argument];
 
+          if (argument === 'version') {
+            console.log(Package.version);
+            return;
+          }
+
           if (argument === 'add') {
             await internals.blog.add(value);
             return;
@@ -41,6 +57,31 @@ const internals = {
             await internals.blog.publish(value);
             return;
           }
+
+          if (argument === 'publish-archive') {
+            await internals.blog.publishArchive(value);
+            return;
+          }
+
+          if (argument === 'add-remote') {
+            await internals.blog.addRemote(value);
+            return;
+          }
+
+          if (argument === 'remove-remote') {
+            await internals.blog.removeRemote();
+            return;
+          }
+
+          if (argument === 'sync-up') {
+            await internals.blog.syncUp();
+            return;
+          }
+
+          if (argument === 'sync-down') {
+            await internals.blog.syncDown();
+            return;
+          }
         }
       }
 
@@ -80,10 +121,16 @@ const internals = {
   _printUsage() {
 
     console.error('\nUsage:\n');
-    console.error('blog --add path/to/blog_post\t\t(creates new blog post)');
-    console.error('blog --update path/to/blog_post\t\t(updates latest blog post)');
+    console.error('blog --add <path_to_post>\t\t(creates new blog post)');
+    console.error('blog --update <path_to_post>\t\t(updates latest blog post)');
     console.error('blog --generate \t\t\t(generates the blog assets)');
-    console.error('blog --publish \t\t\t\t(publishes the blog)');
+    console.error('blog --publish <bucket> \t\t(publishes the blog to an S3 bucket)');
+    console.error('blog --publish-archive <destination> \t(publishes the archive to a remote host)');
+    console.error('blog --add-remote <git_url> \t\t(adds or updates a git remote to sync with)');
+    console.error('blog --remove-remote \t\t\t(removes the git remote)');
+    console.error('blog --sync-up \t\t\t\t(pushes to the git remote if configured)');
+    console.error('blog --sync-down \t\t\t(pulls from the git remote if configured)');
+    console.error('blog --version \t\t\t\t(print the version)');
   }
 };