X-Git-Url: http://git.plutz.net/?a=blobdiff_plain;f=list.sh;h=d6228347bec5006fea4cad050b6c868abb0da8d0;hb=7068cdba834b18fd78cb48c3e0e1d72c40887a25;hp=9abf0e9d9e27fc23af9a34b35405b3c6c9af7b3a;hpb=b3b0d44a61029470e449827a1fa4b686e4279b7c;p=serve0 diff --git a/list.sh b/list.sh index 9abf0e9..d622834 100644 --- a/list.sh +++ b/list.sh @@ -1,64 +1,117 @@ #!/bin/sh -list_item(){ +. "$_EXEC/indexmeta.sh" +. "$_EXEC/widgets.sh" + +list_item() { + local name path length width height tags comment n name="$(HTML "$1")" - path="$(HTML "$ITEM/$1")" - meta="$_DATA/$ITEM/.index/meta" + path="$(URL "${ITEM}/${1}")" if [ -d "$_DATA/$ITEM/$1" ]; then - printf '[a .list .dir href="%s" %s]' \ - "$path" "$name" - elif [ -f "$meta" ]; then + printf '[a .list .dir href="%s?%s" %s]' \ + "$path" "$(HTML "$QUERY_STRING")" "$name" + else read -r length width height tags comment n <<-EOF - $(grep -m1 -F " $1" "$meta") + $(meta_info "$_DATA/$ITEM/$1") EOF - printf '[div .list .file - [a href="%s" [img src="%s?a=thumbnail"] %s] - [span .time %i:%imin] [span .dim %ix%i] %s - ]' \ - "$path" "$path" "$name" \ - "$((length / 60))" "$((length % 60))" \ - "$width" "$height" \ - "$(printf %s\\n "${tags#tags=}" |tr , ' ' |xargs printf '[span .tag %s]')" - else - printf '[div .list .file [a href="%s" [img src="%s?a=thumbnail"] %s]]' \ - "$path" "$path" "$name" + printf '[div .list .file + [a href="%s" [img src="%s?a=thumbnail"][label %s]] + [span .time %i:%imin] [span .dim %ix%i] %s + [checkbox "select" "%s" id="select_%s" form="multitag"][label for="select_%s" +] + ]' \ + "$path" "$path" "$name" \ + "$((length / 60))" "$((length % 60))" \ + "$width" "$height" \ + "$(UNSTRING "${tags#tags=}" |tr , '\0' |xargs -r0 printf ' [span .tag %s]')" \ + "$path" "$path" "$path" fi } -list_items(){ +list_directories(){ + (cd "$_DATA/$ITEM"; + find ./ -type d \! -name .index -mindepth 1 -maxdepth 1 \ + ) | cut -d/ -f2- | sort +} + +[ "$FILTER" ] && list_fex="$( + fex='p' + STRING "$FILTER^" \ + | sed -r 's;\^;\n;g; s;[]\/\(\)\\\^\$\?\.\+\*\;\[\{\}];\\&;g' \ + | while read -r f; do + [ ! "${f#~}" ] && continue + [ "${f#~}" = "$f" ] \ + && fex="/(\ttags=([^\t]*,)?)(${f})((,[^\t]*)?\t)/{${fex}}" \ + || fex="/(\ttags=([^\t]*,)?)(${f#~})((,[^\t]*)?\t)/d; ${fex}" + printf '%s\n' "${fex}" + done \ + | tail -n1 +)" + +list_filemeta(){ + local meta base f fn file + base="$1" + meta="$1/.index/meta" + meta_dir "$_DATA/$ITEM/$base" + + if [ "$FILTER" ]; then + sed -nr "$list_fex" "$_DATA/$ITEM/$meta" + elif [ "${SEARCH#!}" != "${SEARCH}" ]; then + grep -viE "$(STRING "${SEARCH#!}")" "$_DATA/$ITEM/$meta" + else + grep -iE "$(STRING "${SEARCH}")" "$_DATA/$ITEM/$meta" + fi |cut -f1,6- \ + | while f="$(line)"; do + fn="$(UNSTRING "${f#* }")"; fn="${fn%${CR}}"; + file="$(printf '%s\n' "$_DATA/$ITEM/$base/${fn}".*)" + file="${file##*/}" + [ -e "$_DATA/$ITEM/$base/${file}" ] \ + && printf '%s %s\n' "${f%% *}" "${base}/${file}" + done +} + +list_index(){ + local meta + (cd "$_DATA/$ITEM"; + find ./ -path '*/.index/meta' + ) | while meta="$(line)"; do + list_filemeta "${meta%/.index/meta}" + done +} + +list_items() { + local mode mode="$(COOKIE mode |grep -m1 -xE 'index|browse' || printf browse )" [ "$mode" = browse -a "$ITEM" ] && printf '..\n' - if [ "$mode" = browse ]; then - [ -d "$_DATA/$ITEM/.index" -a \! "$_DATA/$ITEM" -ot "$_DATA/$ITEM/.index/meta" ] \ - && dir="$_DATA/$ITEM" . "$_EXEC/update_meta.sh" - (cd "$_DATA/$ITEM"; - find ./ -type d \! -name .index -mindepth 1 -maxdepth 1 \ - -exec stat -c '%Y %n' '{}' + - find ./ -type f -mindepth 1 -maxdepth 1 \ - -exec stat -c '%Y %n' '{}' + - ) - elif [ "$mode" = index ]; then - find "$_DATA/$ITEM" -type d -name .index \ - | while d="$(line)"; do - [ ! "${d%/.index}" -ot "$d/meta" ] \ - && dir="${d%/.index}" . "$_EXEC/update_meta.sh" - done - (cd "$_DATA/$ITEM"; - find ./ -type f \ - -exec stat -c '%Y %n' '{}' + - ) - fi \ - | case $ORDER in - Date) sort -rn;; - Name) sort -k 2;; - esac \ - | cut -d/ -f2- - + + if [ "$mode" = browse -a "$ORDER" = Date ]; then + list_directories + list_filemeta . |cut -f2- \ + | xargs -rd'\n' stat -c '%Y %n' \ + | sort -rn |cut -d/ -f2- + elif [ "$mode" = browse -a "$ORDER" = Name ]; then + list_directories + list_filemeta . \ + | sort -k 2 |cut -d/ -f2- + elif [ "$mode" = index -a "$ORDER" = Date ]; then + list_index |cut -f2- \ + | xargs -rd'\n' stat -c '%Y %n' \ + | sort -rn | cut -d/ -f2- + elif [ "$mode" = index -a "$ORDER" = Name ]; then + list_index | sort -k 2 | cut -d/ -f2- + elif [ "$mode" = browse -a "$ORDER" = Length ]; then + list_directories + list_filemeta . \ + | sort -n |cut -d/ -f2- + elif [ "$mode" = index -a "$ORDER" = Length ]; then + list_index \ + | sort -n |cut -d/ -f2- + fi } -list_paginate(){ +list_paginate() { + local page i c n page="$(GET p |grep -xE '[0-9]+' || printf 1)" printf '[div .itemlist ' @@ -85,6 +138,7 @@ printf 'Content-Type: text/html;charset=utf-8\r\n\r\n' "$_EXEC/cgilite/html-sh.sed" <<-EOF [!DOCTYPE HTML] [html [head [title Listing] + [meta name="viewport" content="width=device-width"] [link rel=stylesheet href="/style.css" ] ] [body [div #navigation @@ -94,12 +148,16 @@ printf 'Content-Type: text/html;charset=utf-8\r\n\r\n' [a #t_prefs href="#prefs" ⚙] ] $(w_prefs) + $(w_advsearch) - $(list_items \ - | list_paginate - ) - [div #editing - $(w_index) + [form method=POST action="?a=multitag" + $(list_items \ + | list_paginate + ) + [div #editing + [a href="#multitag" Add Tags] $(w_tagging) + $(w_index) + ] ] ] ] EOF