mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-04 10:29:34 +00:00
Remove pdf filter in ds.sh script
This commit is contained in:
parent
7fe8843893
commit
7e1678da98
51
tools/ds.sh
51
tools/ds.sh
@ -20,7 +20,6 @@
|
|||||||
set -o errexit -o pipefail -o noclobber -o nounset
|
set -o errexit -o pipefail -o noclobber -o nounset
|
||||||
|
|
||||||
CURL_CMD="curl"
|
CURL_CMD="curl"
|
||||||
FILE_CMD="file"
|
|
||||||
GREP_CMD="grep"
|
GREP_CMD="grep"
|
||||||
MKTEMP_CMD="mktemp"
|
MKTEMP_CMD="mktemp"
|
||||||
SHA256_CMD="sha256sum"
|
SHA256_CMD="sha256sum"
|
||||||
@ -44,7 +43,7 @@ fi
|
|||||||
# read getopt’s output this way to handle the quoting right:
|
# read getopt’s output this way to handle the quoting right:
|
||||||
eval set -- "$PARSED"
|
eval set -- "$PARSED"
|
||||||
|
|
||||||
delete=n skip=n help=n config="${XDG_CONFIG_HOME:-$HOME/.config}/docspell/ds.conf"
|
delete=n help=n config="${XDG_CONFIG_HOME:-$HOME/.config}/docspell/ds.conf"
|
||||||
while true; do
|
while true; do
|
||||||
case "$1" in
|
case "$1" in
|
||||||
-h|--help)
|
-h|--help)
|
||||||
@ -55,10 +54,6 @@ while true; do
|
|||||||
config="$2"
|
config="$2"
|
||||||
shift 2
|
shift 2
|
||||||
;;
|
;;
|
||||||
-s|--skip)
|
|
||||||
skip="y"
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
-d|--delete)
|
-d|--delete)
|
||||||
delete="y"
|
delete="y"
|
||||||
shift
|
shift
|
||||||
@ -124,7 +119,6 @@ showUsage() {
|
|||||||
info ""
|
info ""
|
||||||
info "Options:"
|
info "Options:"
|
||||||
info " -c | --config Provide a config file. (value: $config)"
|
info " -c | --config Provide a config file. (value: $config)"
|
||||||
info " -s | --skip Skip non-PDF files. Otherwise an error is raised. (value: $skip)"
|
|
||||||
info " -d | --delete Delete the files when successfully uploaded (value: $delete)"
|
info " -d | --delete Delete the files when successfully uploaded (value: $delete)"
|
||||||
info " -h | --help Prints this help text. (value: $help)"
|
info " -h | --help Prints this help text. (value: $help)"
|
||||||
info ""
|
info ""
|
||||||
@ -133,16 +127,6 @@ showUsage() {
|
|||||||
info ""
|
info ""
|
||||||
}
|
}
|
||||||
|
|
||||||
mimetype() {
|
|
||||||
$FILE_CMD -b --mime-type "$1"
|
|
||||||
}
|
|
||||||
|
|
||||||
isPdf() {
|
|
||||||
mime=$(mimetype "$1")
|
|
||||||
[ "$mime" = "application/pdf" ]
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
if [ "$help" = "y" ]; then
|
if [ "$help" = "y" ]; then
|
||||||
showUsage
|
showUsage
|
||||||
exit 0
|
exit 0
|
||||||
@ -154,15 +138,6 @@ if [[ $# -eq 0 ]]; then
|
|||||||
exit 4
|
exit 4
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$skip" = "n" ]; then
|
|
||||||
IFS=$'\n'
|
|
||||||
for file in $*; do
|
|
||||||
if ! isPdf "$file"; then
|
|
||||||
info "Not a PDF file: $file"
|
|
||||||
exit 5
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
|
|
||||||
## Read the config file
|
## Read the config file
|
||||||
declare -a urls
|
declare -a urls
|
||||||
@ -177,18 +152,14 @@ done <<< $($GREP_CMD -v '^#.*' "$config")
|
|||||||
## Main
|
## Main
|
||||||
IFS=$'\n'
|
IFS=$'\n'
|
||||||
for file in $*; do
|
for file in $*; do
|
||||||
if isPdf "$file"; then
|
for url in "${urls[@]}"; do
|
||||||
for url in "${urls[@]}"; do
|
info "Uploading '$file' to '$url'"
|
||||||
info "Uploading '$file' to '$url'"
|
set +e
|
||||||
set +e
|
upload "$file" "$url"
|
||||||
upload "$file" "$url"
|
set -e
|
||||||
set -e
|
if [ "$delete" = "y" ] && [ $? -eq 0 ]; then
|
||||||
if [ "$delete" = "y" ] && [ $? -eq 0 ]; then
|
info "Deleting file: $file"
|
||||||
info "Deleting file: $file"
|
rm -f "$file"
|
||||||
rm -f "$file"
|
fi
|
||||||
fi
|
done
|
||||||
done
|
|
||||||
else
|
|
||||||
info "Skipping non-PDF file: $file"
|
|
||||||
fi
|
|
||||||
done
|
done
|
||||||
|
Loading…
x
Reference in New Issue
Block a user