commit 4eb7f6914b5c0e8842e5ab906c1149c6672923f5 Author: Jonathan Bernard Date: Wed May 3 09:58:14 2023 -0500 Initial commit. diff --git a/.nim_esv_api.nimble.swp b/.nim_esv_api.nimble.swp new file mode 100644 index 0000000..6c279bf Binary files /dev/null and b/.nim_esv_api.nimble.swp differ diff --git a/nim_esv_api.nimble b/nim_esv_api.nimble new file mode 100644 index 0000000..ffbbf06 --- /dev/null +++ b/nim_esv_api.nimble @@ -0,0 +1,14 @@ +# Package + +version = "0.1.0" +author = "Jonathan Bernard" +description = "Simple Nim CLI wrapper around the ESV API (api.esv.org)" +license = "MIT" +srcDir = "src" +bin = @["nim_esv_api"] + + +# Dependencies + +requires "nim >= 1.6.10" +requires @["docopt"] diff --git a/src/.nim_esv_api.nim.swp b/src/.nim_esv_api.nim.swp new file mode 100644 index 0000000..17dd6eb Binary files /dev/null and b/src/.nim_esv_api.nim.swp differ diff --git a/src/nim_esv_api.nim b/src/nim_esv_api.nim new file mode 100644 index 0000000..b90db2c --- /dev/null +++ b/src/nim_esv_api.nim @@ -0,0 +1,50 @@ +# Nim CLI Wrapper for the ESV API +# © 2023 Jonathan Bernard + +## Simple command-line wrapper around the ESV API. + +import std/[httpclient, json, logging] +import cliutils, docopt + +when isMainModule: + const USAGE = """Usage: + esv_api [options] + +Options: + + --debug Log debug information. + + --echo-args Echo back the arguments that were passed on the + command line for debugging purposes. + + -t, --esv-api-token Provide the API token on the command line. By + default this will be read either from the + .esv_api.cfg.json file or the ESV_API_TOKEN + envionment variable. +""" + + let consoleLogger = newConsoleLogger( + levelThreshold=lvlInfo, + fmtStr="pit - $levelname: ") + logging.addHandler(consoleLogger) + + try: + # Parse arguments + let args = docopt(USAGE, version = PIT_VERSION) + + if args["--debug"]: + consoleLogger.levelThreshold = lvlDebug + + if args["--echo-args"]: stderr.writeLine($args) + + let cfgFilePath = getEnv("HOME") / ".esv_api.cfg.json" + let cfgFileJson = + if fileExists(cfgFilePath): parseFile(cfgFilePath) + else: newJObject() + + let cfg = CombinedConfig(docopt: args, json: cfgFileJson) + + except CatchableError: + fatal getCurrentExceptionMsg() + debug getCurrentException().getStackTrace() + quit(QuitFailure)