]> git.plutz.net Git - shellwiki/commitdiff
case insensitive attachment suffixes
authorPaul Hänsch <paul@plutz.net>
Mon, 9 Oct 2023 08:54:06 +0000 (10:54 +0200)
committerPaul Hänsch <paul@plutz.net>
Mon, 9 Oct 2023 08:54:06 +0000 (10:54 +0200)
handlers/40_attachment.sh

index 5ea36e90b568aa30b7cd32385ccd452e00ce83c1..fc0b0f983ff00aee3a0787c1e38761315d973697 100755 (executable)
@@ -35,15 +35,15 @@ attachment_convert(){
   elif [ -f "$cachepath" ]; then
     printf %s "$attpath"
     return 0
-  elif ! mkdir -p -- "${cachepath%/*}" && touch "$cachepath"; then
+  elif ! mkdir -p -- "${cachepath%/*}" && touch -- "$cachepath"; then
     printf %s "$attpath"
     return 0
   fi
 
   case $attpath in
-    *.jpg|*.jpeg|*.png)
+    *.[jJ][pP][gG]|*.[jJ][pP][eE][gG]|*.[pP][nN][gG])
       read junk junk res junk <<-EOF
-       $(identify "$attpath")
+       $(identify -- "$attpath")
        EOF
       if [ "${res%x*}" -gt 2048 ]; then
         convert "$attpath" -resize 1920x-2 -quality 85 "$cachepath"
@@ -53,7 +53,7 @@ attachment_convert(){
       printf %s "$cachepath"
       return 0
     ;;
-    *.webm|*.mp4|*.mkv|*.avi)
+    *.[wW][eE][bB][mM]|*.[mM][pP]4|*.[mM][kK][vV]|*.[aA][vV][iI])
       res=$(ffprobe -show_entries stream=width "$attpath" 2>&-)
       res="${res#*width=}" res="${res%%${BR}*}"
       if [ "$res" -gt 1280 ]; then
@@ -77,7 +77,7 @@ attachment_convert(){
       printf %s "$attpath"
       return 0
     ;;
-    *) printf "$attpath";;
+    *) printf %s "$attpath";;
   esac
 }