]> git.plutz.net Git - serve0/blob - pages/quicklinks.sh
f22a412129ee7a7d5adafe7d6b45a70084039957
[serve0] / pages / quicklinks.sh
1 #!/bin/zsh
2
3 # Copyright 2014 - 2016 Paul Hänsch
4 #
5 # This file is part of Serve0.
6
7 # Serve0 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 # Serve0 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 Serve0.  If not, see <http://www.gnu.org/licenses/>. 
19
20 . $_EXEC/pages/common.sh
21
22 LF='
23 '
24 filters="${_GET[f]}"
25 debug "FILTERS: $filters"
26
27 present_filter(){
28   printf %s "$*" |sed -nr '1s;^.*(\?|&)o=([^&]+)&?.*$;by \2: ;p'
29
30   printf %s "$*" \
31   | sed -nr '1s;^.*(\?|&)f=([^&]+)&?.*$;\2;p' \
32   | sed -r 's;(^|!|\^|\|)([^!\^\|:]+:);\1;g;s;\^;\n;g' \
33   | sort -r \
34   | sed -r ':X;N;$!bX;s;\n; \&amp\; ;g'
35 }
36
37 quicklinks(){
38   output=''
39   tac ${_DATA}/meta/recent \
40   | while [ "$(printf %s "$output" |wc -l)" -lt 30 ] && read line; do
41     norm="$(present_filter "$line")"
42     printf %s "$output" |grep -qF "$norm" || output="$output$line $norm$LF"
43   done 
44   printf %s "$output" |while read line norm; do
45     printf '<input type="checkbox"><a target="blank" href="%s">%s</a>' \
46            "$line" "${norm}"
47   done
48 }
49
50 category_selected(){
51   cat="${1}:"
52   filter="$2"
53   [ "$cat" = "none:" ] && cat=''
54
55   printf %s "$taglist_filter" \
56   | sed -r 's;^('"$filter"')$;1 &;;t;s;^;0 ;' \
57   | sed -rn 's;^(0|1) '"$cat"'([^:]+)$;\1 \2;p' \
58   | sed 's;^0 ;<option>;;s;^1 ;<option selected>;;s;$;</option>;'
59 }
60