X-Git-Url: https://git.plutz.net/?p=confetti;a=blobdiff_plain;f=pages%2Fcourses.sh;h=ad92ae7b0a161a31f3b9b5c0a6b2db08b97f87b5;hp=9610ec20df0883f724e5c34196b7b597b07ae450;hb=aba687547fe6e800530a9c20ccab24fc2152d6b0;hpb=c195881a2389862d4bfcd2fd55ca868f7a20b8e8 diff --git a/pages/courses.sh b/pages/courses.sh index 9610ec2..ad92ae7 100755 --- a/pages/courses.sh +++ b/pages/courses.sh @@ -1,16 +1,78 @@ -#!/bin/sh +#!/bin/zsh + +# Copyright 2014 Paul Hänsch +# +# This file is part of Confetti. +# +# Confetti is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Confetti is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with Confetti. If not, see . + +[ -z "${_GET[order]}" ] && _GET[order]=DOW + +listcards() { + ls -1 ${_DATA}/vcard/*vcf 2>/dev/null |while read file; do + fn=$(sed -rn 's:^N(;.+)*\:([^;]*;){1} *([^;]*).*$:\3:p' "$file") + echo "$fn\t$file" + done |sort |sed -r 's:^.*\t(.*/)([^/]+)$:\2:' +} + listcourses() { - case "$_GET[\"filtertype\"]" in + case "${_GET[filtertype]}" in *) ls -1 ${_DATA}/ical/*ics 2>/dev/null ;; - esac |case "$_GET[\"order\"]" in + esac |case "${_GET[order]}" in + DOW) + while read file; do + icstime="$(sed -rn 's:^DTSTART\:(TZID=.*\:)?([0-9]{4})([0-9]{2})([0-9]{2})T([0-9]{2})([0-9]{2})([0-9]{2})Z?\r$:\2-\3-\4 \5\:\6\:\7:p' "$file")" + echo "$(date -d "$icstime" "+%u %H%M%S")\t$file" + done + ;; + TOD) + while read file; do + icstime="$(sed -rn 's:^DTSTART\:(TZID=.*\:)?([0-9]{4})([0-9]{2})([0-9]{2})T([0-9]{2})([0-9]{2})([0-9]{2})Z?\r$:\2-\3-\4 \5\:\6\:\7:p' "$file")" + echo "$(date -d "$icstime" +%H%M%S)\t$file" + done + ;; *) sed -r 's:^.*$:x\t&:' ;; esac |sort |sed -r 's:^.*\t(.*/)([^/]+)$:\2:' } +list_attendance() { + id="$1" + sed -rn 's:'$id'\t(.+)$:\1:p' "$_DATA/mappings/attendance" |while read each; do + n_last="$( sed -rn 's:^N(;.+)*\:([^;]*;){0} *([^;]*).*$:\3:p' "$_DATA/vcard/$each")" + n_first="$( sed -rn 's:^N(;.+)*\:([^;]*;){1} *([^;]*).*$:\3:p' "$_DATA/vcard/$each")" + n_middle="$(sed -rn 's:^N(;.+)*\:([^;]*;){2} *([^;]*).*$:\3:p' "$_DATA/vcard/$each")" + n_pre="$( sed -rn 's:^N(;.+)*\:([^;]*;){3} *([^;]*).*$:\3:p' "$_DATA/vcard/$each")" + n_post="$( sed -rn 's:^N(;.+)*\:([^;]*;){4} *([^;]*).*$:\3:p' "$_DATA/vcard/$each")" + byear="$( sed -rn 's:^BDAY(;.+)*\:([0-9]{4})(-[0-9][0-9]){2}.*$:\2:p' "$_DATA/vcard/$each")" + aname="${n_pre} ${n_first} ${n_middle} ${n_last} ${n_post} (*${byear})" + echo "$each $aname" |tr -d '\r' + done +} + +course_mail() { + id="$1" + coursemail="" + sed -rn 's:'$id'\t(.+)$:\1:p' "$_DATA/mappings/attendance" |while read each; do + coursemail="$coursemail$(sed -rn 's:^EMAIL(;.+)*\:(.+)\r$:\2,:p' "$_DATA/vcard/$each")" + done + echo "$coursemail" +} + ics_parse() { tr -d '\n' <"$1" |sed -r 's:\r ::g;s:\r:\n:g' |tr -d '\r' \ | sed -r 's:^([^;\:]+)(;[^"\:]+|;"[^"]+")*\:(.*)$:key="\1"\nvalue="\3"\ntag=\2:g' \ @@ -112,17 +174,3 @@ edit_course() { #Parameter: Calendarfile done . ${_EXEC}/templates/edit_course.sh } - -case "$1" in - title) - echo "Kurse" - ;; - css) - . ${_EXEC}/templates/courses.css.sh - ;; - body) - . ${_EXEC}/templates/text_courses.sh - . ${_EXEC}/templates/courses.html.sh - ;; -esac -