]> git.plutz.net Git - serve0/blob - pages/common.sh
prefer most used tags in taglist
[serve0] / pages / common.sh
1 #!/bin/zsh
2
3 # Copyright 2014, 2015 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 filter="${_GET[f]}"
21 search="${_GET[s]}"
22 order="${_GET[o]}" #validated
23 page="${_GET[pn]}" #validated
24 pagesize="${_COOKIE[pagesize]}" #validated
25
26 page_link=''
27 [ -n "$info" ]   && page_link="i=$(urlsafe "$info")&"
28 [ -n "$order" ]  && page_link="${page_link}o=${order}&"
29 [ -n "$search" ] && page_link="${page_link}s=${search}&"
30 [ -n "$filter" ] && page_link="${page_link}f=${filter}&"
31 page_prev="${page_link}pn=$([ "$page" -le "$pagesize" ] && echo 1 || echo $(($page - $pagesize)) )"
32 page_next="${page_link}pn=$(($page + $pagesize))"
33 page_this="${page_link}pn=$page"
34
35 taglist=$(
36 if [ -r ${_DATA}/cache/taglist ]; then
37   cat ${_DATA}/cache/taglist
38 else
39   truncate -s0 ${_DATA}/cache/taglist
40   truncate -s0 ${_DATA}/cache/tagnorm
41   (for each in ${_DATA}/meta/*.meta; do
42     sed -n '2s:|:\n:gp' "$each"
43   done \
44   | sort 
45   echo 
46   ) | (while read tag; do
47     if [ "$tag" = "$lasttag" ]; then
48       tagcount=$(( ${tagcount:-0} + 1 ))
49     else
50       [ -n "$lasttag" ] && printf %s\\t%s\\n "$tagcount" "$lasttag"
51       tagcount=1
52     fi
53     lasttag="$tag"
54   done \
55   | sort -rn 
56   echo
57   ) | while read x tag; do
58     topcnt=$(grep "${tag%%:*}" ${_DATA}/cache/taglist |wc -l)
59     [ $topcnt -lt 10 ] \
60     && printf %s\\n "$tag" >>${_DATA}/cache/taglist \
61     || printf %s\\n "$tag" >>${_DATA}/cache/tagnorm
62   done
63   cat ${_DATA}/cache/taglist
64   sort ${_DATA}/cache/tagnorm \
65   | tee -a ${_DATA}/cache/taglist
66   rm ${_DATA}/cache/tagnorm
67 fi
68 )
69
70 list_categories(){
71   echo none
72   printf %s "$taglist" |sed -rn 's;^([^:]+):.*$;\1;p' |sort -u
73 }
74
75 genthumb(){
76   videofile="$1"
77   thumb="$2"
78
79   nohup nice -10 "${_EXEC}"/helpers/genthumb.sh "$videofile" "$thumb" >/dev/null 2>/dev/null &
80   #printf '%s\n' "${_EXEC}/helpers/genthumb.sh '$videofile' '$thumb' >/dev/null 2>/dev/null" \
81   #| batch
82 }
83 genmeta(){
84   videofile="$1"
85   meta="$2"
86
87   "${_EXEC}"/helpers/genmeta.sh "$videofile" "$meta" >/dev/null
88 }