]> git.plutz.net Git - confetti/blob - templates/edit_attendee.sh
unification of card editing functions
[confetti] / templates / edit_attendee.sh
1 # Copyright 2014 - 2016 Paul Hänsch
2 #
3 # This file is part of Confetti.
4
5 # Confetti is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9
10 # Confetti is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU Affero General Public License for more details.
14
15 # You should have received a copy of the GNU Affero General Public License
16 # along with Confetti.  If not, see <http://www.gnu.org/licenses/>. 
17
18 setchecked() {
19   printf 'checked="checked"'
20 }
21 setselected() {
22   printf 'selected="selected"'
23 }
24 check_gen() {
25   [ "$values[GENDER]" = "$1" ] && setselected
26 }
27 check_a() {
28   egrep -q "^${1}.${id}$" "$_DATA/mappings/attendance" && setchecked
29 }
30 teltype() {
31   cat <<-EOF
32         <select class="item phonetype" name="phonetype">
33           <option value="" disabled="disabled" $([ -z "$1" ] && setselected )>$(l10n phone_typeselect)</option>
34           <option value=""></option>
35           <option value="HOME" $([ "$1" = HOME ] && setselected)>$(l10n phone_home)</option>
36           <option value="CELL" $([ "$1" = CELL ] && setselected)>$(l10n phone_cell)</option>
37           <option value="WORK" $([ "$1" = WORK ] && setselected)>$(l10n phone_work)</option>
38           <option value="FAX"  $([ "$1" = FAX  ] && setselected)>$(l10n phone_fax )</option>
39         </select>
40         EOF
41 }
42
43 list_items(){
44   item="$1"
45   placeholder="$2"
46   [ -n "${values[$item]+x}" ] && printf '<h3>%s</h3>\n' "$(l10n $item)"
47   for n in "$item" "$item"{0..100}; do
48     if [ -n "${values[$n]+x}" ]; then
49       case "$item" in
50         (ADR|NOTE)
51           printf '<textarea class="item %s" name="%s">%s</textarea>\n' \
52             "$item" "$item" "$(htmlsafe ${values[$n]})"
53           ;;
54         (TEL)
55           teltype "${values[${n}_TYPE]}"
56           printf '<input class="item %s" name="%s" value="%s" />\n' \
57             "$item" "$item" "$(attribsafe ${values[$n]})"
58           ;;
59         (*)
60           printf '<input class="item %s" name="%s" value="%s" placeholder="%s"/>\n' \
61             "$item" "$item" "$(attribsafe ${values[$n]})" "$placeholder"
62           ;;
63       esac
64     else
65       break
66     fi
67   done
68 }
69
70 list_section(){
71   printf '<div class="section %s">' "$1"
72   shift 1
73   for each in $@; do
74     list_items "$each"
75   done
76   printf '</div>'
77 }
78
79 hi_company="${values[X-HEALTH-INSURANCE+1]}"
80  hi_number="${values[X-HEALTH-INSURANCE+2]}"
81  hi_status="${values[X-HEALTH-INSURANCE+3]}"
82
83 [ -z "$values[UID]" ] && values[UID]="$(uuidgenerator)"
84
85 cat <<END_HTML
86 <form id="$id" class="card" action="?action=update_card" method="POST">
87   <input type="hidden" name="card" value="${id}"/>
88   <div class="section basic">
89     <h3>$(l10n N)</h3>
90     <input class="item N" name="3N" placeholder="$(l10n n_pre)" value="$values[N+3]" />
91     <input class="item N" name="1N" placeholder="$(l10n n_first)" value="$values[N+1]" />
92     <input class="item N" name="2N" placeholder="$(l10n n_middle)" value="$values[N+2]" />
93     <input class="item N" name="0N" placeholder="$(l10n n_last)" value="$values[N+0]" />
94     <input class="item N" name="4N" placeholder="$(l10n n_post)" value="$values[N+4]" />
95
96     <select class="item GENDER" name="GENDER">
97       <option value="" disabled="disabled">$(l10n GENDER)</option>
98       <option value="female" $(check_gen female)>$(l10n gender_female)</option>
99       <option value="male" $(check_gen male)>$(l10n gender_male)</option>
100       <option value="other" $(check_gen other)>$(l10n gender_other)</option>
101       <option value="none" $(check_gen none)>$(l10n gender_none)</option>
102     </select>
103 END_HTML
104
105     for n in NICKNAME NICKNAME{0..100}; do
106       [ -z "${values[$n]+x}" ] && break \
107       || printf '
108           <input class="item NICKNAME" name="NICKNAME" value="%s" placeholder="%s"/>
109       ' "$(attribsafe ${values[$n]})" "$(l10n NICKNAME)"
110     done
111
112     list_items BDAY YYYY-MM-DD
113     list_items X-ZACK-JOINDATE YYYY-MM-DD
114     list_items X-ZACK-LEAVEDATE YYYY-MM-DD
115
116     [ -n "$values[SOUND]" ] && printf '
117       <audio controls="controls" class="item SOUND">
118         <source type="audio/ogg" src="data:audio/ogg;base64,%s" />
119       </audio>' "$values[SOUND]"
120
121     [ -n "$values[PHOTO]" ] && printf '
122       <img class="item PHOTO" src="data:image/%s;base64,%s" />
123       ' "${values[PHOTO_TYPE]}" "${values[PHOTO]}"
124
125     [ -n "$values[LOGO]" ] && printf '
126       <img class="item PHOTO" src="data:image/%s;base64,%s" />
127       ' "${values[LOGO_TYPE]}" "${values[LOGO]}"
128
129 printf '</div>'
130
131 if [ "$PROFILE" = circus ]; then
132   list_section phone TEL
133   list_section message EMAIL IMPP URL
134   list_section address ADR
135   list_section note NOTE X-CLIENT-REFERRAL
136   cat <<-END_HTML
137         <div class="section attendance">
138           <h3>$(l10n course_attendance)</h3>
139           $(listcourses |while read each; do
140             cname="$(sed -rn 's:^SUMMARY\:(.*)$:\1:p' "$_DATA/ical/$each")"
141             printf '<label><input type="checkbox" name="attendance" value="%s" %s/>%s</label>' \
142               "$(attribsafe "$each")" "$(check_a "$each")" "$(htmlsafe "$cname")"
143           done)
144         </div>
145         END_HTML
146 elif [ "$PROFILE" = medical ]; then
147   list_section address ADR
148   list_section phone TEL EMAIL IMPP URL
149   cat <<-END_HTML
150         <div class="section insurance">
151           <h3>$(l10n X-HEALTH-INSURANCE)</h3>
152           <input type="radio" name="hi_select" value="list" id="hi_select_list" checked /><label for="hi_select_list">$(l10n hi_from_list)</label
153           ><input type="radio" name="hi_select" value="other" id="hi_other"><label for="hi_other">$(l10n hi_other)</label>
154           <select class="item" name="hi_company">
155             <option value="" disabled="disabled" ${hi_company:-selected}>$(l10n hi_company)</option>
156             $(list_hi_companies |while read -r f; do
157               printf '<option value="%s" %s>%s</option>
158               '  "$(attribsafe "$f")" "$([ "$f" = "$hi_company" ] && setselected )" "$(htmlsafe "$f")"
159             done)
160           </select>
161           <input type="text" name="hi_other" value="$hi_company" placeholder="$(l10n hi_company)" />
162           <input name="hi_number" value="$hi_number" placeholder="$(l10n hi_number)" />
163           <input name="hi_status" value="$hi_status" placeholder="$(l10n hi_status)" />
164         </div>
165         END_HTML
166   list_section note NOTE X-CLIENT-REFERRAL
167 fi
168
169
170 cat <<END_HTML
171   <div class="control">
172     <select class="item" name="newfield">
173       <option value="" disabled="disabled" selected="selected">$(l10n edit_addfieldtext)</option>
174       $(for f in $SUP_FIELDS; do printf '<option value="%s">%s</option>\n' "$f" "$(l10n "$f")"; done)
175     </select
176     ><button class="item" type="submit" name="action" value="addfield">$(l10n edit_addfield)</button>
177     <button class="item" type="submit" name="action" value="update">$(l10n edit_update)</button>
178     <input type="checkbox" id="delete"><label class="item" for="delete">$(l10n edit_delete)</label>
179       <button class="item" type="submit" name="action" value="delete">$(l10n edit_delete)</button>
180     <button class="item" type="submit" name="action" value="cancel">$(l10n edit_cancel)</button>
181   </div>
182   <input type="hidden" name="UID" value="$values[UID]"/>
183 </form>
184 END_HTML