filtertype="&filtertype=$_REF[\"filtertype\"]"
order="&order=$_REF[\"order\"]"
-echo -n "Location: ?page=attendees${filter}${filtertype}${order}&edit=$card\n\n"
+echo -n "Location: ?p=attendees${filter}${filtertype}${order}&edit=$card\n\n"
course="$_GET[\"course\"]"
-echo -n "Location: ?page=courses&edit=$course\n\n"
+echo -n "Location: ?p=courses&edit=$course\n\n"
#!/bin/zsh
-# Copyright 2014 Paul Hänsch
+# Copyright 2014,2015 Paul Hänsch
#
# This file is part of Confetti.
#
# You should have received a copy of the GNU Affero General Public License
# along with Confetti. If not, see <http://www.gnu.org/licenses/>.
-ACTION="$(echo "$_GET[\"action\"]" |egrep '^[a-zA-Z0-9_-]+$')"
-ACTION="${_EXEC}/actions/${ACTION}.sh"
-[ -x "$ACTION" ] || echo -n "Location: ?page=error\n\n"
-
-. $ACTION
+echo -n "Content-Type: text/calendar;charset=utf-8\n\n"
+course="$_GET[\"course\"]"
+cat "$_DATA/ical/$course"
#!/bin/zsh
-# Copyright 2014 Paul Hänsch
+# Copyright 2014,2015 Paul Hänsch
#
# This file is part of Confetti.
#
# You should have received a copy of the GNU Affero General Public License
# along with Confetti. If not, see <http://www.gnu.org/licenses/>.
-case "$_GET[\"export\"]" in
- vcard)
- echo -n "Content-Type: text/vcard;charset=utf-8\n\n"
- card="$_GET[\"card\"]"
- cat "$_DATA/vcard/$card"
- ;;
- ical)
- echo -n "Content-Type: text/calendar;charset=utf-8\n\n"
- course="$_GET[\"course\"]"
- cat "$_DATA/ical/$course"
- ;;
-esac
+echo -n "Content-Type: text/vcard;charset=utf-8\n\n"
+card="$_GET[\"card\"]"
+cat "$_DATA/vcard/$card"
filter="$_POST[\"filter\"]"
filtertype="$_POST[\"filtertype\"]"
order="$_POST[\"order\"]"
- echo -n "Location: ?page=attendees&filter=$filter&filtertype=$filtertype&order=$order\n\n"
+ echo -n "Location: ?p=attendees&filter=$filter&filtertype=$filtertype&order=$order\n\n"
;;
*)
- echo -n "Location: ?page=attendees\n\n"
+ echo -n "Location: ?p=attendees\n\n"
;;
esac
END:VCARD
EOF
-echo -n "Location: ?page=attendees${filter}${filtertype}${order}&edit=$card\n\n"
+echo -n "Location: ?p=attendees${filter}${filtertype}${order}&edit=$card\n\n"
END:VCARD
EOF
-echo -n "Location: ?page=courses&edit=$course\n\n"
+echo -n "Location: ?p=courses&edit=$course\n\n"
addfield)
echo "$_POST[\"newfield\"]:\r" >>"$tempfile"
echo "END:VCARD\r" >>"$tempfile"
- echo -n "Location: ?page=attendees${filter}${filtertype}${order}&edit=$card\n\n"
+ echo -n "Location: ?p=attendees${filter}${filtertype}${order}&edit=$card\n\n"
;;
update)
attendance=()
echo "END:VCARD\r" >>"$tempfile"
mv "$tempfile" "$cardfile"
- echo -n "Location: ?page=attendees${filter}${filtertype}${order}#$card\n\n"
+ echo -n "Location: ?p=attendees${filter}${filtertype}${order}#$card\n\n"
;;
cancel)
rm "$tempfile"
[ -f "$cardfile" ] \
- && echo -n "Location: ?page=attendees${filter}${filtertype}${order}#$card\n\n" \
- || echo -n "Location: ?page=attendees${filter}${filtertype}${order}\n\n"
+ && echo -n "Location: ?p=attendees${filter}${filtertype}${order}#$card\n\n" \
+ || echo -n "Location: ?p=attendees${filter}${filtertype}${order}\n\n"
;;
delete)
rm "$tempfile" "$cardfile"
- echo -n "Location: ?page=attendees${filter}${filtertype}${order}\n\n"
+ echo -n "Location: ?p=attendees${filter}${filtertype}${order}\n\n"
;;
esac
echo "$_POST[\"newfield\"]:\r" >>"$tempfile"
echo "END:VEVENT\r" >>"$tempfile"
echo "END:VCALENDAR\r" >>"$tempfile"
- echo -n "Location: ?page=courses&edit=$course\n\n"
+ echo -n "Location: ?p=courses&edit=$course\n\n"
;;
update)
echo "END:VEVENT\r" >>"$tempfile"
echo "END:VCALENDAR\r" >>"$tempfile"
mv "$tempfile" "$coursefile"
- echo -n "Location: ?page=courses#$course\n\n"
+ echo -n "Location: ?p=courses#$course\n\n"
;;
cancel)
rm "$tempfile"
[ -f "$coursefile" ] \
- && echo -n "Location: ?page=courses#$course\n\n" \
- || echo -n "Location: ?page=courses\n\n"
+ && echo -n "Location: ?p=courses#$course\n\n" \
+ || echo -n "Location: ?p=courses\n\n"
;;
delete)
rm "$tempfile" "$coursefile"
- echo -n "Location: ?page=courses\n\n"
+ echo -n "Location: ?p=courses\n\n"
;;
*)
echo "END:VEVENT\r" >>"$tempfile"
echo "END:VCALENDAR\r" >>"$tempfile"
- echo -n "Location: ?page=courses&edit=$course\n\n"
+ echo -n "Location: ?p=courses&edit=$course\n\n"
;;
esac
+++ /dev/null
-#!/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 <http://www.gnu.org/licenses/>.
-
-declare -A _GET
-declare -A _POST
-declare -A _REF
-
-cgi_get() { # parse HTTP GET string
- echo "$QUERY_STRING" |tr '&' '\n' |while read query; do
- key="$(echo "$query" |sed -r 's:^([a-zA-Z0-9_-]*)=(.*)$:\1:')"
- val="$(echo "$query" |sed -r 's:^([a-zA-Z0-9_-]*)=(.*)$:\2:')"
- _GET["$key"]="$(echo -e "$(echo "$val" |sed 's:+: :g;s:%:\\x:g')")"
- done
-}
-
-cgi_post() { # parse HTTP POST string
- sed -u 1q |tr '&' '\n' |while read query; do
- key="$(echo "$query" |sed -r 's:^([a-zA-Z0-9_-]*)=(.*)$:\1:')"
- val="$(echo "$query" |sed -r 's:^([a-zA-Z0-9_-]*)=(.*)$:\2:')"
- value="$(echo -e "$(echo "$val" |sed 's:+: :g;s:%:\\x:g')")"
- if [ -n "$_POST[\"$key\"]" ]; then
- n=0
- while [ -n "$_POST[\"$key$n\"]" ]; do n=$(($n + 1)); done
- _POST["$key$n"]="$value"
- else
- _POST["$key"]="$value"
- fi
- #debug "_POST[$key] => $value"
- done
-}
-
-cgi_refdata() { # Parse GET data from referer
- echo "$HTTP_REFERER" |cut -d'?' -f2- |tr '&' '\n' |while read query; do
- key="$(echo "$query" |sed -r 's:^([a-zA-Z0-9_-]*)=(.*)$:\1:')"
- val="$(echo "$query" |sed -r 's:^([a-zA-Z0-9_-]*)=(.*)$:\2:')"
- _REF["$key"]="$(echo -e "$(echo "$val" |sed 's:+: :g;s:%:\\x:g')")"
- done
-}
#!/bin/zsh
-# Copyright 2014 Paul Hänsch
+# Copyright 2014,2015 Paul Hänsch
#
# This file is part of Confetti.
#
# You should have received a copy of the GNU Affero General Public License
# along with Confetti. If not, see <http://www.gnu.org/licenses/>.
+export LC_ALL=de_DE.UTF-8
+data_dirs vcard ical cache temp mappings
+
VCF_FIELDS=(PHOTO LOGO FN NICKNAME SOUND GENDER KIND TITLE ROLE ORG MEMBER CATEGORIES ANNIVERSARY BDAY EMAIL TEL IMPP ADR URL LANG NOTE RELATED X-ZACK-JOINDATE X-ZACK-LEAVEDATE)
uuidgenerator(){
+++ /dev/null
-#!/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 <http://www.gnu.org/licenses/>.
-
-export LC_ALL=de_DE.UTF-8
-DBG_ENABLED=false
-DBG_FILE=/dev/stderr
-
-# this program is supposed to be symlinked into a http root directory
-# we will use the http root as object storage (data directory) and call sub
-# programs from the directory in which the real executable resides
-# therefore we need to identify the code and data directories _EXEC and _DATA
-call="$0"
-real="$(readlink -f $call)"
-_EXEC="$(dirname "$real")" #execution directory
-_DATA="$(dirname "$call")" #storage directory
-
-# put debug options in the local.opts file
-[ -r "$_DATA/local.opts" ] && . "$_DATA/local.opts"
-
-# basic functions
-debug() { #change to false to disable debugging
- if [ "$DBG_ENABLED" = true -a -n "$*" ]; then
- echo -E "$*" >>"$DBG_FILE"
- elif [ "$DBG_ENABLED" = true -a -z "$*" ]; then
- tee -a "$DBG_FILE"
- elif [ -z "$*" ]; then
- cat
- fi
-}
-
-die() {
- debug "$*"
- echo -E "$*" >>/dev/stderr
- exit 1
-}
-
-# create directories for object storage
-[ -w "$_DATA" ] && [ -d "$_DATA" ] || die "storage directory must be writable"
-
-for each in "$_DATA"/{vcard,ical,cache,temp,mappings}; do
- [ ! -e "$each" ] && mkdir "$each"
- [ -w "$each" ] && [ -d "$each" ] || die "storage $each must be a writable directory"
-done
-touch "$_DATA/mappings/attendance"
-
-# create htaccess file
-[ -f .htaccess ] || cat >.htaccess <<EOF
-Options +ExecCGI
-AddHandler cgi-script .cgi
-DirectoryIndex index.cgi
-EOF
-[ -f .htaccess ] || die "no htaccess file present and unable to create one"
-
-. "$_EXEC/cgi.sh"
-cgi_get
-
-. "$_EXEC/constants.sh"
-
-if [ -n "$_GET[\"action\"]" ]; then
- . "$_EXEC/action.sh"
-elif [ -n "$_GET[\"export\"]" ]; then
- . "$_EXEC/export.sh"
-else
- . "$_EXEC/page.sh"
-fi
+++ /dev/null
-# This file is meaningless in the exec directory
-# You can copy it to your data directory (usually
-# your HTTP root) to set per instance debug
-# options and the like
-# beware that the file is sourced as a shell script
-
-DBG_ENABLED=false
-DBG_FILE=/dev/stderr
+++ /dev/null
-#!/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 <http://www.gnu.org/licenses/>.
-
-echo -n "Content-Type: text/html;charset=utf-8\n\n"
-
-PAGE="$(echo "$_GET[\"page\"]" |egrep '^[a-zA-Z0-9_-]+$')"
-PAGE="${_EXEC}/pages/${PAGE}.sh"
-[ -x "$PAGE" ] || PAGE="${_EXEC}/pages/error.sh"
-
-NAVIGATION() {
- for each in "${_EXEC}"/pages/*.sh; do
- link="$(echo "$each" |sed -r "s:^.*/([^/]*)\.sh$:\1:")"
- title="$($each title)"
- [ -n "$title" ] && echo "?page=$link $title"
- done
-}
-
-. ${_EXEC}/templates/frame.html.sh
echo ' <span class="sectitle">'$(l10n course_attendance)'</span>'
sed -rn 's:(.*)\t'$id'$:\1:p' "$_DATA/mappings/attendance" |while read each; do
cname="$(sed -rn 's:^SUMMARY\:(.*)$:\1:p' "$_DATA/ical/$each")"
- echo ' <a class="item attendance" href="?page=courses#'$each'">'$cname'</a>'
+ echo ' <a class="item attendance" href="?p=courses#'$each'">'$cname'</a>'
done
echo ' </div>'
echo ''
echo ' <div class="section control">'
echo ' <a class="item control" href="?action=edit_attendee&card='${id}'">'$(l10n edit)'</a>'
-echo ' <a class="item control" href="?export=vcard&card='${id}'">'$(l10n vcf_export)'</a>'
+echo ' <a class="item control" href="?action=export_vcard&card='${id}'">'$(l10n vcf_export)'</a>'
echo ' </div>'
echo '</div>'
echo ' <div class="section attendance">'
echo ' <span class="sectitle">'$(l10n course_attendance)'</span>'
-list_attendance "$id" |sort -k 2 |sed -r 's:^([^ ]+) (.*)$:<a class="attendance" href="?page=attendees#\1">\2</a>:'
+list_attendance "$id" |sort -k 2 |sed -r 's:^([^ ]+) (.*)$:<a class="attendance" href="?p=attendees#\1">\2</a>:'
echo ' </div>'
echo ' <div class="section control">'
echo ' <a class="item control" href="?action=edit_course&course='${id}'">'$(l10n edit)'</a>'
echo ' <a class="item control" href="?action=generate_courselist&course='${id}'" target="_blank">'$(l10n courselist)'</a>'
-echo ' <a class="item control" href="?export=ical&course='${id}'">'$(l10n ics_export)'</a>'
+echo ' <a class="item control" href="?action=export_ical&course='${id}'">'$(l10n ics_export)'</a>'
echo ' <a class="item control" href="mailto:zack@vuesch.org?bcc='$(course_mail "$id")'">'$(l10n course_mail)'</a>'
echo ' </div>'
echo '<input type="hidden" name="UID" value="'$values["UID"]'"/>'