]> git.plutz.net Git - busy/blob - actions/wikiedit.sh
12b9874083b0fea5f3fc197eea6a07f9bf716fdd
[busy] / actions / wikiedit.sh
1 #!/bin/zsh
2 # Copyright 2011 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 $ACL_WIKIEDIT || echo "Location: ?p=Error&i=noaccess\n\n"
19 $ACL_WIKIEDIT || exit 0
20
21 info="$(echo "$_GET[\"i\"]" |grep -Ex '[0-9]{10}_[0-9]{3}')"
22 [ -f "$_DATA/Wiki/$info.lock" ] && rm "$_DATA/Wiki/$info.lock"
23
24 cgi_post
25 page="$_POST[\"page\"]"
26 [ -n "$_POST[\"cancel\"]" ] && cancel=true
27
28 [ -z "$cancel" -a -f "$_DATA/Wiki/$info" ] && mv "$_DATA/Wiki/$info" "$_DATA/Wiki/$info.$(date +%s)"
29 [ -z "$cancel" ] && echo -e "${page}" >"$_DATA/Wiki/$info"
30
31 echo -n "Location: ?p=Wiki&i=$info\n\n"