]> git.plutz.net Git - shellwiki/blob - handlers/90_brackets.sh
Merge commit '6bc502434737d7f08379e79b94fc6fda424ef779'
[shellwiki] / handlers / 90_brackets.sh
1 #!/bin/sh
2
3 # Copyright 2022 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 # ----------------------------------------------------------------------------
18 # special case for odd pages that are not handled otherwise
19 # usually those pages look like handlers (i.e. containing brackets)
20 # but are not
21 # attachment and edit (and really all) handlers should take precedence
22
23 case "${PATH_INFO}" in
24   */\[view\])
25     # explicit view handler for linking
26     REDIRECT "${_BASE}${PATH_INFO%\[view\]}"
27     ;;
28   */)
29     if ! mdfile "${PATH_INFO}" >&-; then
30       theme_error 404
31     elif ! acl_read "${PATH_INFO}"; then
32       theme_error 403
33     else
34       theme_page "${PATH_INFO}"
35     fi
36     return 0
37     ;;
38   *)
39     if [ -d "$_DATA/pages${PATH_INFO}/" -o -d "$_EXEC/pages${PATH_INFO}/" ]; then
40       REDIRECT "${_BASE}${PATH_INFO}/"
41     fi
42     ;;
43 esac
44
45 return 1