Add basic command-line options and verbosity control.
This commit is contained in:
parent
6d45e214f4
commit
a3a6160636
@ -4,7 +4,7 @@ version = "0.1.0"
|
|||||||
author = "Jonathan Bernard"
|
author = "Jonathan Bernard"
|
||||||
description = "Little programs that reads my daily plan and notifies me of upcoming events."
|
description = "Little programs that reads my daily plan and notifies me of upcoming events."
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
bin = @["daily_notifier", "deploy_plans_to_fastmail"]
|
bin = @["daily_notifier", "deploy_plans_via_ftp"]
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
|
|
||||||
|
@ -1,19 +1,42 @@
|
|||||||
import json, nre, os, osproc, sequtils, sets, strutils, tempfile
|
import docopt, json, nre, os, osproc, sequtils, sets, strutils, tempfile
|
||||||
|
|
||||||
proc doStep(step, cmd: string): tuple[output: TaintedString, exitCode: int] =
|
proc doStep(step: string, verbose: bool, cmd: string): tuple[output: TaintedString, exitCode: int] =
|
||||||
echo "> " & cmd
|
if verbose: echo "> " & cmd
|
||||||
result = execCmdEx(cmd, {poUsePath})
|
result = execCmdEx(cmd, {poUsePath})
|
||||||
if result.exitCode != 0:
|
if result.exitCode != 0:
|
||||||
writeLine(stderr, "Failed step [" & step &
|
writeLine(stderr, "Failed step [" & step &
|
||||||
"] Received error code: " & $result.exitCode)
|
"] Received error code: " & $result.exitCode)
|
||||||
quit(1)
|
quit(1)
|
||||||
echo ""
|
if verbose: echo ""
|
||||||
|
|
||||||
when isMainModule:
|
when isMainModule:
|
||||||
let cfgFilePath = $getEnv("HOME") & "/.personal-planning.config.json"
|
let doc = """
|
||||||
|
Usage:
|
||||||
|
deploy_plans_via_ftp [options]
|
||||||
|
|
||||||
|
Options:
|
||||||
|
-c --config <cfgFile> Use <cfgFile> as the source of configuration.
|
||||||
|
-h --help Print this usage information.
|
||||||
|
-v --verbose Print verbose information about operations.
|
||||||
|
-V --version Print version information.
|
||||||
|
"""
|
||||||
|
|
||||||
|
let args = docopt(doc, version = "deploy_plans_via_ftp 0.1.0")
|
||||||
|
|
||||||
|
if args["--help"]: echo doc; quit()
|
||||||
|
|
||||||
|
let verbose = args["--verbose"]
|
||||||
|
let cfgFilePaths = @[
|
||||||
|
$getEnv("HOME") & "/.personal-planning.config.json",
|
||||||
|
if args["--config"]: $args["--config"] else:""]
|
||||||
|
|
||||||
|
let cfgFilePath =
|
||||||
|
foldl(cfgFilePaths, if len(a) > 0: a elif existsFile(b): b else: "not-exists")
|
||||||
|
|
||||||
if not existsFile(cfgFilePath):
|
if not existsFile(cfgFilePath):
|
||||||
quit("Cannot find config file: " & cfgFilePath, 2)
|
if args["--config"]:
|
||||||
|
quit("Cannot find config file: " & $args["--config"], 2)
|
||||||
|
else: quit("Cannot find config file: " & cfgFilePaths[0], 2)
|
||||||
|
|
||||||
var cfg: JsonNode
|
var cfg: JsonNode
|
||||||
try: cfg = parseFile(cfgFilePath)
|
try: cfg = parseFile(cfgFilePath)
|
||||||
@ -54,7 +77,7 @@ when isMainModule:
|
|||||||
let tempdir = mkdtemp("personal-planning-")
|
let tempdir = mkdtemp("personal-planning-")
|
||||||
|
|
||||||
# Checkout personal development repository (local clone)
|
# Checkout personal development repository (local clone)
|
||||||
discard doStep("clone repo", "git clone " & repoUrl & " " & tempdir)
|
discard doStep("clone repo", verbose, "git clone " & repoUrl & " " & tempdir)
|
||||||
|
|
||||||
for curDir in subDirs:
|
for curDir in subDirs:
|
||||||
let fullDirPath = tempdir & "/" & curDir
|
let fullDirPath = tempdir & "/" & curDir
|
||||||
@ -63,7 +86,7 @@ when isMainModule:
|
|||||||
ftpRoot & "/" & curDir & "/' "
|
ftpRoot & "/" & curDir & "/' "
|
||||||
|
|
||||||
# List the files on the server.
|
# List the files on the server.
|
||||||
(output, exitCode) = doStep("read remote files (" & curDir & ")",
|
(output, exitCode) = doStep("read remote files (" & curDir & ")", verbose,
|
||||||
"curl " & remoteOptions)
|
"curl " & remoteOptions)
|
||||||
|
|
||||||
let remoteFiles = output.splitLines
|
let remoteFiles = output.splitLines
|
||||||
@ -87,15 +110,15 @@ when isMainModule:
|
|||||||
let filePath = fullDirPath & "/" & fileName
|
let filePath = fullDirPath & "/" & fileName
|
||||||
|
|
||||||
# Compile the markdown into HTML
|
# Compile the markdown into HTML
|
||||||
discard doStep("compile plan file (" & fileName & ")",
|
discard doStep("compile plan file (" & fileName & ")", verbose,
|
||||||
"markdown " & filePath & ".md" & " > " & tempPath)
|
"markdown " & filePath & ".md" & " > " & tempPath)
|
||||||
|
|
||||||
# Concatenate the HTML template to create the final HTML
|
# Concatenate the HTML template to create the final HTML
|
||||||
discard doStep("concatenate HTML template (" & fileName & ")",
|
discard doStep("concatenate HTML template (" & fileName & ")", verbose,
|
||||||
"cat " & tempdir & "/code/start.html " & tempPath & " " &
|
"cat " & tempdir & "/code/start.html " & tempPath & " " &
|
||||||
tempdir & "/code/end.html > " & filePath & ".html")
|
tempdir & "/code/end.html > " & filePath & ".html")
|
||||||
# Upload the new file to FastMail
|
# Upload the new file to FastMail
|
||||||
discard doStep("upload file to FastMail (" & fileName & ")",
|
discard doStep("upload file to FastMail (" & fileName & ")", verbose,
|
||||||
"curl -T '" & filePath & ".html' " & remoteOptions)
|
"curl -T '" & filePath & ".html' " & remoteOptions)
|
||||||
|
|
||||||
# Delete local temp repo
|
# Delete local temp repo
|
||||||
|
Loading…
x
Reference in New Issue
Block a user