3 # Copyright 2014, 2016, 2019, 2020, 2021 Paul Hänsch
5 # This file is part of Confetti.
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.
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.
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/>.
21 . "$_EXEC/session_lock.sh"
22 . "$_EXEC/cgilite/storage.sh"
24 unset filter order card action newfield
25 unset cardfile attfile tempfile
26 unset vcf field cnt delete_key
31 card="$(POST card |PATH)"; card="${card##*/}"
32 cardfile="$_DATA/vcard/${card}"
33 attfile="$_DATA/mappings/attendance"
35 action="$(POST action)"
36 newfield="$(POST newfield |grep -m 1 -xE '[A-Z][A-Z0-9-]*')"
38 if printf '%s\n' "$action" |grep -qxE 'addfield [A-Z][A-Z0-9]*'; then
39 newfield="${action##* }"
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}"
47 elif [ "$(POST tid)" != "$(transid "$tempfile")" ]; then
48 SET_COOKIE 0 message="INVALID TRANSACTION ID"
49 REDIRECT "/cards/?o=${order}&f=${filter}&e=${card}"
55 printf %s\\n "$each" \
56 | sed -E ':X;$!{N;bX}; s;\r\n;\n;g; s;([;,\\]);\\\1;g; s;\n;\\n;g;'
58 | sed -E ':X;$!{N;bX}; s;\n;\;;g'
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]}")"
65 vcf="$(pdi_load "$cardfile")"
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")"
70 for field in $(POST_KEYS |grep -xE '[A-Z][A-Z0-9-]*'); do
71 for cnt in $(seq 1 $(POST_COUNT "$field")); do
74 # printf '%s;TYPE=%s:%s\r\n' "${field}" "${_POST[phonetype${key#TEL}]}" "$(vcf_escape "$(POST "$field" "$cnt")")"
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")")")"
81 vcf="$(pdi_update_value "$vcf" "$field" "$cnt" "$(vcf_escape "$(POST "$field" "$cnt")")")"
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}")"
94 vcf="$(printf '%s\n' "$vcf" |sed -E "/^[^:]+:delete=${delete_key}\$/d")"
96 if [ "$action" = addfield ]; then
97 vcf="$(pdi_update_value "$vcf" "$newfield" $(( $(pdi_count "$vcf" "$newfield") + 1 )) '')"
99 printf '%s' "$vcf" |grep -vx '' >"$tempfile"
103 REDIRECT "/cards/?o=${order}&f=${filter}&e=${card}"
106 if LOCK "$attfile"; then
107 grep -F " ${card}" "$attfile" |while read course junk; do
108 touch "$_DATA/ical/${course}"
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"
114 grep -F " ${card}" "$attfile" |while read course junk; do
115 touch "$_DATA/ical/${course}"
119 SET_COOKIE 0 message="COULD NOT UPDATE COURSE MAPPINGS"
122 cp "$tempfile" "$cardfile"
123 RELEASE_SLOCK "$cardfile"
124 REDIRECT "/cards/?o=${order}&f=${filter}#${card}"
127 RELEASE_SLOCK "$cardfile"
129 && REDIRECT "/cards/?o=${order}&f=${filter}#${card}" \
130 || REDIRECT "/cards/?o=${order}&f=${filter}"
134 RELEASE_SLOCK "$cardfile"
135 if LOCK "$attfile"; then
136 grep -F " ${card}" "$attfile" |while read course junk; do
137 touch "$_DATA/ical/${course}"
139 sed -i -E "/^.+ ${card}\$/d" "$attfile"
142 SET_COOKIE 0 message="COULD NOT UPDATE COURSE MAPPINGS"
144 REDIRECT "/cards/?o=${order}&f=${filter}"