]> git.plutz.net Git - shellwiki/blob - macros/include
introduce --hl option to include macro
[shellwiki] / macros / include
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 . "$_EXEC/cgilite/cgilite.sh"
18 . "$_EXEC/acl.sh"
19 . "$_EXEC/tools.sh"
20
21 from='1'; to='$'; rev=''; items='$'; hl=0; link='true'
22
23 while [ $# -gt 0 ]; do case $1 in
24   --from) from="$2"; shift 2;;
25   from=*) from="${1#*=}"; shift 1;;
26   --to) to="$2"; shift 2;;
27   to=*) to="${1#*=}"; shift 1;;
28   --items) items="$2"; shift 2;;
29   items=*) items="${1#*=}"; shift 1;;
30   --rev|--reverse) rev="-r"; shift 1;;
31   --nolink) link=""; shift 1;;
32   --hl|-hl) hl=$2; shift 2;;
33   *) page="$1"; shift 1;;
34 esac; done
35
36 if ! printf %s\\n "$from" |grep -qEx '[0-9]+|/([^/\\]|\\/|\\.)*/'; then
37   debug 'Include macro invalid argument: "from"'
38   exit 1
39 fi
40 if ! printf %s\\n "$to" |grep -qEx '\$|[0-9]+|/([^/\\]|\\/|\\.)*/'; then
41   debug 'Include macro Invalid argument: "to"'
42   exit 1
43 fi
44 if ! printf %s\\n "$items" |grep -qEx '\$|[0-9]+'; then
45   debug 'Include macro Invalid argument: "items"'
46   exit 1
47 fi
48
49 page_glob "$page" \
50 | sort $rev \
51 | sed "${items}q" \
52 | while read glob; do
53   page="$(page_abs "$glob")"
54   acl_read "$page" || continue
55   mdfile="$(mdfile "$page")" || continue
56   hglob="$(HTML "$glob")"
57   refpfx="$(printf %s\\n "$hglob" |sed 's;[\;&\;];\\&;g')"
58   [ "$link" ] \
59   && printf '<div class="macro include">
60                <a class="include link" href="%s">%s</a>
61                <article class="include" id="include_%s">' \
62             "${hglob}" "${hglob}" "${hglob}" \
63   || printf '<div class="macro include">
64                <article class="include" id="include_%s">' \
65             "${hglob}"
66   ( # PATH_INFO may be used by macros in the included page
67     export PATH_INFO="$page"
68     cd -- "${mdfile%/*}/"
69     sed -n "${from},${to}p" <"$mdfile" \
70     | md \
71     | grep -vx ''
72   ) | sed -E '
73     s;(<[^>]+ )(href|src)="([^"]+://[^"]*|[mM][aA][iI][lL][tT][oO]:[^"]*)"([^>]*>);\1\2="/#safe/\3"\4;g
74     s;(<[^>]+ )(href|src)="([^#/"][^"]*)"([^>]*>);\1\2="'"${refpfx}"'\3"\4;g
75     s;(<[^>]+ )(href|src)="/#safe/([^"]*)"([^>]*>);\1\2="\3"\4;g
76   ' | case $hl in
77       1) sed -E 's;(<h|</h)5( |>);\16\2;g;
78                  s;(<h|</h)4( |>);\15\2;g;
79                  s;(<h|</h)3( |>);\14\2;g;
80                  s;(<h|</h)2( |>);\13\2;g;
81                  s;(<h|</h)1( |>);\12\2;g;
82          ';;
83       2) sed -E 's;(<h|</h)5( |>);\16\2;g;
84                  s;(<h|</h)4( |>);\16\2;g;
85                  s;(<h|</h)3( |>);\15\2;g;
86                  s;(<h|</h)2( |>);\14\2;g;
87                  s;(<h|</h)1( |>);\13\2;g;
88          ';;
89       3) sed -E 's;(<h|</h)5( |>);\16\2;g;
90                  s;(<h|</h)4( |>);\16\2;g;
91                  s;(<h|</h)3( |>);\16\2;g;
92                  s;(<h|</h)2( |>);\15\2;g;
93                  s;(<h|</h)1( |>);\14\2;g;
94          ';;
95       4) sed -E 's;(<h|</h)5( |>);\16\2;g;
96                  s;(<h|</h)4( |>);\16\2;g;
97                  s;(<h|</h)3( |>);\16\2;g;
98                  s;(<h|</h)2( |>);\16\2;g;
99                  s;(<h|</h)1( |>);\15\2;g;
100          ';;
101       5|[6789])
102          sed -E 's;(<h|</h)5( |>);\16\2;g;
103                  s;(<h|</h)4( |>);\16\2;g;
104                  s;(<h|</h)3( |>);\16\2;g;
105                  s;(<h|</h)2( |>);\16\2;g;
106                  s;(<h|</h)1( |>);\16\2;g;
107          ';;
108       *) cat;;
109     esac
110   printf '</article></div>'
111 done