X-Git-Url: http://git.plutz.net/?p=cgilite;a=blobdiff_plain;f=index.cgi;h=92ccfd618583b874c3af61879b6b3c6287a2aec8;hp=b406bc9e827ff43b36e19bf6d7cd9a48efd01614;hb=456423f02f12ac71d2d14e1abf959dafdc5eb041;hpb=397e40b92e591ae9066dcabb414d8097555beea8 diff --git a/index.cgi b/index.cgi index b406bc9..92ccfd6 100755 --- a/index.cgi +++ b/index.cgi @@ -1,6 +1,6 @@ #!/bin/zsh -# Copyright 2014, 2015 Paul Hänsch +# Copyright 2014 - 2016 Paul Hänsch # # This file is part of shcgi. # @@ -29,6 +29,7 @@ _DATA="$(dirname "$call")" #storage directory _EXEC="${real%/shcgi/index.cgi}" #execution directory . "$_EXEC/shcgi/misc.sh" + # put debug options in the local.opts file . "$_EXEC/shcgi/debug.sh" [ -r "$_DATA/local.opts" ] && . "$_DATA/local.opts" @@ -37,8 +38,18 @@ _EXEC="${real%/shcgi/index.cgi}" #execution directory [ -x "$_EXEC/globals.sh" ] && . "$_EXEC/globals.sh" -if [ -n "${_GET[action]}" ]; then - . "$_EXEC/shcgi/action.sh" + PAGE=$(validate "${PAGE:-${_GET[page]}}" '[a-zA-Z0-9_-]+' '') +ACTION=$(validate "${ACTION:-${_GET[action]}}" '[a-zA-Z0-9_-]+' '') +STATIC=$(validate "${STATIC:-${_GET[static]}}" '[^\.]+' '') + +if [ -n "$PAGE" -a -x "${_EXEC}/pages/${PAGE}.sh" ]; then + . "$_EXEC/shcgi/page.sh" +elif [ -n "$ACTION" -a -x "${_EXEC}/actions/${ACTION}.sh" ]; then + . "${_EXEC}/actions/${ACTION}.sh" +elif [ -n "$STATIC" -a -e "${_EXEC}/static/${STATIC}" ]; then + . "$_EXEC/shcgi/static.sh" else + printf 'HTTP/1.1 404 Not Found\r\n' + PAGE=error . "$_EXEC/shcgi/page.sh" fi