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