]> git.plutz.net Git - cgilite/blob - cgi.sh
introduced set_cookie function
[cgilite] / cgi.sh
1 #!/bin/zsh
2
3 # Copyright 2014,2015 Paul Hänsch
4 #
5 # This file is part of shcgi.
6
7 # shcgi is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU Affero General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11
12 # shcgi is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU Affero General Public License for more details.
16
17 # You should have received a copy of the GNU Affero General Public License
18 # along with shcgi.  If not, see <http://www.gnu.org/licenses/>. 
19
20 declare -A _GET
21 declare -A _POST
22 declare -A _REF
23 declare -A _COOKIE
24
25 [ -z "$HTTP_REFERER" ] && HTTP_REFERER="./"
26
27 cgi_get() {  # parse HTTP GET string
28   debug "== CGI DATA: GET =="
29   printf '%s\n' "$QUERY_STRING" |tr '&' '\n' |while read query; do
30     key="$(printf %s "$query" |sed -r 's:^([a-zA-Z0-9_-]+)=(.*)$:\1:')"
31     val="$(printf %s "$query" |sed -r 's:^([a-zA-Z0-9_-]+)=(.*)$:\2:')"
32     _GET[$key]="$(printf "$(printf %s "$val" |sed 's:+: :g;s:\\:\\\\:g;s:%:\\x:g')")"
33     debug "_GET[$key] => $val"
34   done
35 }
36
37 cgi_post() {  # parse HTTP POST string
38   debug "== CGI DATA: POST =="
39   sed -u 1q |tr '&' '\n' |while read query; do
40     key="$(printf %s "$query" |sed -r 's:^([a-zA-Z0-9_-]+)=(.*)$:\1:')"
41     val="$(printf %s "$query" |sed -r 's:^([a-zA-Z0-9_-]+)=(.*)$:\2:')"
42     value="$(printf "$(printf %s "$val" |sed 's:+: :g;s:\\:\\\\:g;s:%:\\x:g;')")"
43     if [ -n "${_POST[$key]}" ]; then
44       n=0
45       while [ -n "${_POST[$key$n]}" ]; do n=$(($n + 1)); done
46       _POST[$key$n]="$value"
47     else
48       _POST[$key]="$value"
49     fi
50     debug "_POST[$key] => $value"
51   done
52 }
53
54 cgi_refdata() { # Parse GET data from referer
55   debug "== CGI DATA: REFERER =="
56   printf '%s\n' "$HTTP_REFERER" |cut -d'?' -f2- |tr '&' '\n' |while read query; do
57     key="$(printf %s "$query" |sed -r 's:^([a-zA-Z0-9_-]+)=(.*)$:\1:')"
58     val="$(printf %s "$query" |sed -r 's:^([a-zA-Z0-9_-]+)=(.*)$:\2:')"
59     _REF[$key]="$(printf "$(printf %s "$val" |sed 's:+: :g;s:\\:\\\\:g;s:%:\\x:g')")"
60     debug "_REF[$key] => $val"
61   done
62 }
63
64 cgi_cookie() { # Parse GET data from referer
65   debug "== CGI DATA: COOKIE =="
66   printf '%s\n' "$HTTP_COOKIE" |tr ';' '\n' |while read query; do
67     key="$(printf %s "$query" |sed -r 's:^ *([a-zA-Z0-9_-]+)=(.*)$:\1:')"
68     val="$(printf %s "$query" |sed -r 's:^ *([a-zA-Z0-9_-]+)=(.*)$:\2:')"
69     _COOKIE[$key]="$(printf "$(printf %s "$val" |sed 's:+: :g;s:\\:\\\\:g;s:%:\\x:g')")"
70     debug "_COOKIE[$key] => $val"
71   done
72 }
73
74 urlsave(){
75   printf %s "$*" \
76   | sed 's;%;%25;g;
77          s; ;%20;g;
78          s;!;%21;g;
79          s;";%22;g;
80          s;&;%26;g;
81          s;(;%28;g;
82          s;);%29;g;
83          s;:;%3a;g
84          s;<;%3c;g;
85          s;>;%3e;g;
86          s;'\'';%27;g;
87          s;\?;%3f;g;'
88 }
89
90 redirect(){
91   printf '%s\n\n' "Location: $*"
92   exit 0
93 }
94
95 set_cookie(){
96   case "$1" in
97     session|0)  expire='';;
98     ''|default) expire="$(LANG=C date -d "+ 1 week" +'%a, %d %b %Y %T %Z')";;
99     *)          expire="$(LANG=C date -d "$1" +'%a, %d %b %Y %T %Z' 2>&-)";;
100   esac
101   cookie="$2"
102   
103   printf 'Set-Cookie: %s' "$cookie"
104   [ -n "$expire" ] && printf '; Expires=%s' "$expire" 
105   [ $# -ge 3 ] && shift 2 && printf '; %s' "$@"
106   printf '\n'
107 }