Added a file manifest to track modifcations.
This commit is contained in:
parent
4c9f0fb967
commit
9928b9fcb5
@ -49,7 +49,7 @@ Options:
|
|||||||
|
|
||||||
-h --help Print this usage information.
|
-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"]:
|
if args["--help"]:
|
||||||
echo doc
|
echo doc
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# Package
|
# Package
|
||||||
|
|
||||||
version = "0.1.0"
|
version = "0.2.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"
|
||||||
|
@ -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] =
|
proc doStep(step: string, verbose: bool, cmd: string): tuple[output: TaintedString, exitCode: int] =
|
||||||
if verbose: echo "> " & cmd
|
if verbose: echo "> " & cmd
|
||||||
@ -21,7 +21,7 @@ Options:
|
|||||||
-V --version Print version information.
|
-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()
|
if args["--help"]: echo doc; quit()
|
||||||
|
|
||||||
@ -81,19 +81,19 @@ Options:
|
|||||||
|
|
||||||
for curDir in subDirs:
|
for curDir in subDirs:
|
||||||
let fullDirPath = tempdir & "/" & curDir
|
let fullDirPath = tempdir & "/" & curDir
|
||||||
let remoteOptions = " --user '" &
|
let userOption = " --user '" & ftpUsername & ":" & ftpPassword & "' "
|
||||||
ftpUsername & ":" & ftpPassword & "' '" &
|
let remoteOptions = userOption & " '" & ftpRoot & "/" & curDir & "/' "
|
||||||
ftpRoot & "/" & curDir & "/' "
|
|
||||||
|
|
||||||
# List the files on the server.
|
# Get the file manifest from the server.
|
||||||
(output, exitCode) = doStep("read remote files (" & curDir & ")", verbose,
|
(output, exitCode) = doStep("read remote files manifest (" & curDir & ")", verbose,
|
||||||
"curl " & remoteOptions)
|
"curl " & userOption & " '" & ftpRoot & "/" & curDir & "/mf.json'")
|
||||||
|
|
||||||
let remoteFiles = output.splitLines
|
var manifestUpdated = false
|
||||||
.filterIt(it.find(htmlFileRe).isSome)
|
|
||||||
.mapIt(it.find(htmlFileRe).get().captures[0])
|
var manifest: JsonNode
|
||||||
.toSet
|
try: manifest = parseJson(output)
|
||||||
|
except: manifest = newJObject()
|
||||||
|
|
||||||
# List the daily files locally.
|
# List the daily files locally.
|
||||||
let localFiles =
|
let localFiles =
|
||||||
sequtils.toSeq(walkDir(fullDirPath))
|
sequtils.toSeq(walkDir(fullDirPath))
|
||||||
@ -102,12 +102,16 @@ Options:
|
|||||||
.mapIt(it.path.find(mdFileRe).get().captures[0])
|
.mapIt(it.path.find(mdFileRe).get().captures[0])
|
||||||
.toSet
|
.toSet
|
||||||
|
|
||||||
# ID the files that are new (present locally but not remotely).
|
# ID the files that have changed or are missing.
|
||||||
let newFiles = localFiles - remoteFiles
|
for fileName in localFiles:
|
||||||
|
|
||||||
for fileName in newFiles:
|
|
||||||
let tempPath = fullDirPath & "/temp.html"
|
let tempPath = fullDirPath & "/temp.html"
|
||||||
let filePath = fullDirPath & "/" & fileName
|
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
|
# Compile the markdown into HTML
|
||||||
discard doStep("compile plan file (" & fileName & ")", verbose,
|
discard doStep("compile plan file (" & fileName & ")", verbose,
|
||||||
@ -121,6 +125,16 @@ Options:
|
|||||||
discard doStep("upload file to FastMail (" & fileName & ")", verbose,
|
discard doStep("upload file to FastMail (" & fileName & ")", verbose,
|
||||||
"curl -T '" & filePath & ".html' " & remoteOptions)
|
"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
|
# Delete local temp repo
|
||||||
if verbose: echo "Deleting " & tempdir
|
if verbose: echo "Deleting " & tempdir
|
||||||
removeDir(tempdir)
|
removeDir(tempdir)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user