]> git.plutz.net Git - shellwiki/blob - searchindex.sh
page_title: bugfix in fallback to page url
[shellwiki] / searchindex.sh
1 #!/bin/sh
2
3 # Copyright 2023 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 export _EXEC="${_EXEC:-${0%/*}/}" _DATA="${_DATA:-.}"
18 verb="" v=0 cmd="" force="" location=""
19
20 help() {
21   ex="$1"
22
23   cat >&2 <<-EOF
24         USAGE:
25
26         ${0##*/} prune [--exec "INSTALL_DIR"] [--data "SITE_DIR"] [-v]
27
28         ${0##*/} index [--exec "INSTALL_DIR"] [--data "SITE_DIR"] \\
29                        [--location "/PAGE"] [--force] [-v]
30
31         Commands:
32
33         prune
34             Remove outdated records from the database. This is usually
35             more time consuming than index creation. It is generally
36             save to run pruning while the wiki is online, even when
37             pages are being updated. Although in rare cases a search
38             operation may return incomplete results while running on
39             a database being pruned.
40
41             Pruning mode should be called regularly via cron.
42
43         index
44             Add pages to the search index. Pages with a current index
45             will be skipped unless the --force option is provided.
46             Optionally a --location can be provided to add only a
47             part of the document tree.
48
49         When running indexing and pruning together, indexing should be run
50         first and pruning afterwards.
51
52         Pruning becomes necessary with page updates, not during mere read
53         operation. On a medium traffic installation pruning should be run
54         about once a week. 
55         Pruning the index more often than daily will rarely be necessary
56         and with low traffic sites monthly maintenance may be completely
57         fine.
58
59         Options:
60
61         --exec INSTALL_DIR
62             Point to the location of your shellwiki installation. Without
63             this optin, the location will be read from the environments
64             variable "\$_EXEC", or will default to the path at which the
65             script is called, if it can be determined.
66
67         --data SITE_DIR
68             Point to the location of your site installation. I.e. the directory
69             containing your "pages/" and "index/" dir. Defaults to the
70             environment variable "\$_DATA" or the working directory.
71
72         --force
73             Add pages to index even if they seem to be indexed already.
74
75         --loction /PAGE
76             Index only the given page and its children. The path is given
77             relative to the web root, i.e. without the DATA and "page/"
78             directory.
79
80         -v
81             Be more verbose.
82         EOF
83
84   exit "${ex:-0}"
85 }
86
87 while [ $# -gt 0 ]; do case $1 in
88   --exec|-e) _EXEC="${2%/}"; shift 2;;
89   --data|-d) _DATA="${2%/}"; shift 2;;
90   --location) location="${2}"; shift 2;;
91   --verbose|-v) verb=true; shift 1;;
92   --force) force=true; shift 1;;
93   --help) help 0 2>&1;;
94   prune|index)
95     [ ! "$cmd" ] && cmd="$1" || help 1
96     shift 1;;
97   *) help 1;;
98 esac; done
99
100 if ! [ -d "$_DATA/pages/" -a -d "$_DATA/index/" ]; then
101   printf 'ERROR: %s\nTry --help\n' "\"${_DATA}\" does not seem to be a valid site directory" >&2
102   exit 1
103 fi
104 if ! [ -x "$_EXEC/parsers/40_indexer.sh" -a -x "$_EXEC/cgilite/storage.sh" ]; then
105   printf 'ERROR: %s\nTry --help\n' "could not determine shellwiki installation path (tried \"$_EXEC\")" >&2
106   exit 1
107 fi
108 if [ ! "$cmd" ]; then
109   help 1
110 fi
111
112 . "$_EXEC/cgilite/storage.sh"
113
114 prune() {
115   for word in "$_DATA/index"/*; do
116     [ "$word" = "$_DATA/index/*" ] && continue
117   
118     [ "$verb" ] && printf "%${v}s\r%s\r" "" "${word##*/}" >&2
119     v="${#word}"
120     mv -- "$word" "${word}.$$"
121   
122     while read -r date location freq num total; do
123       l="$_DATA/pages$(UNSTRING "$location")#index.flag"
124       d="$(stat -c %Y "$l")" 2>&-
125   
126       if [ "$date" -ge "$d" ] 2>&-; then
127         printf '%i      %s      %f      %i      %i\n' \
128                "$date" "$location" "$freq" "$num" "$total"
129       elif [ "$verb" ]; then
130         printf "\rRemoving \"%s\" from \"%s\"\n" "$location" "${word##*/}" >&2
131       fi
132     done <"${word}.$$" >>"${word}"
133     rm -- "${word}.$$"
134   done
135 }
136
137 index() {
138   export PATH_INFO="" _DATE="$(date +%s)"
139
140   if [ "$location" ]; then
141     location="${location#/}" location="${location%/}"
142     printf %s\\n "/${location}/"
143     find "$_DATA/pages/" -type d -path "$_DATA/pages/${location}/*" -not -name "#*" -printf "/%P/\n"
144   else
145     find "$_DATA/pages/" -type d -not -name "#*" -printf "/%P/\n"
146   fi \
147   | while read PATH_INFO; do
148     [ "$force" ] && rm -f -- "$_DATA/pages/$PATH_INFO/#index.flag"
149     if [ "$_DATA/pages/$PATH_INFO/#page.md" -nt "$_DATA/pages/$PATH_INFO/#index.flag" \
150          -o -f "$_DATA/pages/$PATH_INFO/#page.md" \
151        -a ! -f "$_DATA/pages/$PATH_INFO/#index.flag" ] 2>&-
152   then
153       [ "$verb" ] && printf "%${v}s\r%s\r" "" "$PATH_INFO" >&2
154       v="${#PATH_INFO}"
155       "$_EXEC/parsers/40_indexer.sh" <"$_DATA/pages/$PATH_INFO/#page.md" >/dev/null
156     fi
157   done
158 }
159
160 case $cmd in
161   index) index;;
162   prune) prune;;
163 esac