X-Git-Url: http://git.plutz.net/?a=blobdiff_plain;f=multitag.sh;h=8b60adebb1ac8e265866f00570c47d124c0ca9e3;hb=2c88e39a9ebf6952cf85cdbcdbdd8e37dd484cc0;hp=0a8e9d4858d1e6d4e7c969251cb4f8bc36a6ce36;hpb=3f9026072887cc5723948ec151dd108cf874225d;p=serve0 diff --git a/multitag.sh b/multitag.sh index 0a8e9d4..8b60ade 100644 --- a/multitag.sh +++ b/multitag.sh @@ -1,29 +1,44 @@ #!/bin/sh . "$_EXEC/cgilite/storage.sh" +. "$_EXEC/indexmeta.sh" + +newtags='' +for tn in $(seq 1 $(POST_COUNT tag)); do + newtags="${newtags},$(POST tag $tn)" +done +newtags="${newtags},$(POST newtag |tr -d '\r' |tr '\n' ,)" +[ "$(POST op)" = del ] && deltags="$newtags" for select in $(seq 1 $(POST_COUNT select)); do - file="$_DATA/$ITEM/$(POST select $select)" + file="$_DATA/$ITEM/$(POST select $select |PATH)" meta="${file%/*}/.index/meta" - fn="${file##*/}" - if LOCK "$meta"; then - grep -vF " $fn" "$meta" >"${meta}.tmp" - read length width height tags comment x <<-EOF - $(grep -F " $fn" "$meta") + read -r length width height tags comment fn <<-EOF + $(meta_info "$file") EOF - tags="$(printf '%s' "${tags#tags=}" | tr , '\n')" + tags="$(UNSTRING "${tags#tags=}" |tr , '\n')" - for tn in $(seq 1 $(POST_COUNT tag)); do - tags="$tags${BR}$(POST tag $tn |sed -r 's;\t;\\t;g; s;\r;;g;')" + if [ ! "$deltags" ]; then + tags="$(printf '%s\n' "${tags},${newtags}" \ + | tr , '\n' |sort -u |tr '\n' , \ + | STRING)" + else + detag="${deltags},"; while [ "$detag" ]; do + tags="$(printf '%s\n' "$tags" |grep -vxFe "${detag%%,*}")" + detag="${detag#*,}" done - tags="$tags${BR}$(POST newtag |sed -r 's;\t;\\t;g; s;\r;;g;')" + tags="$(printf '%s\n' "$tags" |sort -u |tr '\n' , |STRING)" + fi + tags="${tags#,}"; tags="${tags%,}" + + if LOCK "$meta"; then + grep -avF " $fn" "$meta" >"${meta}.tmp" - printf '%i\t%i\t%i\ttags=%s\t%s\t%s\n' \ - "$length" "$width" "$height" \ - "$(printf %s "$tags" |sort -u |tr '\n' ,)" \ - "$comment" "$fn" \ - >>"${meta}.tmp" + printf '%i %i %i tags=%s comment=%s %s\n' \ + "$length" "$width" "$height" "$tags" \ + "${comment#comment=}" "$fn" \ + >>"${meta}.tmp" mv "${meta}.tmp" "$meta" RELEASE "$meta"