]> git.plutz.net Git - serve0/blobdiff - widgets.sh
Merge commit 'b931bbd0c30907b9cc956d3707b26b449bf41f76'
[serve0] / widgets.sh
old mode 100644 (file)
new mode 100755 (executable)
index f79d457..35058cb
@@ -4,43 +4,43 @@
 include_widgets="$0"
 
 . "$_EXEC/cgilite/storage.sh"
+. "$_EXEC/db_meta.sh"
 
 w_refuri="$(URL "$PATH_INFO")?$(HTML "$QUERY_STRING")"
 
 w_str_s="$(STRING "$SEARCH")"
 w_str_f="$(STRING "$FILTER")"
 
-c_tags="$_DATA/.index/tags.cache"; c_tagcategories="$_DATA/.index/tagcategories.cache"
-if [ ! -s "$c_tags" -o ! -s "$c_tagcategories" ] \
-   || [ "$(find "$_DATA/" -path '*/.index/meta' -newer "$c_tags")" ]
-  then
-  w_tags="$( cn=1
-    find "$_DATA/" -path '*/.index/meta' -exec \
-      sed -E 's;^.*\t.*\t.*\ttags=(.*)\tcomment=.*\t.*\r$;\1;;
-              s;,;\n;g;' \
-      '{}' + \
-    | UNSTRING \
-    | { sort; printf '\n'; } \
-    | while read -r tag; do
-      [ "$tag" = "$otag" ] \
-      && cn=$((cn + 1)) \
-      || {
-        printf "%i     %s\n" "$cn" "$otag"
-        cn=1
-      }
-      otag="$tag"
-    done \
-    |sort -rn |cut -f2- |HTML \
-    |sed "s-
-\n-g; s;\n\n;\n;g;"
-  )"
-  w_tagcategories="$(printf %s "$w_tags" | sed -rn '/:/s;^-?([^:]+):.*$;\1;p' |sort -u )"
-  printf %s "$w_tags" >"$c_tags"
-  printf %s "$w_tagcategories" >"$c_tagcategories"
-else
-  w_tags="$(cat "$c_tags")"
-  w_tagcategories="$(cat "$c_tagcategories")"
-fi
+taglist(){
+  list_meta |sed -E '
+    s;^.*\ttags=([^\t]*)\t.*$;\1;;
+    s;,;\n;g;
+  ' \
+  | sort |uniq -c |sort -rn |sed -E 's;^ *[0-9]+ ;;;' \
+  | UNSTRING | HTML \
+  | sed -E 's;&#x0A\;;\n;g; s;\n+;\n;g;'
+}
+tagorder(){
+  printf '*\n%s\n$\n' "$w_tagcategories" \
+  | while read -r category; do
+    printf '%s\n' "$w_tags" \
+    | { [ "$category" = '*' ] && grep -avF ':' || grep -awF "${category}"; } \
+    | { sed -u 10q; sort; }
+  done
+}
 
+c_tags="$_DATA/.index/tags.cache";
+if [ ! -s "$c_tags" ]; then
+  taglist >"$c_tags.$$"
+  mv "$c_tags.$$" "$c_tags"
+fi
+w_tags="$(cat "$c_tags")"
+w_tagcategories="$(
+  printf %s "$w_tags" \
+  | sed -rn '/:/s;^-?([^:]+):.*$;\1;p' \
+  |sort -u
+)"
+w_tags="$(tagorder)"
 
 [ "$ORDER" = Name   ] && w_coname=checked
 [ "$ORDER" = Date   ] && w_codate=checked
@@ -75,16 +75,15 @@ w_bookmarks(){
 
   grep -qaF "  search=$w_str_s filter=${w_str_f}${CR}" "$bm" && name=Update || name=Add
 
-  printf '[form #bookmarks action=?a=bookmark method=POST
-            [a href="#" x]
-            [hidden "ref" "%s"]
-            [hidden "search" "%s"][hidden "filter" "%s"]
-            [label Name for current page:]
-            [input name="name" value="%s" placeholder="Name" ]
-            [button type="submit" %s]' \
-            "$w_refuri" \
-            "$(HTML "$SEARCH")" "$(HTML "$FILTER")" \
-            "$(w_bmname)" "${name}"
+  cat <<-EOF
+       [form #bookmarks action=?a=bookmark method=POST
+         [a href="#" x]
+         [hidden "ref" "${w_refuri}"]
+         [hidden "search" "$(HTML "$SEARCH")"][hidden "filter" "$(HTML "$FILTER")"]
+         [label Name for current page:]
+         [input name="name" value="$(w_bmname)" placeholder="Name" ]
+         [button type="submit" . ${name}]
+       EOF
   [ "$name" ] && printf ' [submit "delete" "delete" Delete]'
 
   sort "$bm" |while read -r name search filter; do
@@ -94,43 +93,39 @@ w_bookmarks(){
     name="$(UNSTRING "$name")";
     search="$(UNSTRING "${search}" |URL)";
     filter="$(UNSTRING "${filter}" |URL)";
-    printf '[label .link %s]
-            [a .link target=blank href="/?o=Name&s=%s&f=%s" by Name]
-            [a .link target=blank href="/?o=Date&s=%s&f=%s" by Date]
-            [a .link target=blank href="/?o=Length&s=%s&f=%s" by Length]
-            [a .link target=blank href="/?o=Group&s=%s&f=%s" by Group]
-            ' \
-            "$(HTML "$name" |sed 's;&#44\;;&[wbr];g;')" \
-            "$search" "$filter" \
-            "$search" "$filter" \
-            "$search" "$filter" \
-            "$search" "$filter"
+    printf '
+      [label .link . %s][a .conjunct href="?o=%s&s=%s&f=%s" . +]
+      [a .link target=blank href="/?o=Name&s=%s&f=%s" by Name]
+      [a .link target=blank href="/?o=Date&s=%s&f=%s" by Date]
+      [a .link target=blank href="/?o=Length&s=%s&f=%s" by Length]
+      [a .link target=blank href="/?o=Group&s=%s&f=%s" by Group]
+    ' "$(HTML "$name" |sed 's;&#44\;;&[wbr];g;')" \
+      "$ORDER" "${SEARCH:+${SEARCH}} $search" "${FILTER:+${FILTER}^}$filter" \
+      "$search" "$filter"  "$search" "$filter" \
+      "$search" "$filter"  "$search" "$filter"
   done
   printf ']'
 }
 
 w_search(){
   printf '
-  [form #search method=GET action=./?
-    [select name=o size=1 
-      [option disabled=disabled Order By]
-      [option value=Name %s Name]
-      [option value=Date %s Date]
-      [option value=Length %s Length]
-      [option value=Group %s Group]
-    ]
-    [input name=s placeholder=Search value="%s"]
-    [a #t_avsearch href="#advsearch" Advanced]
-  ]
-  ' \
-  "$w_coname" "$w_codate" "$w_colength" "$w_cogroup" \
-  "$(HTML "$SEARCH")"
+    [form #search method=GET action=./?
+      [select name=o size=1
+        [option disabled=disabled Order By]
+        [option value=Name %s Name]
+        [option value=Date %s Date]
+        [option value=Length %s Length]
+        [option value=Group %s Group]
+     ][input type="search" name=s placeholder=Search value="%s"][button .search type=submit Search]
+      [a #t_avsearch href="#advsearch" Advanced]
+    ]' "$w_coname" "$w_codate" "$w_colength" "$w_cogroup" \
+       "$(HTML "$SEARCH")"
 }
 
 w_prefs(){
   local tm tf td
 
-  tm=''; [ "$(COOKIE mode)" = index ] && tm=' '
+  tm=''; [ "$(COOKIE mode)" = browse ] && tm=' '
   tf=''; [ "$(COOKIE fakemp4)" = yes ] && tf=checked
   td=''; [ "$(COOKIE downscale)" = yes ] && td=checked
 
@@ -139,28 +134,25 @@ w_prefs(){
     [a href="#" x]
     [hidden "ref" "%s"]
     [label for=prefs_ps Pagesize]
-    [input #prefs_ps type=number name=pagesize value="%s"][br]
+    [input #prefs_ps type=number name=pagesize value="%i"][br]
     [radio "mode" "browse" %s #prefs_modebrowse] [label for=prefs_modebrowse Browse Folders][br]
     [radio "mode" "index"  %s #prefs_modeindex ] [label for=prefs_modeindex View Full Index][br]
     [checkbox "fakemp4" "yes" %s #prefs_fmp4] [label for=prefs_fmp4 Fake .MP4 file type][br]
     [checkbox "downscale" "yes" %s #prefs_downscale] [label for=prefs_downscale Prefer downscale to 480p][br]
     [submit "index" "update" Force Index Update][br]
     [submit "store" "store" Set Cookie]
-  ]
-  ' \
-  "$w_refuri" "$LISTSIZE" \
-  "${tm:-checked}" "${tm:+checked}" "$tf" "$td"
+  ]' "${w_refuri}" "${LISTSIZE}" "${tm:+checked=checked}" "${tm:-checked=checked}" "$tf" "$td"
 }
 
 w_index(){
-  printf '
-  [form #index method="POST" action="?a=spawnindex"
-    [hidden "ref" "%s"]
-    [label Set up for Index view: ]
-    [checkbox "recursive" "yes" #spawn_recursive] [label for=spawn_recursive Include subdirectories]
-    [submit "spawn" "spawn" Set up]
-  ]
-  ' "$w_refuri"
+  cat <<-EOF
+       [form #index method="POST" action="?a=spawnindex"
+         [hidden "ref" "${w_refuri}"]
+         [label Set up for Index view: ]
+         [checkbox "recursive" "yes" #spawn_recursive] [label for=spawn_recursive Include subdirectories]
+         [submit "spawn" "spawn" Set up]
+       ]
+       EOF
   return 0
 }
 
@@ -169,72 +161,70 @@ w_advsearch(){
   filter="$(HTML "${FILTER}^")"
 
   printf '[form #advsearch action=./?a=advsearch method=POST
-            [a href="#" X]
-            [p .help Select multiple tags from each category by holding down the [strong Ctrl] key on your keyboard.
-            Refine the search further by setting additional search tags using the [strong "+and"] button.]'
+          [a href="#" X]
+          [p .help Refine the search further by setting additional search tags using the [strong "+and"] button.]'
 
   for n in 1 2 3 4 5 6 7 8 9 10; do
     f="${filter%%^*}"; filter="${filter#*^}"
-
     t=''; [ "$f" -a ! "${f%%~*}" ] && t=" "
-
     lbid="cat_${n}_(none)"
-    printf '[input .and type=checkbox name=and id="and_%i" %s][label for="and_%i" +and
-            ][fieldset .select
-            [radio "pol_%i" "pos" .pol %s #pol_pos_%i"][label for=pol_pos_%i Any]
-            [radio "pol_%i" "neg" .pol %s #pol_neg_%i"][label for=pol_neg_%i None]
-            [label .head Category:]' \
-            $n "${f:+checked}" $n \
-            $n "${t:-checked}" $n $n \
-            $n "${t:+checked}" $n $n
+
+    printf \
+     '[input .and type=checkbox name=and id="and_%i" %s][label for="and_%i" +and
+      ][fieldset .select
+      [radio "pol_%i" "pos" .pol %s #pol_pos_%i"][label for=pol_pos_%i Any]
+      [radio "pol_%i" "neg" .pol %s #pol_neg_%i"][label for=pol_neg_%i None]
+      [label .head Category:]' \
+      "$n" "${f:+checked=checked}" "$n" \
+      "$n" "${t:-checked=checked}" "$n" "$n" \
+      "$n" "${t:+checked=checked}" "$n" "$n"
 
     f="|${f#\~}|"
-    printf '*\n%s\n$\n' "$w_tagcategories" \
-    | while read -r category; do
-      lbid="cat_${n}_${category}"
-
-      t=''
-      [ "$category"  = '*' -a   "${f%%|${category}:*}" ] && t=checked
-      [ "$category" != '*' -a ! "${f%%|${category}:*}" ] && t=checked
-      [ "$category" != '*' -a ! "${f%%|-${category}:*}" ] && t=checked
-
-      # printf '[radio "cat_%i" "%s" .cat %s id="%s"][label for="%s" %s]
-      #         [select name=tag_%s size=10 multiple' \
-      #         $n "$category" "$t" "$lbid" "$lbid" "$category" $n
-      printf '[radio "cat_%i" "%s" .cat %s id="%s"][label for="%s" %s]
-              [div .catselect\n' \
-              $n "$category" "$t" "$lbid" "$lbid" "$category"
-
-      printf '%s\n' "$w_tags" \
-      | { [ "$category" = '*' ] && grep -avF ':' || grep -awF "${category}"; } \
-      | { for n in 1 2 3 4 5 6 7 8 9 0; do
-          read -r line && printf '%s\n' "$line" || break;
-          done;  # pass 10 lines through without modification
-          sort;  # and sort remaining lines
-      } | while read -r tag; do
-        [ "$tag" ] || continue
-        t=''; [ ! "${f%%*|${tag}|*}" ] && t=checked
-        d="${tag#-}"; d="${d#*:}"
-        # printf '[option %s value="%s"\n%s]' "$t" "$tag" "$d"
-       printf '[label [checkbox "tag_%s" "%s" %s] %s]' "$n" "$tag" "$t" "$d"
-      done
-      d="${f##*\$:}" d="${d%%\|*}"
-      [ "$category" = \$ ] && printf '[input name="tag_%i" value="%s"]' "$n" "$(HTML "$d")"
-      printf '\n]'
+    printf '%s\n$:\n' "$w_tags" \
+    | while read tctag; do
+      [ "$tctag" ] || continue
+      category="${tctag#-}"; category="${category%%:*}"
+      tag="${tctag#-}"; tag="${tag#*:}"
+      [ "${tag}" = "${tctag#-}" ] \
+      && category="*"
+  
+      if [ "$category" != "$oldcat" ]; then
+        [ "$oldcat" ] && printf '\n]'
+        lbid="cat_${n}_${category}"
+
+        t=''
+        [ "$category"  = '*' -a   "${f%%|${category}:*}" ] && t=checked
+        [ "$category" != '*' -a ! "${f%%|${category}:*}" ] && t=checked
+        [ "$category" != '*' -a ! "${f%%|-${category}:*}" ] && t=checked
+
+        printf '[radio "cat_%i" "%s" .cat %s id="%s"][label for="%s" %s]
+                [div .catselect\n' \
+                $n "$category" "$t" "$lbid" "$lbid" "$category"
+      fi
+
+      if [ "$category" = '$' ]; then
+        tag="${f##*\$:}" tag="${tag%%\|*}"
+        printf '[input name="tag_%i" value="%s"]' "$n" "$(HTML "$tag")"
+      else
+        t=''; [ ! "${f%%*|${tctag}|*}" ] && t=checked
+        printf '[label [checkbox "tag_%s" "%s" %s] %s]' "$n" "$tctag" "$t" "$tag"
+      fi
+
+      oldcat="$category"
     done
+    [ "$w_tags" ] && printf '\n]'
     printf ']'
   done
 
-  printf '[fieldset .submit [select name=order
-            [option disabled=disabled Order By]
-            [option value=Name %s Name]
-            [option value=Date %s Date]
-            [option value=Length %s Length]
-            [option value=Group %s Group]
-          ][button type=submit Apply Filter]]
-          ]' \
-          "$w_coname" "$w_codate" \
-          "$w_colength" "$w_cogroup"
+  printf \
+   '[fieldset .submit [select name=order
+      [option disabled=disabled Order By]
+      [option value=Name %s Name]
+      [option value=Date %s Date]
+      [option value=Length %s Length]
+      [option value=Group %s Group]
+    ][button type=submit Apply Filter]]
+  ]' "$w_coname" "$w_codate" "$w_colength" "$w_cogroup"
 }
 
 w_delete(){
@@ -247,32 +237,37 @@ w_delete(){
 }
 
 w_tagging(){
-  local tag category d
-  printf '[a href="#multitag" Add Tags / Remove Tags]
-          [div #multitag [input type="hidden" name="ref" value="%s"]' "$w_refuri"
-  printf '[a href="#" X]'
+  local tctag oldcat="" category tag
+
+  cat <<-EOF
+       [a href="#multitag" Add Tags / Remove Tags]
+       [div #multitag [input type="hidden" name="ref" value="${w_refuri}"]
+         [a href="#" X]
+       EOF
+
+  printf '%s\n' "$w_tags" \
+  | while read tctag; do
+    [ "$tctag" ] || continue
+    category="${tctag#-}"; category="${category%%:*}"
+    tag="${tctag#-}"; tag="${tag#*:}"
+
+    [ "${tag}" = "${tctag#-}" ] \
+    && category="Tags"
+
+    if [ "$category" != "$oldcat" ]; then
+      [ "$oldcat" ] && printf ']]'
+      printf '[fieldset [legend %s:][div .tagselect\n' "$category"
+    fi
+    printf '[label [checkbox "tag" "%s"] %s]\n' "$tctag" "$tag"
 
-  printf 'Tags\n%s\n' "$w_tagcategories" \
-  | while read -r category; do
-    [ "$category" ] || continue
-    # printf '[fieldset [legend %s:][select name=tag size=4 multiple\n' "$category"
-    printf '[fieldset [legend %s:][div .tagselect\n' "$category"
-    printf %s "$w_tags" \
-    | { [ "$category" = 'Tags' ] && grep -avF ':' || grep -awF "${category}"; } \
-    | { for n in 1 2 3 4 5 6 7 8 9 0; do
-        read -r line && printf '%s\n' "$line" || break
-        done;
-        sort;
-    } | while read -r tag; do
-      [ "$tag" ] || continue
-      d="${tag#-}"; d="${d#*:}"
-      # printf '[option value="%s"\n%s]' "$tag" "$d"
-      printf '[label [checkbox "tag" "%s"] %s]\n' "$tag" "$d"
-    done
-    printf ']]'
+    oldcat="$category"
   done
-
-  printf '[fieldset [legend New:][textarea name=newtag\n]
-          [submit "op" "del" Remove Tags][submit "op" "add" Add Tags]
-          ]]'
+  [ "$w_tags" ] && printf ']]'
+
+  cat <<-EOF
+         [fieldset [legend New:][textarea name=newtag]
+         [label [checkbox "makegroup" "true"] Join selected into group]
+         [submit "op" "del" Remove][submit "op" "flip" Flip][submit "op" "add" Add]
+       ]]
+       EOF
 }