]> git.plutz.net Git - confetti/blob - cards/update_card.sh
switched #! line from zsh to sh
[confetti] / cards / update_card.sh
1 #!/bin/sh
2
3 # Copyright 2014, 2016, 2019, 2020, 2021 Paul Hänsch
4 #
5 # This file is part of Confetti.
6
7 # Confetti is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU Affero General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11
12 # Confetti is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU Affero General Public License for more details.
16
17 # You should have received a copy of the GNU Affero General Public License
18 # along with Confetti.  If not, see <http://www.gnu.org/licenses/>. 
19
20 . "$_EXEC/pdiread.sh"
21 . "$_EXEC/session_lock.sh"
22 . "$_EXEC/cgilite/storage.sh"
23
24 unset filter order card action newfield
25 unset cardfile attfile tempfile
26 unset vcf field cnt delete_key
27
28 filter="$(REF f)"
29 order="$(REF o)"
30
31 card="$(POST card |PATH)"; card="${card##*/}"
32 cardfile="$_DATA/vcard/${card}"
33 attfile="$_DATA/mappings/attendance"
34
35 action="$(POST action)"
36 newfield="$(POST newfield |grep -m 1 -xE '[A-Z][A-Z0-9-]*')"
37
38 if printf '%s\n' "$action" |grep -qxE 'addfield [A-Z][A-Z0-9]*'; then
39   newfield="${action##* }"
40   action=addfield
41 fi
42
43 if ! tempfile=$(CHECK_SLOCK "$cardfile"); then
44   SET_COOKIE 0 message="NO VALID FILE LOCK"
45   REDIRECT "/cards/?o=${order}&f=${filter}&e=${card}"
46   exit 0
47 elif [ "$(POST tid)" != "$(transid "$tempfile")" ]; then
48   SET_COOKIE 0 message="INVALID TRANSACTION ID"
49   REDIRECT "/cards/?o=${order}&f=${filter}&e=${card}"
50   exit 0
51 fi
52
53 vcf_escape(){
54   for each in "$@"; do
55     printf %s\\n "$each" \
56     | sed -E ':X;$!{N;bX}; s;\r\n;\n;g; s;([;,\\]);\\\1;g; s;\n;\\n;g;'
57   done \
58   | sed -E ':X;$!{N;bX}; s;\n;\;;g'
59 }
60
61 # [ "${_POST[hi_select]}" = "list" ] || _POST[hi_company]="${_POST[hi_other]}"
62 # [ -n "${_POST[hi_company]}${_POST[hi_number]}${_POST[hi_status]}" ] \
63 # && _POST[X-HEALTH-INSURANCE]="$(vcf_escape "${_POST[hi_company]}" "${_POST[hi_number]}" "${_POST[hi_status]}")"
64
65 vcf="$(pdi_load "$cardfile")"
66
67 vcf="$(pdi_update_value "$vcf" N 1 "$(vcf_escape "$(POST 1N)" "$(POST 2N)" "$(POST 3N)" "$(POST 4N)" "$(POST 5N)")")"
68 vcf="$(printf '%s\n' "$vcf" |sed -E "/^CATEGORIES;[^:]*:.*$/d")"
69
70 for field in $(POST_KEYS |grep -xE '[A-Z][A-Z0-9-]*'); do
71   for cnt in $(seq 1 $(POST_COUNT "$field")); do
72     case "$field" in
73       # (TEL)
74       #   printf '%s;TYPE=%s:%s\r\n' "${field}" "${_POST[phonetype${key#TEL}]}" "$(vcf_escape "$(POST "$field" "$cnt")")"
75       #   ;;
76       TEL)
77          vcf="$(pdi_update_attrib "$vcf" TEL $cnt TYPE="$(POST teltype $cnt |grep -Exm1 'HOME|WORK|CELL|FAX')")"
78          vcf="$(pdi_update_value "$vcf" "$field" "$cnt" "$(vcf_escape "$(POST "$field" "$cnt")")")"
79          ;;
80       *)
81          vcf="$(pdi_update_value "$vcf" "$field" "$cnt" "$(vcf_escape "$(POST "$field" "$cnt")")")"
82         ;;
83     esac
84 done; done
85
86 # delete fields, first mark for deletion using delete_key
87 # this way the field enumeration is preserved during the process
88 # finally filter marked lines
89 delete_key="$(randomid)"
90 for delete in $(POST_KEYS |grep -xE '[A-Z][A-Z0-9-]*_delete_[0-9]+'); do
91   f="${delete%%_*}"; c="${delete##*_}";
92   [ "$(POST "$delete")" = "true" ] && vcf="$(pdi_update_value "$vcf" "$f" "$c" "delete=${delete_key}")"
93 done
94 vcf="$(printf '%s\n' "$vcf" |sed -E "/^[^:]+:delete=${delete_key}\$/d")"
95
96 if [ "$action" = addfield ]; then
97   vcf="$(pdi_update_value "$vcf" "$newfield" $(( $(pdi_count "$vcf" "$newfield") + 1 )) '')"
98 fi
99 printf '%s' "$vcf" |grep -vx '' >"$tempfile"
100
101 case "$action" in
102   addfield)
103     REDIRECT "/cards/?o=${order}&f=${filter}&e=${card}"
104     ;;
105   update)
106     if LOCK "$attfile"; then
107       grep -F " ${card}" "$attfile" |while read course junk; do
108         touch "$_DATA/ical/${course}"
109       done
110       sed -i -E "/^.+   ${card}\$/d" "$attfile"
111       seq 1 $(POST_COUNT attendance) |while read n; do
112         printf '%s      %s\n' "$(POST attendance $n)" "$card"
113       done >>"$attfile"
114       grep -F " ${card}" "$attfile" |while read course junk; do
115         touch "$_DATA/ical/${course}"
116       done
117       RELEASE "$attfile"
118     else
119       SET_COOKIE 0 message="COULD NOT UPDATE COURSE MAPPINGS"
120     fi
121
122     cp "$tempfile" "$cardfile"
123     RELEASE_SLOCK "$cardfile"
124     REDIRECT "/cards/?o=${order}&f=${filter}#${card}"
125     ;;
126   cancel)
127     RELEASE_SLOCK "$cardfile"
128     [ -f "$cardfile" ] \
129     && REDIRECT "/cards/?o=${order}&f=${filter}#${card}" \
130     || REDIRECT "/cards/?o=${order}&f=${filter}"
131     ;;
132   delete)
133     rm "$cardfile"
134     RELEASE_SLOCK "$cardfile"
135     if LOCK "$attfile"; then
136       grep -F " ${card}" "$attfile" |while read course junk; do
137         touch "$_DATA/ical/${course}"
138       done
139       sed -i -E "/^.+   ${card}\$/d" "$attfile"
140       RELEASE "$attfile"
141     else
142       SET_COOKIE 0 message="COULD NOT UPDATE COURSE MAPPINGS"
143     fi
144     REDIRECT "/cards/?o=${order}&f=${filter}"
145     ;;
146 esac