5 local cachepath="${attpath%/#attachments/*}/#cache/${attpath#*/#attachments/}"
9 *.webm|*.mp4|*.mkv|*.avi)
10 cachepath="${cachepath}.webm"
14 if [ -s "$cachepath" ]; then
15 printf %s "$cachepath"
17 elif [ -f "$cachepath" ]; then
20 elif ! mkdir -p -- "${cachepath%/*}" && touch "$cachepath"; then
27 read junk junk res junk <<-EOF
28 $(identify "$attpath")
30 if [ "${res%x*}" -gt 2048 ]; then
31 convert "$attpath" -resize 1920x-2 -quality 85 "$cachepath"
33 convert "$attpath" -quality 85 "$cachepath"
35 printf %s "$cachepath"
38 *.webm|*.mp4|*.mkv|*.avi)
39 res=$(ffprobe -show_entries stream=width "$attpath" 2>&-)
40 res="${res#*width=}" res="${res%%${BR}*}"
41 if [ "$res" -gt 1280 ]; then
43 ffmpeg -y -nostdin -i "$attpath" \
44 -c:v libvpx -vf scale=1280:-2 -crf 28 -b:v 0 \
45 -c:a libvorbis -q:a 6 \
46 "${cachepath%.*}.tmp.webm" \
47 && mv -- "${cachepatch%.*}.tmp.webm" "${cachepath}" \
52 ffmpeg -y -nostdin -i "$attpath" \
53 -c:v libvpx -crf 28 -b:v 0 \
54 -c:a libvorbis -q:a 6 \
55 "${cachepath%.*}.tmp.webm" \
56 && mv -- "${cachepatch%.*}.tmp.webm" "${cachepath}" \
67 tsid="$(POST session_key)"; tsid="${tsid%% *}"
68 attachment_delete="$(POST delete)"
70 if [ "${CONTENT_TYPE%%;*}" = "multipart/form-data" ] && acl_write "${PATH_INFO%\[attachment\]/}"; then
71 . "$_EXEC/multipart.sh"
74 # Validate session id from form to prevent CSRF
75 # Only validate if username is present, because no username means
76 # anonymous uploads are allowed via acl and cgilite/session.sh does not
77 # validate anonymous sessions from a multipart/formdata
78 if [ "$USER_NAME" -a "$(multipart session_id)" != "$SESSION_ID" ]; then
79 rm -- "$multipart_cachefile"
80 printf 'Refresh: %i\r\n' 4
85 mkdir -p "$_DATA/pages/${PATH_INFO%/\[attachment\]/}/#attachments/"
86 n=1; while filename=$(multipart_filename "file" "$n"); do
87 filename="$(printf %s "$filename" |tr /\\0 __)"
88 multipart "file" "$n" >"$_DATA/pages/${PATH_INFO%/\[attachment\]/}/#attachments/$filename"
91 rm -- "$multipart_cachefile"
92 REDIRECT "${_BASE}${PATH_INFO}"
93 elif [ "${CONTENT_TYPE%%;*}" = "multipart/form-data" ]; then
94 printf 'Refresh: %i\r\n' 4
96 head -c $((CONTENT_LENGTH)) >/dev/null
98 elif [ "$attachment_delete" -a "$SESSION_ID" = "$tsid" ]; then
99 rm -- "$_DATA/pages/${PATH_INFO%/\[attachment\]/}/#attachments/$attachment_delete"
100 REDIRECT "${_BASE}${PATH_INFO}"
101 elif [ "$attachment_delete" ]; then
102 printf 'Refresh: %i\r\n' 4
105 elif acl_read "${PATH_INFO%\[attachment\]/}"; then
106 theme_attachments "${PATH_INFO%\[attachment\]/}"
115 attpath="${PATH_INFO%/\[attachment\]/*}/#attachments/${PATH_INFO##*/}"
117 if ! acl_read "${PATH_INFO%/\[attachment\]/*}"; then
120 elif [ -f "$_DATA/pages/$attpath" ]; then
121 FILE "$_DATA/pages/$attpath"
123 elif [ -f "$_EXEC/pages/$attpath" ]; then
124 FILE "$_EXEC/pages/$attpath"
135 attpath="${PATH_INFO%/*}/#attachments/${PATH_INFO##*/}"
137 if ! acl_read "${PATH_INFO%/*}/"; then
140 elif [ -f "$_DATA/pages/$attpath" ]; then
141 FILE "$(attachment_convert "$_DATA/pages/$attpath")"
143 elif [ -f "$_EXEC/pages/$attpath" ]; then
144 FILE "$(attachment_convert "$_EXEC/pages/$attpath")"
146 elif [ -d "$_DATA/pages/${PATH_INFO}" -o -d "$_EXEC/pages/${PATH_INFO}" ]; then
147 REDIRECT "${_BASE}${PATH_INFO}/"
148 elif [ "${PATH_INFO%\[*\]}" = "${PATH_INFO}" ]; then