Added a file manifest to track modifcations.

This commit is contained in:
Jonathan Bernard 2016-10-17 17:15:00 -05:00
parent 4c9f0fb967
commit 9928b9fcb5
3 changed files with 33 additions and 19 deletions

View File

@ -49,7 +49,7 @@ Options:
-h --help Print this usage information.
"""
let args = docopt(doc, version = "daily_notifier 0.1.0")
let args = docopt(doc, version = "daily_notifier 0.2.0")
if args["--help"]:
echo doc

View File

@ -1,6 +1,6 @@
# Package
version = "0.1.0"
version = "0.2.0"
author = "Jonathan Bernard"
description = "Little programs that reads my daily plan and notifies me of upcoming events."
license = "MIT"

View File

@ -1,4 +1,4 @@
import docopt, json, nre, os, osproc, sequtils, sets, strutils, tempfile
import docopt, json, md5, nre, os, osproc, sequtils, sets, strutils, tempfile
proc doStep(step: string, verbose: bool, cmd: string): tuple[output: TaintedString, exitCode: int] =
if verbose: echo "> " & cmd
@ -21,7 +21,7 @@ Options:
-V --version Print version information.
"""
let args = docopt(doc, version = "deploy_plans_via_ftp 0.1.0")
let args = docopt(doc, version = "deploy_plans_via_ftp 0.2.0")
if args["--help"]: echo doc; quit()
@ -81,19 +81,19 @@ Options:
for curDir in subDirs:
let fullDirPath = tempdir & "/" & curDir
let remoteOptions = " --user '" &
ftpUsername & ":" & ftpPassword & "' '" &
ftpRoot & "/" & curDir & "/' "
let userOption = " --user '" & ftpUsername & ":" & ftpPassword & "' "
let remoteOptions = userOption & " '" & ftpRoot & "/" & curDir & "/' "
# List the files on the server.
(output, exitCode) = doStep("read remote files (" & curDir & ")", verbose,
"curl " & remoteOptions)
# Get the file manifest from the server.
(output, exitCode) = doStep("read remote files manifest (" & curDir & ")", verbose,
"curl " & userOption & " '" & ftpRoot & "/" & curDir & "/mf.json'")
let remoteFiles = output.splitLines
.filterIt(it.find(htmlFileRe).isSome)
.mapIt(it.find(htmlFileRe).get().captures[0])
.toSet
var manifestUpdated = false
var manifest: JsonNode
try: manifest = parseJson(output)
except: manifest = newJObject()
# List the daily files locally.
let localFiles =
sequtils.toSeq(walkDir(fullDirPath))
@ -102,12 +102,16 @@ Options:
.mapIt(it.path.find(mdFileRe).get().captures[0])
.toSet
# ID the files that are new (present locally but not remotely).
let newFiles = localFiles - remoteFiles
for fileName in newFiles:
# ID the files that have changed or are missing.
for fileName in localFiles:
let tempPath = fullDirPath & "/temp.html"
let filePath = fullDirPath & "/" & fileName
let localMd5 = getMD5(readFile(filePath & ".md"))
let remoteMd5 =
if manifest.hasKey(fileName): manifest[fileName].getStr
else: getMD5("")
if localMd5 == remoteMd5: continue
# Compile the markdown into HTML
discard doStep("compile plan file (" & fileName & ")", verbose,
@ -121,6 +125,16 @@ Options:
discard doStep("upload file to FastMail (" & fileName & ")", verbose,
"curl -T '" & filePath & ".html' " & remoteOptions)
manifest[fileName] = %($localMd5)
manifestUpdated = true
# Upload the new manifest
if manifestUpdated:
let manifestFilePath = fullDirPath & "/mf.json"
writeFile(manifestFilePath, manifest.pretty)
discard doStep("upload updated manifest", verbose,
"curl -T '" & manifestFilePath & "' " & remoteOptions)
# Delete local temp repo
if verbose: echo "Deleting " & tempdir
removeDir(tempdir)