3 # Copyright 2014, 2016, 2019 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"
27 cardfile="$_DATA/vcard/$card"
28 attfile="$_DATA/mappings/attendance"
30 if ! tempfile=$(CHECK_SLOCK "$cardfile"); then
31 SET_COOKIE 0 message="NO VALID FILE LOCK"
32 REDIRECT "/cards/?o=${order}&f=${filter}&e=${card}"
34 elif [ "$(POST tid)" != "$(transid "$tempfile")" ]; then
35 SET_COOKIE 0 message="INVALID TRANSACTION ID"
36 REDIRECT "/cards/?o=${order}&f=${filter}&e=${card}"
42 printf %s\\n "$each" \
43 | sed -E ':X;$!{N;bX}; s;\r\n;\n;g; s;([;,\\]);\\\1;g; s;\n;\\n;g;'
45 | sed -E ':X;$!{N;bX}; s;\n;\;;g'
48 # [ "${_POST[hi_select]}" = "list" ] || _POST[hi_company]="${_POST[hi_other]}"
49 # [ -n "${_POST[hi_company]}${_POST[hi_number]}${_POST[hi_status]}" ] \
50 # && _POST[X-HEALTH-INSURANCE]="$(vcf_escape "${_POST[hi_company]}" "${_POST[hi_number]}" "${_POST[hi_status]}")"
52 vcf="$(pdi_load "$cardfile")"
54 vcf="$(pdi_update_value "$vcf" N 1 "$(vcf_escape "$(POST 1N)" "$(POST 2N)" "$(POST 3N)" "$(POST 4N)" "$(POST 5N)")")"
56 for field in $(POST_KEYS |grep -xE '[A-Z][A-Z0-9-]*'); do
57 for cnt in $(seq 1 $(POST_COUNT "$field")); do
60 # printf '%s;TYPE=%s:%s\r\n' "${field}" "${_POST[phonetype${key#TEL}]}" "$(vcf_escape "$(POST "$field" "$cnt")")"
63 vcf="$(pdi_update_value "$vcf" "$field" "$cnt" "$(POST "$field" "$cnt")")"
67 [ "$(POST action)" = addfield ] && vcf="$(vcf_update_field "$vcf" "$(POST newfield)" $(($(pdi_count $(POST newfield)) + 1)) '')"
69 printf '%s' "$vcf" >"$tempfile"
71 case "$(POST action)" in
73 REDIRECT "/cards/?o=${order}&f=${filter}&e=${card}"
77 # for att in attendance attendance{0..100}; do
78 # [ -n "${_POST[$att]}" ] && attendance+=("${_POST[$att]}")
80 # sed -rn 's:^(.+)'$card'$:\1:p' "$attfile" |while read course; do
81 # touch "$_DATA/ical/$course"
83 # sed -i -r '/^(.+)\t'$card'$/d' "$attfile"
84 # for each in $attendance; do
87 # sed -rn 's:^(.+)'$card'$:\1:p' "$attfile" |while read course; do
88 # touch "$_DATA/ical/$course"
91 cp "$tempfile" "$cardfile"
92 RELEASE_SLOCK "$cardfile"
93 REDIRECT "/cards/?o=${order}&f=${filter}#${card}"
96 RELEASE_SLOCK "$cardfile"
98 && REDIRECT "/cards/?o=${order}&f=${filter}#${card}" \
99 || REDIRECT "/cards/?o=${order}&f=${filter}"
103 RELEASE_SLOCK "$cardfile"
104 REDIRECT "/cards/?o=${order}&f=${filter}"