]> git.plutz.net Git - confetti/blob - courses/widgets.sh
41fc6866b70e6ea7d739d624a310c372795c2112
[confetti] / courses / widgets.sh
1 # Copyright 2014, 2019 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 check(){
19   [ "$1" = "$2" ] && printf 'checked="checked"'
20 }
21
22 edit="$(GET e)"
23 order="$(GET o |grep -m1 -xE 'DOW|TOD')"
24
25 w_sort_courses(){
26   cat <<-EOF
27         [form .sort .search action="?" method="GET"
28           [span .label $(l10n sort_order):]
29           [radio "order" "DOW" $(check $order DOW) $(l10n order_DOW)]
30           [radio "order" "TOD" $(check $order TOD) $(l10n order_TOD)]
31           [submit "" "" $(l10n order_apply)]
32         ]
33         EOF
34 }
35
36 cal_date(){
37   { [ $# -eq 0 ] && cat || printf %s "$*"; } |sed -rnE '
38     2q
39     s/^([0-9]{4})([0-9]{2})([0-9]{2})T([0-9]{2})([0-9]{2})([0-9]{2})Z$/\1-\2-\3 \4:\5:\6 UTC/p;t
40     s/^TZID=(.+)\:([0-9]{4})([0-9]{2})([0-9]{2})T([0-9]{2})([0-9]{2})([0-9]{2})$/TZ="\1" \2-\3-\4 \5:\6:\7/p;t
41     s/^([0-9]{4})([0-9]{2})([0-9]{2})T([0-9]{2})([0-9]{2})([0-9]{2})$/\1-\2-\3 \4:\5:\6/p;t
42   '
43 }
44
45 cal_item(){
46   local course="$1"
47   local item cnt c
48   shift 1
49
50   for item in $@; do
51     cnt="$(pdi_count "$course" "$item")"
52
53     case $item in
54       SUMMARY)
55         printf '[h2 &shy%s]' "$(pdi_value "$course" SUMMARY)"
56         ;;
57       DTSTART)
58         printf '[span .text .DTSTART %s %s ]' \
59                "$(date -d "$(pdi_value "$course" DTSTART |cal_date)" '+%A %B %d, %Y - %H:%M')" \
60                "$(l10n t_oclock)"
61         ;;
62       RRULE)
63         dts_date="$(pdi_value "$course" DTSTART |cal_date)"
64         rrule=" $(pdi_value "$course" RRULE)"
65         rr_int="${rrule##*INTERVAL=}"; rr_int="${rr_int%%;*}"
66         rr_count="${rrule##*COUNT=}"; rr_count="${rr_count%%;*}"
67         rr_freq="${rrule##*FREQ=}"; rr_freq="${rr_freq%%;*}"
68         rr_until="${rrule##*UNTIL=}"; rr_until="${rr_until%%;*}"
69         rr_until="$(cal_date "${rr_until}")"
70
71         [ "$rr_int" -eq 1 ] \
72         && printf '[span .text .RRULE %s]' "$(l10n "s$rr_freq")" \
73         || printf '[span .text .RRULE %s %s %s]' "$(l10n t_every)" "${rr_int}" "$(l10n $rr_freq)"
74         case "$rrule $rr_freq" in
75           *COUNT*DAILY*)
76             printf '[span .text %s %s]' "$(l10n t_until)" "$(date -d "$dts_date + $((rr_int * rr_count)) day" "+%A %B %d, %Y - %H:%M")"
77             ;;
78           *COUNT*WEEKLY*)
79             printf '[span .text %s %s]' "$(l10n t_until)" "$(date -d "$dts_date + $((rr_int * rr_count)) week" "+%A %B %d, %Y - %H:%M")"
80             ;;
81           *COUNT*MONTHLY*)
82             printf '[span .text %s %s]' "$(l10n t_until)" "$(date -d "$dts_date + $((rr_int * rr_count)) month" "+%A %B %d, %Y - %H:%M")"
83             ;;
84           *COUNT*YEARLY*)
85             printf '[span .text %s %s]' "$(l10n t_until)" "$(date -d "$dts_date + $((rr_int * rr_count)) year" "+%A %B %d, %Y - %H:%M")"
86             ;;
87           *UNTIL*)
88             printf '[span .text %s %s]' "$(l10n t_until)" "$(date -d "$rr_until" "+%A %B %d, %Y - %H:%M")"
89             ;;
90         esac
91         ;;
92       attendance);;
93       COMMENT)[ $cnt -gt 0 ] && printf '[h3 %s]' "$(l10n "$item")"
94         seq 1 $cnt |while read c; do
95           printf '[p .item .%s &shy;%s]' "$item" \
96                  "$(pdi_value "$course" "$item" $c |unescape |HTML)"
97         done
98         ;;
99       *)[ $cnt -gt 0 ] && printf '[h3 %s]' "$(l10n "$item")"
100         seq 1 $cnt |while read c; do
101           printf '[span .item .%s &shy;%s]' "$item" \
102                  "$(pdi_value "$course" "$item" $c |unescape |HTML)"
103         done
104         ;;
105     esac
106   done
107 }
108
109 edit_item(){
110   local course="$1"
111   local item cnt c
112   shift 1
113
114   for item in $@; do
115     cnt="$(pdi_count "$course" "$item")"
116     [ $cnt -lt 1 ] && cnt=1
117
118     case $item in
119       DTSTART)
120         dtstart="$(pdi_value "$course" DTSTART |cal_date)"
121         ystart="${dtstart%%-*}"; ystart="${ystart##* }"
122         mstart="${dtstart#*-}"; mstart="${mstart%%-*}"
123         dstart="${dtstart##*-}"; dstart="${dstart%% *}"
124         hhstart="${dtstart##* }"; hhstart="${hhstart%%:*}"
125         mmstart="${dtstart##*:}";
126
127         printf '[div .section .DTSTART][h3 %s]' "$(l10n DTSTART)"
128         printf '[select .DTSYEAR name="DTSYEAR" onchange="this.form.submit();"'
129         seq $((ystart - 50)) $((ystart + 50)) |while read y; do
130           printf '[option value="%i" %s %i]' $y "$([ $y -eq $ystart ] && printf selected)" $y
131         done
132         printf ']'
133         printf '[select .DTSMONTH name="DTSMONTH" onchange="this.form.submit();"'
134         seq 1 12 |while read m; do
135           printf '[option value="%i" %s %s]' $m "$([ $m -eq $mstart ] && printf selected)" "$(date -d "2000-${m}-01" +%B)"
136         done
137         printf '][submit "DTS" "update" .DTS %s]' "$(l10n edit_dtscal)"
138         printf 'mon tue wed thu fri sat sun' |xargs -n1 date -d '{}' +"[span .DTSCALHEAD %a]"
139         seq 2 "$(date -d ${ystart}-${mstart}-1 +%u)" |xargs -n1 printf '[span .DTSCAL]'
140         cnt=$(date -d ${dts_year}-${dts_month}-1 +%s)
141         dn=1; while [ "$(date ${ystart}-${mstart}-${dn} +%m)" -eq "$mstart" ]; do
142           printf '[input .DTSCAL type="radio" name="DTSDAY" #DTSCAL_%i value="%i" %s][label .DTSCAL for="DTSCAL_%i" %i]' \
143                  $dn $n "$([ $dn -eq "$dstart" ] && printf checked)" $dn $dn
144           dn=$((dn + 1))
145         done 2>/dev/null
146         printf '[span .DTSTIME %s:][select .DTSTIME name="DTSHOUR"' "$(l10n time)"
147         seq 0 23 |while read h; do
148           printf '[option value="%i" %s %i]' $h "$([ $h -eq $hhstart ] && printf checked)" $h
149         done
150         printf ']:[select .DTSTIME name="DTSMINUTE"'
151         seq 0 5 55 |while read m; do
152           printf '[option value="%i" %s %i]' $m "$([ $m -eq $mmstart ] && printf checked)" $m
153         done
154         printf ']'
155         ;;
156       RRULE)
157         ;;
158       COMMENT)
159         printf '[h3 %s]' "$(l10n "$item")"
160         seq 1 $cnt |while read c; do
161           printf '[checkbox "%s_delete_%i" "true" .delete #%s_delete_%i][label for="%s_delete_%i" %s]' \
162             "$item" $c "$item" $c "$item" $c "$(l10n delete)"
163           printf '<textarea class="item %s" name="%s">%s</textarea>' \
164             "$item" "$item" "$(pdi_value "$course" "$item" $c |unescape |HTML)"
165         done
166         printf '[button type="submit" name="action" value="addfield %s" %s ]' "$item" "$(l10n edit_addfield)"
167         ;;
168       attendance);;
169       SUMMARY|*)printf '[h3 %s]' "$(l10n "$item")"
170         seq 1 $cnt |while read c; do
171           printf '[checkbox "%s_delete_%i" "true" .delete #%s_delete_%i][label for="%s_delete_%i" %s]' \
172             "$item" $c "$item" $c "$item" $c "$(l10n delete)"
173           printf '[input .item .%s name="%s" value="%s" placeholder="%s"]' \
174             "$item" "$item" "$(pdi_value "$course" "$item" $c |unescape |HTML)" "$(l10n "$item")"
175         done
176         printf '[button type="submit" name="action" value="addfield %s" %s ]' "$item" "$(l10n edit_addfield)"
177         ;;
178     esac
179   done
180 }