]> git.plutz.net Git - cgilite/blob - static.sh
use proper cgi for response headers, switch cache machanism to timestamps
[cgilite] / static.sh
1 #!/bin/zsh
2
3 # Copyright 2016 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
21 unset length date file suffix
22 file="$1"
23 date="$(stat -c %Y "$file")"
24
25 # allow overriding magic file recognition
26 # don't use this if `file` returns type correctly
27 declare -A suffix
28 suffix[css]="text/css"
29
30 [ -n "$HTTP_IF_MODIFIED_SINCE" ] && cachedate="$(date -d "$HTTP_IF_MODIFIED_SINCE" +%s)"
31
32 if [ -x "$file" -o \! -r "$file" -o \! -f "$file" ]; then
33   printf 'Status:403 Forbidden\r\n\r\n'
34 elif [ "$date" = "$cachedate" ]; then
35   debug "Delegating to client cache"
36   printf 'Status:304 Not Modified\r\n'
37   printf 'Last-Modified: %s\r\n\r\n' "$(date -Rd "@$date")"
38 else
39   length="$(stat -c %s "$file")"
40   magic="${suffix[${file##*.}]:-$(file -bi "$file")}"
41
42   printf 'Last-Modified: %s\r\n' "$(date -Rd "@$date")"
43   printf 'Content-Type: %s\r\n' "${magic:-all/all}"
44   printf 'Content-Length: %s\r\n' "$length"
45   printf '\r\n'
46
47   cat "$file"
48 fi
49