From: Paul Hänsch Date: Tue, 25 Aug 2020 00:23:42 +0000 (+0200) Subject: introduce transaction id for therapy updates X-Git-Url: https://git.plutz.net/?a=commitdiff_plain;h=4e07a73ed0ab92f276d1d8ce6942bd92651efc3d;p=lobster introduce transaction id for therapy updates --- diff --git a/therapies/autosave.js b/therapies/autosave.js index b4020dd..665a601 100644 --- a/therapies/autosave.js +++ b/therapies/autosave.js @@ -4,6 +4,7 @@ var formdata = ''; function postsubmit(){ if ( this.status == 200 ) { + document.querySelector('#report input[name="tid"]').setAttribute('value', this.response); console.log('successful auto submit of form data'); button.setAttribute('style', 'display: none;'); } else { @@ -18,7 +19,7 @@ function failsubmit(){ function formencode(fd){ var send; - send='autosubmit=false'; + send='autosubmit=true'; for (var tup of fd.entries()){ send += '&' + encodeURIComponent(tup[0]) + '=' + encodeURIComponent(tup[1]); } diff --git a/therapies/page.sh b/therapies/page.sh index a38372f..fb86050 100755 --- a/therapies/page.sh +++ b/therapies/page.sh @@ -152,7 +152,7 @@ fi cat <. . "$_EXEC/pdiread.sh" -tpy=$(POST id) +tpy="$(POST id)" tpyfile="$_DATA/therapies/${tpy}.tpy" tempfile="$_DATA/temp/${tpy}.tpy" +if [ "$(POST tid)" != "$(transid "$tpyfile")" ]; then + if [ "$(POST autosubmit)" = "true" ]; then + printf 'Status: 409 Conflict\r\nContent-Length: 0\r\n\r\n' + exit 0 + else + SET_COOKIE session message="TRANSACTION CONFLICT" + REDIRECT "/therapies/${tpy%.*}/${tpy#*.}" + fi +fi + # serialize POST array into file for key in $(POST_KEYS); do case "$key" in - imagedata) : ;; + imagedata|tid) : ;; session*_date) value="$(POST "$key")" y=0 mon=0 dom=0 @@ -96,11 +106,15 @@ elif [ "$(POST imagedata)" ]; then sync fi -mv "$tempfile" "$tpyfile" -rm -f "${_DATA}/cache/${tpy%%.*}.vcf.cache" +if ! diff -q "$tempfile" "$tpyfile" >/dev/null; then + mv "$tempfile" "$tpyfile" + rm -f -- "${_DATA}/cache/${tpy%%.*}.vcf.cache" +fi if [ "$(POST autosubmit)" = "true" ]; then - printf 'HTTP/1.1 200 OK\r\nContent-Length: 0\r\n\r\n' + msg="$(transid "$tpyfile")" + printf 'HTTP/1.1 200 OK\r\nContent-Length: %i\r\n\r\n%s' \ + "${#msg}" "${msg}" else REDIRECT "/therapies/${tpy%.*}/${tpy#*.}" fi