]> git.plutz.net Git - serve0/blobdiff - list.sh
current cgilite
[serve0] / list.sh
diff --git a/list.sh b/list.sh
index 2f8e1390774469156406829f49ff702cbc3001d6..61099e71450309411935e9158d2084bd22ca0c93 100644 (file)
--- a/list.sh
+++ b/list.sh
@@ -1,45 +1,65 @@
 #!/bin/sh
 
-list_dir(){
-  name="$(HTML "$1")"
-  path="$(HTML "${ITEM}/$1")"
-  printf '[a .list .dir href="%s" %s]' \
-    "$path" "$name"
-}
-
-list_file(){
+list_item(){
   name="$(HTML "$1")"
   path="$(HTML "$ITEM/$1")"
-  printf '[div .list .file [a href="%s" [img src="%s?a=thumbnail"] %s]]' \
-    "$path" "$path" "$name"
-}
 
-list_dirs(){
-  [ "$ITEM" ] && printf '..\n'
-  (cd "$_DATA/$ITEM";
-   find ./ -type d -mindepth 1 -maxdepth 1 \
-     -exec stat -c '%Y %n' '{}' +
-   ) \
-  | { [ "$(GET o)" = Date ] && sort -rn || sort -k 2; } \
-  | cut -d/ -f2-
+  if [ -d "$_DATA/$ITEM/$1" ]; then
+    printf '[a .list .dir href="%s" %s]' \
+      "$path" "$name"
+  else
+    printf '[div .list .file [a href="%s" [img src="%s?a=thumbnail"] %s]]' \
+      "$path" "$path" "$name"
+  fi
 }
 
-list_files(){
-  (cd "$_DATA/$ITEM";
-   find ./ -type f -mindepth 1 -maxdepth 1 \
-     -exec stat -c '%Y %n' "${f#./}" '{}' + 2>&-
-   ) \
-  | { [ "$(GET o)" = Date ] && sort -rn || sort -k 2; } \
+list_items(){
+  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" -nt "$_DATA/$ITEM/.index/meta" ] \
+    && . "$_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
+    (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-
+    
 }
 
-list_tree(){
-  (cd "$_DATA/$ITEM";
-   find ./ -type f \
-     -exec stat -c '%Y %n' '{}' +
-   ) \
-  | { [ "$(GET o)" = Date ] && sort -rn || sort -k 2; } \
-  | cut -d/ -f2-
+list_paginate(){
+  page="$(GET p |grep -xE '[0-9]+' || printf 1)"
+
+  printf '[div .itemlist '
+  while i="$(line)"; do
+    c=$((${c-0} + 1))
+    if [ $c -lt $page ]; then
+      true
+    elif [ $c -lt $((LISTSIZE + page)) ]; then
+      list_item "$i"
+    fi
+  done
+  printf ']'
+
+  printf '[div .pagination'
+  for n in $(seq 1 $((c / LISTSIZE + 1)) ); do
+    printf '[a .page href="%s" %s]' \
+      "?p=$(( (n - 1) * LISTSIZE + 1))" "$n"
+  done
+  printf ']'
 }
 
 printf 'Content-Type: text/html;charset=utf-8\r\n\r\n'
@@ -49,16 +69,20 @@ printf 'Content-Type: text/html;charset=utf-8\r\n\r\n'
 [html [head [title Listing]
   [link rel=stylesheet href="/style.css" ]
 ] [body
-  $(w_search)
-  [input type=checkbox #t_prefs .toggle ][label for=t_prefs ⚙]
+  [div #navigation
+    [a #t_bookmarks href="#bookmarks" ★]
+    $(w_search)
+    [a #t_avsearch href="#advsearch" Advanced]
+    [a #t_prefs href="#prefs" ⚙]
+  ]
   $(w_prefs)
-  $(if [ "$(COOKIE mode)" = index ]; then
-    list_tree  |while read -r file; do list_file "$file"; done
-  else
-    list_dirs  |while read -r  dir; do list_dir   "$dir"; done
-    printf '[br]'
-    list_files |while read -r file; do list_file "$file"; done
-  fi)
+
+  $(list_items \
+    | list_paginate
+  )
+  [div #editing
+    $(w_index)
+  ]
 ] ]
 EOF