]> git.plutz.net Git - shellwiki/blob - handlers/30_page.sh
Merge commit '6bc502434737d7f08379e79b94fc6fda424ef779'
[shellwiki] / handlers / 30_page.sh
1 #!/bin/sh
2
3 # Copyright 2022 - 2024 Paul Hänsch
4
5 # Permission to use, copy, modify, and/or distribute this software for any
6 # purpose with or without fee is hereby granted, provided that the above
7 # copyright notice and this permission notice appear in all copies.
8
9 # THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
12 # SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
15 # IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16
17 . "$_EXEC/cgilite/file.sh"
18
19 case "${PATH_INFO}" in
20   /"[.]"/*)
21     # usually some file related to theme
22     # let file server handle errors
23     FILE "${_EXEC}/${PATH_INFO#/\[.\]}"
24     return 0
25     ;;
26   *${BR}*)
27     export ERROR_MSG='Page names containing newline character are not allowed'
28     theme_error 400
29     return 0
30     ;;
31   */\#*)
32     export ERROR_MSG='Page names starting with "#" are not allowed'
33     theme_error 400
34     return 0
35     ;;
36   */\[*\]/*|*/\[*\])
37     # looks like some kind of handler
38     return 1
39     ;;
40   */)
41     if ! mdfile "$PATH_INFO" >&-; then
42       theme_error 404
43     elif ! acl_read "$PATH_INFO"; then
44       theme_error 403
45     else
46       theme_page "${PATH_INFO}"
47     fi
48     return 0
49     ;;
50 esac
51
52 return 1