X-Git-Url: http://git.plutz.net/?a=blobdiff_plain;f=pages%2Flist.sh;h=89576f833fe2e04bdc6f9645fe71a07dfbe89511;hb=d716f2ce1fe64cf87f777490315bc51906001c72;hp=0870961fa124b7b498214dd66d2cef358a441406;hpb=6b08e359a06ed38d25c1756e5600096c77417a9c;p=serve0 diff --git a/pages/list.sh b/pages/list.sh index 0870961..89576f8 100755 --- a/pages/list.sh +++ b/pages/list.sh @@ -1,6 +1,6 @@ #!/bin/zsh -# Copyright 2014 - 2016 Paul Hänsch +# Copyright 2014 - 2017 Paul Hänsch # # This file is part of Serve0. # @@ -17,6 +17,8 @@ # You should have received a copy of the GNU Affero General Public License # along with Serve0. If not, see . +page_link="p=list&" + . $_EXEC/pages/common.sh LF=' @@ -24,22 +26,27 @@ LF=' filters="${_GET[f]}" debug "FILTERS: $filters" -quicklinks(){ - output='' - tac ${_DATA}/meta/recent \ - | while [ "$(printf %s "$output" |wc -l)" -lt 10 ] && read line; do - line="$line" - printf %s "$output" |grep -qF "$line" || output="$output$line$LF" - done - printf %s\\n "$output" +present_filter(){ + printf %s\\n "$*" \ + | sed -r 's;(^|!|\^|\|)([^!\^\|:]+:);\1;g;s;\^;\n;g' \ + | sort -r \ + | sed -r '$q;s;$; \&\; ;g' } +if [ -n "$search" ]; then + TITLE="$search by $order" +elif [ -n $filter ]; then + TITLE="$(present_filter "$filter") by $order" +else + TITLE="List by $order" +fi + category_selected(){ cat="${1}:" filter="$2" [ "$cat" = "none:" ] && cat='' - printf %s "$taglist" \ + printf %s "$taglist_filter" \ | sed -r 's;^('"$filter"')$;1 &;;t;s;^;0 ;' \ | sed -rn 's;^(0|1) '"$cat"'([^:]+)$;\1 \2;p' \ | sed 's;^0 ;;' @@ -68,41 +75,63 @@ _printVideo(){ thumb="$(urlsafe "thumbs/$info.jpg")" linkinfo="$(urlsafe "$info")" htmlinfo="$(htmlsafe "$info")" + attrinfo="$(attribsafe "$info")" + + minutes="$(printf "%d:%02d" $(($length / 60)) $(($length % 60)) )" - [ "$(($length % 60))" -lt 10 ] && minutes="$(($length / 60)):0$(($length % 60))" \ - || minutes="$(($length / 60)):$(($length % 60))" - - tee "$cache" < - - Preview not yet available - -

${htmlinfo}

- - - ${minutes}min - ${width}x${height} - $(printf %s "$tags" |sed -r 's:\|*([^|]+)\|*: \1:g') - + { tr -d '\n' |tee "$cache"; } <<-VIDEOend +
  • + +

    ${htmlinfo}

    + + + ${minutes}min + ${width}x${height} + $(printf %s "$tags" |sed -r 's:\|*([^|]+)\|*: \1:g') +
  • VIDEOend fi } genlist(){ case "$order" in - Date) ls -c "${_DATA}"/videos/ |egrep -i "$file_pattern";; - Length) sed -sn 1p "${_DATA}"/meta/*.meta |sort -n |sed -r 's;^[0-9\t]+\t;;';; - Name) printf '%s\n' "${_DATA}"/videos/* |sed -r 's;^.*/;;;';; + Date) + find "${_DATA}"/videos/ -maxdepth 1 -mindepth 1 -printf '%i\t%p\n' \ + | sort -n \ + | while read i file; do printf '%s\000' "$file"; done \ + | xargs -0 stat -c '%Y %n' \ + | sort -nr \ + | cut -f2- \ + | sed 's;^.*/;;g;' \ + | egrep -i "$file_pattern" + ;; + Length) + sed -sn 1p "${_DATA}"/meta/*.meta \ + | sort -n \ + | sed -r 's;^[0-9\t]+\t;;' \ + | while read file; do + [ -f "${_DATA}/videos/${file}" ] && printf '%s\n' "$file" + done + ;; + Name) + find "${_DATA}"/videos/ -maxdepth 1 -mindepth 1 -printf '%f\n' \ + | sort -f \ + | egrep -i "$file_pattern" + ;; esac } -thumblist() { - cache="${_DATA}/cache/${pagesize}?o=${order}&s=${search}&f=${filter}&pn=${page}" - if [ "$cache" -nt ${_DATA}/videos -a "$cache" -nt ${_DATA}/meta ]; then +selectionlist() { + cachebase="?o=${order}&s=${search//\//}&f=${filter//\//}" + cache="${_DATA}/cache/${cachebase}" + if [ -s "$cache" -a "$cache" -nt ${_DATA}/videos -a "$cache" -nt ${_DATA}/meta ]; then cat "$cache" else filterex="s;^([0-9]+\t){3}(.+)\n.*$;\2;p" printf '%s\n' "$filter" |tr '^' '\n' \ + | sed -r 's;[]\/\(\)\\\^\$\?\.\+\*\;\[\{\}];\\\\&;g' \ | while read each; do [ "${each:0:1}" = '!' ] && filterex="/^[^\n]+\n(.*\|)?(${each#?})(\|.*)?$/d;{${filterex}}" \ || filterex="/^[^\n]+\n(.*\|)?(${each})(\|.*)?$/{${filterex}}" @@ -122,10 +151,18 @@ thumblist() { debug "No search or filtering" cat fi \ - | sed -n "$page,$(($page + $pagesize - 1))p" \ | tee "$cache" - fi \ + fi +} + +thumblist() { + selectionlist \ + | sed -n "$page,$(($page + $pagesize - 1))p" \ | while read line; do _printVideo "$line" done } + +pagecount() { + printf "$(( $(selectionlist | wc -l) / $pagesize + 1 ))" +}