From de8eaf901067d4e0c72e5b0ca05f6dc12553fd79 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Paul=20H=C3=A4nsch?= Date: Mon, 19 Nov 2018 13:03:26 +0100 Subject: [PATCH] split code into multiple files --- clients.sh | 50 ++++++++++++ invoices.cgi | 224 +++------------------------------------------------ invoices.sh | 128 +++++++++++++++++++++++++++++ senders.sh | 44 ++++++++++ 4 files changed, 235 insertions(+), 211 deletions(-) create mode 100755 clients.sh create mode 100755 invoices.sh create mode 100755 senders.sh diff --git a/clients.sh b/clients.sh new file mode 100755 index 0000000..fc047a2 --- /dev/null +++ b/clients.sh @@ -0,0 +1,50 @@ +#!/bin/sh + +edit_client(){ + id="$1" + if [ -f "clients/$id" ]; then + read -r address hourly <"clients/$id" + fi + [ "$address" ] || address="address=" + [ "$hourly" ] || hourly="hourly=" + printf ' + [form method="POST" action="/update_client" + [hidden "id" "%s"] + + [label for=hourly Hourly Rate:] + [input #hourly type=number name=hourly value="%s"] + [submit "update" "update" Update] + ]' \ + "$(HTML $id)" \ + "$(UNSTRING "${address#address=}" |HTML)" \ + "$(UNSTRING "${hourly#hourly=}" |grep -xE '[0-9]+')" +} + +list_clients(){ + [ -d clients/ ] && for c in clients/*; do + read -r address hourly <"$c" + address="$(UNSTRING "${address#address=}")" + [ "$address" ] || address="(no address)" + printf '[div .client .address %s + +[label Hourly Rate:] %s€ + [a href="/clients/%s" Edit]] + ' "$(HTML "$address")" \ + "$(HTML "${hourly#hourly=}")" \ + "$(HTML "${c#clients/}")" + done +} + +update_client(){ + id="$(POST id |checkid)" + if [ "$(POST update)" = update -a "$id" ]; then + mkdir -p clients + printf 'address=%s hourly=%s' \ + "$(POST address |STRING)" "$(POST hourly |STRING)" \ + >"clients/$id" + else + echo Invalid Data "$(POST id)" "$(POST update)" >&2 + fi +} diff --git a/invoices.cgi b/invoices.cgi index cc505d4..7e2f351 100755 --- a/invoices.cgi +++ b/invoices.cgi @@ -8,7 +8,7 @@ _EXEC="$(realpath "${0%/*}")" yield_page(){ printf 'Content-Type: text/html; charset=utf-8\r\n\r\n' -./cgilite/html-sh.sed < -%s - [label for=hourly Hourly Rate:] - [input #hourly type=number name=hourly value="%s"] - [submit "update" "update" Update] - ]' \ - "$(HTML $id)" \ - "$(UNSTRING "${address#address=}" |HTML)" \ - "$(UNSTRING "${hourly#hourly=}" |grep -xE '[0-9]+')" -} - -edit_sender(){ - id="$1" - if [ -f "senders/$id" ]; then - address="$(cat "senders/$id")" - fi - [ "$address" ] || address="Name -Street -City - -Phone: -000 000000 - -Tax no. -xxx / 000 / ### -" - printf ' - [form method="POST" action="/update_sender" - [hidden "id" "%s"] - - [submit "update" "update" Update] - ]' \ - "$(HTML $id)" \ - "$(HTML "${address}")" -} - -list_clients(){ - [ -d clients/ ] && for c in clients/*; do - read -r address hourly <"$c" - address="$(UNSTRING "${address#address=}")" - [ "$address" ] || address="(no address)" - printf '[div .client .address %s - -[label Hourly Rate:] %s€ - [a href="/clients/%s" Edit]] - ' "$(HTML "$address")" \ - "$(HTML "${hourly#hourly=}")" \ - "$(HTML "${c#clients/}")" - done -} - -list_senders(){ - [ -d senders/ ] && for s in senders/*; do - address=$(cat "$s") - [ "$address" ] || address="(no address)" - printf '[div .sender .address %s[a href="/senders/%s" Edit]] - ' "$(HTML "$address")" "$(HTML "${s#senders/}")" - done -} - -sender_list(){ - local select="$1" n name - [ -d senders/ ] && for n in '' senders/*; do - [ "$n" ] && name="$(sed q "$n" |HTML)" - [ "${n#senders/}" = "$select" ] \ - && printf '' "${n#senders/}" "$name" \ - || printf '' "${n#senders/}" "$name" - done -} - -client_list(){ - local select="$1" n address hourly name - [ -d clients/ ] && for n in '' clients/*; do - [ "$n" ] && read -r address hourly <"$n" - name="$(UNSTRING "${address#address=}" |sed q |HTML)" - [ "${n#clients/}" = "$select" ] \ - && printf '' "${n#clients/}" "$name" \ - || printf '' "${n#clients/}" "$name" - done -} - -list_invoices(){ - [ -d invoices/ ] && for i in invoices/*; do - read -r sender client date number vat vatrate<<-EOF - $(sed q "$i") - EOF - [ -f "senders/${sender#sender=}" ] \ - && sender="$(sed q "senders/${sender#sender=}")" \ - || sender="(unset)" - [ ! -f "clients/${client#client=}" ] \ - && client="(unset)" \ - || read -r client hourly <"clients/${client#client=}" - [ "${date#date=}" -ge 0 ] 2>&- \ - && date="$(date -d "@${date#date=}" +%x)" \ - || date="(unset)" - - printf '[div .invoice - [h2 - %s] - [label From:] %s [label To:] %s [label on] %s - [a href="/invoice/%s" Edit] - ]' "$(UNSTRING "${number#number=}" |HTML)" \ - "$(HTML "$sender")" \ - "$(UNSTRING "${client#address=}" |sed q |HTML)" "$(HTML "$date")" \ - "$(HTML ${i#invoices/})" - done -} - -edit_invoice(){ - id="$1" - if [ -f "invoices/$id" ]; then - read -r sender client date number vat vatrate<<-EOF - $(sed q "invoices/$id") - EOF - fi - - [ "${date#date=}" -ge 0 ] 2>&- \ - && date="$(date -d "@${date#date=}" +%F)" \ - || date="$(date +%F)" - [ "${number#number=}" ] || number="number=$(date +%s)" - [ "${vatrate#vatrate=}" -ge 0 ] 2>&- || vatrate="vatrate=19" - - cat <<-EOF - [form method="POST" action="/update_invoice" - [hidden "id" "$(HTML "$id")"] - - [label Sender:] - [select name=sender - $(sender_list "${sender#sender=}") - ] - - [label Client:] - [select name=client - $(client_list "${client#client=}") - ] - - [label for=number Invoice Number:] - [input #number name=number value="$(UNSTRING "${number#number=}" |HTML)"] - - [label for=date Date:] - [input #date name=date value="${date}" placeholder="YYYY-MM-TT"] - - [radio "vat" "smallbusiness" #vatsb $([ "${vat#vat=}" = smallbusiness ] && printf checked) ] - [label for=vatsb Small business exemption from VAT] - [radio "vat" "nett" #vatnett $([ "${vat#vat=}" = nett ] && printf checked)] - [label for=vatnett Nett] - [radio "vat" "gross" #vatgross $([ "${vat#vat=}" = gross ] && printf checked)] - [label for=vatgross Gross] - [label for=vatrate VAT Rate: [input type=number name="vatrate" value="${vatrate#vatrate=}"]% ] - - [table - [tr [th Date] [th Work] [th Hours] [th Price] ] -$({ sed 1d "invoices/$id"; printf 'time= work= hours=\n'; } \ - | while read -r time work hours; do - hours="$(UNSTRING "${hours#hours=}" |grep -m1 -xE '[0-9]+' || printf 0)" - printf '[tr - [td [textarea name=date -%s] ] - [td [textarea name=work -%s] ] - [td [input type=number name=hours value="%s"] ] - [td %s] - ]' "$(UNSTRING "${time#time=}" |HTML)" \ - "$(UNSTRING "${work#work=}" |HTML)" \ - "$hours" "$((hours * hourly)) €" - done -) - ] - [submit "update" "update" Update] - ] - EOF -} - info="$(PATH "${PATH_INFO}")" case $info in @@ -217,61 +32,48 @@ case $info in FILE "$_EXEC/invoices.css" ;; /clients) + . "$_EXEC/clients.sh" { list_clients printf '[a .new href="/clients/%s" New]' "$(timeid)" } | yield_page clients ;; /clients/*) + . "$_EXEC/clients.sh" edit_client "${info#/clients/}" |yield_page client ;; /update_client) - id="$(POST id |checkid)" - if [ "$(POST update)" = update -a "$id" ]; then - mkdir -p clients - printf 'address=%s hourly=%s' \ - "$(POST address |STRING)" "$(POST hourly |STRING)" \ - >"clients/$id" - else - echo Invalid Data "$(POST id)" "$(POST update)" >&2 - fi + . "$_EXEC/clients.sh" + update_client REDIRECT /clients/ ;; /senders) + . "$_EXEC/senders.sh" { list_senders printf '[a .new href="/senders/%s" New]' "$(timeid)" } | yield_page senders ;; /senders/*) + . "$_EXEC/senders.sh" edit_sender "${info#/senders/}" |yield_page sender ;; /update_sender) - id="$(POST id |checkid)" - if [ "$(POST update)" = update -a "$id" ]; then - mkdir -p senders - POST address >"senders/$id" - fi + . "$_EXEC/senders.sh" + update_sender REDIRECT /senders/ ;; /invoices) + . "$_EXEC/invoices.sh" { list_invoices printf '[a .new href="/invoice/%s" New]' "$(timeid)" } | yield_page invoices ;; /invoice/*) + . "$_EXEC/invoices.sh" edit_invoice "${info#/invoice/}" |yield_page invoice ;; /update_invoice) - id="$(POST id |checkid)" - if [ "$(POST update)" = update -a "$id" ]; then - mkdir -p invoices - printf 'sender=%s client=%s date=%s number=%s vat=%s vatrate=%s\n' \ - "$(POST sender)" "$(POST client)" \ - "$(date -d "$(POST date)" +%s)" \ - "$(POST number |STRING)" \ - "$(POST vat |grep -m1 -xE 'smallbusiness|gross|nett')" \ - "$(POST vatrate |grep -m1 -xE '[0-9]+')" \ - >"invoices/$id" - fi + . "$_EXEC/invoices.sh" + update_invoice REDIRECT "/invoice/$id" ;; *) REDIRECT /invoices diff --git a/invoices.sh b/invoices.sh new file mode 100755 index 0000000..0e80115 --- /dev/null +++ b/invoices.sh @@ -0,0 +1,128 @@ +#!/bin/sh + +sender_list(){ + local select="$1" n name + [ -d senders/ ] && for n in '' senders/*; do + [ "$n" ] && name="$(sed q "$n" |HTML)" + [ "${n#senders/}" = "$select" ] \ + && printf '' "${n#senders/}" "$name" \ + || printf '' "${n#senders/}" "$name" + done +} + +client_list(){ + local select="$1" n address hourly name + [ -d clients/ ] && for n in '' clients/*; do + [ "$n" ] && read -r address hourly <"$n" + name="$(UNSTRING "${address#address=}" |sed q |HTML)" + [ "${n#clients/}" = "$select" ] \ + && printf '' "${n#clients/}" "$name" \ + || printf '' "${n#clients/}" "$name" + done +} + +list_invoices(){ + [ -d invoices/ ] && for i in invoices/*; do + read -r sender client date number vat vatrate<<-EOF + $(sed q "$i") + EOF + [ -f "senders/${sender#sender=}" ] \ + && sender="$(sed q "senders/${sender#sender=}")" \ + || sender="(unset)" + [ ! -f "clients/${client#client=}" ] \ + && client="(unset)" \ + || read -r client hourly <"clients/${client#client=}" + [ "${date#date=}" -ge 0 ] 2>&- \ + && date="$(date -d "@${date#date=}" +%x)" \ + || date="(unset)" + + printf '[div .invoice + [h2 + %s] + [label From:] %s [label To:] %s [label on] %s + [a href="/invoice/%s" Edit] + ]' "$(UNSTRING "${number#number=}" |HTML)" \ + "$(HTML "$sender")" \ + "$(UNSTRING "${client#address=}" |sed q |HTML)" "$(HTML "$date")" \ + "$(HTML ${i#invoices/})" + done +} + +edit_invoice(){ + id="$1" + if [ -f "invoices/$id" ]; then + read -r sender client date number vat vatrate<<-EOF + $(sed q "invoices/$id") + EOF + fi + + [ "${date#date=}" -ge 0 ] 2>&- \ + && date="$(date -d "@${date#date=}" +%F)" \ + || date="$(date +%F)" + [ "${number#number=}" ] || number="number=$(date +%s)" + [ "${vatrate#vatrate=}" -ge 0 ] 2>&- || vatrate="vatrate=19" + + cat <<-EOF + [form method="POST" action="/update_invoice" + [hidden "id" "$(HTML "$id")"] + + [label Sender:] + [select name=sender + $(sender_list "${sender#sender=}") + ] + + [label Client:] + [select name=client + $(client_list "${client#client=}") + ] + + [label for=number Invoice Number:] + [input #number name=number value="$(UNSTRING "${number#number=}" |HTML)"] + + [label for=date Date:] + [input #date name=date value="${date}" placeholder="YYYY-MM-TT"] + + [radio "vat" "smallbusiness" #vatsb $([ "${vat#vat=}" = smallbusiness ] && printf checked) ] + [label for=vatsb Small business exemption from VAT] + [radio "vat" "nett" #vatnett $([ "${vat#vat=}" = nett ] && printf checked)] + [label for=vatnett Nett] + [radio "vat" "gross" #vatgross $([ "${vat#vat=}" = gross ] && printf checked)] + [label for=vatgross Gross] + [label for=vatrate VAT Rate: [input type=number name="vatrate" value="${vatrate#vatrate=}"]% ] + + [table + [tr [th Date] [th Work] [th Hours] [th Price] ] +$({ sed 1d "invoices/$id"; printf 'time= work= hours=\n'; } \ + | while read -r time work hours; do + hours="$(UNSTRING "${hours#hours=}" |grep -m1 -xE '[0-9]+' || printf 0)" + printf '[tr + [td [textarea name=date +%s] ] + [td [textarea name=work +%s] ] + [td [input type=number name=hours value="%s"] ] + [td %s] + ]' "$(UNSTRING "${time#time=}" |HTML)" \ + "$(UNSTRING "${work#work=}" |HTML)" \ + "$hours" "$((hours * hourly)) €" + done +) + ] + [submit "update" "update" Update] + ] + EOF +} + +update_invoice(){ + id="$(POST id |checkid)" + if [ "$(POST update)" = update -a "$id" ]; then + mkdir -p invoices + printf 'sender=%s client=%s date=%s number=%s vat=%s vatrate=%s\n' \ + "$(POST sender)" "$(POST client)" \ + "$(date -d "$(POST date)" +%s)" \ + "$(POST number |STRING)" \ + "$(POST vat |grep -m1 -xE 'smallbusiness|gross|nett')" \ + "$(POST vatrate |grep -m1 -xE '[0-9]+')" \ + >"invoices/$id" + fi +} diff --git a/senders.sh b/senders.sh new file mode 100755 index 0000000..90c3d38 --- /dev/null +++ b/senders.sh @@ -0,0 +1,44 @@ +#!/bin/sh + +edit_sender(){ + id="$1" + if [ -f "senders/$id" ]; then + address="$(cat "senders/$id")" + fi + [ "$address" ] || address="Name +Street +City + +Phone: +000 000000 + +Tax no. +xxx / 000 / ### +" + printf ' + [form method="POST" action="/update_sender" + [hidden "id" "%s"] + + [submit "update" "update" Update] + ]' \ + "$(HTML $id)" \ + "$(HTML "${address}")" +} + +list_senders(){ + [ -d senders/ ] && for s in senders/*; do + address=$(cat "$s") + [ "$address" ] || address="(no address)" + printf '[div .sender .address %s[a href="/senders/%s" Edit]] + ' "$(HTML "$address")" "$(HTML "${s#senders/}")" + done +} + +update_sender(){ + id="$(POST id |checkid)" + if [ "$(POST update)" = update -a "$id" ]; then + mkdir -p senders + POST address >"senders/$id" + fi +} -- 2.39.2