]> git.plutz.net Git - confetti/blobdiff - actions/update_attendee.sh
Added AGPL License notice to every file
[confetti] / actions / update_attendee.sh
index 078d0966b232427c45a97381086ae440983044de..51dece85a676701cb1f33cbad6d0fe87a07d263c 100644 (file)
@@ -1,5 +1,22 @@
 #!/bin/zsh
 
 #!/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/>. 
+
 cgi_post
 cgi_refdata
 
 cgi_post
 cgi_refdata
 
@@ -12,6 +29,12 @@ tempfile="$_DATA/temp/$card"
 cardfile="$_DATA/vcard/$card"
 attfile="$_DATA/mappings/attendance"
 
 cardfile="$_DATA/vcard/$card"
 attfile="$_DATA/mappings/attendance"
 
+_POST["0N"]="$(echo "$_POST[\"0N\"]" |sed 's:;: :')"
+_POST["1N"]="$(echo "$_POST[\"1N\"]" |sed 's:;: :')"
+_POST["2N"]="$(echo "$_POST[\"2N\"]" |sed 's:;: :')"
+_POST["3N"]="$(echo "$_POST[\"3N\"]" |sed 's:;: :')"
+_POST["4N"]="$(echo "$_POST[\"4N\"]" |sed 's:;: :')"
+
 echo "BEGIN:VCARD\r" >"$tempfile"
 echo "VERSION:4.0\r" >>"$tempfile"
 echo "N:$_POST[\"0N\"];$_POST[\"1N\"];$_POST[\"2N\"];$_POST[\"3N\"];$_POST[\"4N\"]\r" >>"$tempfile"
 echo "BEGIN:VCARD\r" >"$tempfile"
 echo "VERSION:4.0\r" >>"$tempfile"
 echo "N:$_POST[\"0N\"];$_POST[\"1N\"];$_POST[\"2N\"];$_POST[\"3N\"];$_POST[\"4N\"]\r" >>"$tempfile"
@@ -43,7 +66,10 @@ case "$_POST[\"action\"]" in
     done
     sed -i -r '/^(.+)\t'$card'$/d' "$attfile"
     for each in $attendance; do
     done
     sed -i -r '/^(.+)\t'$card'$/d' "$attfile"
     for each in $attendance; do
-      echo "$each\t$card" >>"$attfile"
+      echo "$each\t$card"
+    done >>"$attfile"
+    sed -rn 's:^(.+)'$card'$:\1:p' "$attfile" |while read course; do
+      touch "$_DATA/ical/$course"
     done
 
     echo "END:VCARD\r" >>"$tempfile"
     done
 
     echo "END:VCARD\r" >>"$tempfile"