]> git.plutz.net Git - busy/blob - actions/introedit.sh
prevent endless loop on malformed svn path
[busy] / actions / introedit.sh
1 #!/bin/zsh
2 # Copyright 2011 - 2014 Paul Haensch
3 # This file is part of Busy
4 #
5 # Busy 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 # Busy 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 Busy.  If not, see <http://www.gnu.org/licenses/>.
17
18
19 info="$(echo -E "$_GET[\"i\"]" |grep -Ex 'intro|news')"
20
21 if [ "$info" = "news" ]; then
22   $ACL_ADDNEWS || info=''
23 elif [ "$info" = "intro" ]; then
24   $ACL_EDITINTRO || info=''
25 elif [ -z "$info" ]; then
26   $ACL_EDITNEWS || info=''
27 fi
28 [ -n "$info" ] || echo -n "Location: //${HTTP_HOST}/?p=Error&i=noaccess\n\n"
29 [ -n "$info" ] || exit 0
30
31 [ "$info" = "news" ] && info="$(date +%s)_$(apg -M N -a 1 -n 1 -m 3 -x 3)"
32 [ "$info" != "intro" ] && info="${info}.news"
33 [ "$info" = "intro" ] && ($ACL_EDITINTRO || info='')
34
35 cgi_post
36
37 [ -z "$_POST[\"cancel\"]" ] && echo -E "$_POST[\"text\"]" >"$_DATA/Home/$info"
38
39 echo -n "Location: ${HTTP_REFERER}\n\n"