X-Git-Url: https://git.plutz.net/?a=blobdiff_plain;f=index.cgi;fp=index.cgi;h=8bc1ad0d6777622ef57c59b94eded29fc35dbc11;hb=3e39dae6551b82017469fd4b2599a364ac288dba;hp=0694c6e4d9b5f8c9c9ea8fa3c744149d8a2ece86;hpb=5238c404a50861cf1dbbe610d2c4977c048d3b12;p=webpoll diff --git a/index.cgi b/index.cgi index 0694c6e..8bc1ad0 100755 --- a/index.cgi +++ b/index.cgi @@ -21,6 +21,7 @@ fi PATH_INFO="$(PATH "/${PATH_INFO#${_BASE}}")" #git init "$_DATA" >/dev/null & +bookmarks="$(COOKIE bookmarks |grep -xE '[0-9a-zA-Z:=]{16}(/[0-9a-zA-Z:=]{16})?( [0-9a-zA-Z:=]{16}(/[0-9a-zA-Z:=]{16})?)*')" yield_page(){ title="${1:-Webpoll}" page="$2" @@ -51,47 +52,16 @@ pagename() { fi } -page_home() { - if [ "$REQUEST_METHOD" = POST ]; then - case $(POST start) in - date) - id="$(randomid)" - touch "$_DATA/$id" - REDIRECT "$_BASE/$id/newdate" - ;; - options) - id="$(randomid)" - touch "$_DATA/$id" - REDIRECT "$_BASE/$id/newoptions" - ;; - *) REDIRECT "$_BASE/";; - esac - else - recent="$(COOKIE pages)" - yield_page "Start a Poll" "home" <<-EOF - [form method=post - [submit "start" "date" Start a new poll] - $(if [ "$recent" ]; then - printf '[h2 Recent Polls][ul .recent' - for page in $recent; do - [ -f "$_DATA/$(checkid "$page")" ] \ - && printf '[li [a href="./%s" . %s]]' "$page" "$(pagename "$page" |HTML)" - done - printf ']' - fi) - ] - EOF - fi -} + page_home() { . "$_EXEC"/home.sh; } page_newdate() { . "$_EXEC"/newdate.sh; } -page_poll() { . "$_EXEC/poll.sh"; } + page_poll() { . "$_EXEC"/poll.sh; } case ${PATH_INFO} in /favicon.ico) printf '%s\r\n' 'Content-Length: 0' '';; /common.css) FILE "$_EXEC/cgilite/common.css";; /widgets.css|/webpoll.css) FILE "${_EXEC}/${PATH_INFO}";; /) page_home;; - /*/newdate) page_newdate;; + /[0-9a-zA-Z:=]???????????????/[0-9a-zA-Z:=]???????????????) page_newdate;; /*/newoptions);; /[0-9a-zA-Z:=]???????????????) page_poll;; esac