Total rewrite #15
146
xdg-sanity
146
xdg-sanity
@ -7,114 +7,108 @@ argv0="$0"
|
|||||||
# grabs configuration files
|
# grabs configuration files
|
||||||
CONFIG="$XDG_CONFIG_HOME"/xdg-sanity.toml
|
CONFIG="$XDG_CONFIG_HOME"/xdg-sanity.toml
|
||||||
if ! test -e "$CONFIG"; then
|
if ! test -e "$CONFIG"; then
|
||||||
touch "$CONFIG"
|
touch "$CONFIG"
|
||||||
CONFIG=/etc/xdg-sanity.toml
|
|
||||||
if ! test -e "$CONFIG"; then
|
|
||||||
exit 66 # sysexits(3) EX_NOINPUT
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
# check if usage is valid
|
# check if usage is valid
|
||||||
if ! test -n "$1"; then
|
if ! test -n "$1"; then
|
||||||
printf "Usage: %s [resource...]\n" "$argv0" 1>&2
|
printf "Usage: %s [resource...]\n" "$argv0" 1>&2
|
||||||
exit 64 # sysexits(3) EX_USAGE
|
exit 64 # sysexits(3) EX_USAGE
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# check if we have curl(1)
|
# check if we have curl(1)
|
||||||
if ! command -v curl >/dev/null 2>&1; then
|
if ! command -v curl >/dev/null 2>&1; then
|
||||||
printf "%s: Missing dependency: curl(1)\n" "$argv0" 1>&2
|
printf "%s: Missing dependency: curl(1)\n" "$argv0" 1>&2
|
||||||
exit 71 # sysexits(3) EX_OSERR
|
exit 69 # sysexits(3) EX_UNAVAILABLE
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# check if we have tomcat(1)
|
# check if we have tomcat(1)
|
||||||
if ! command -v tomcat >/dev/null 2>&1; then
|
if ! command -v tomcat >/dev/null 2>&1; then
|
||||||
printf "%s: Missing dependency: tomcat(1)\n" "$argv0" 1>&2
|
printf "%s: Missing dependency: tomcat(1)\n" "$argv0" 1>&2
|
||||||
exit 71 # sysexits(3) EX_OSERR
|
exit 69 # sysexits(3) EX_UNAVAILABLE
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# set the XDG_COMMAND
|
# set the XDG_COMMAND
|
||||||
test -n "$XDG_COMMAND" || XDG_COMMAND="$(tomcat tools.xdg "$CONFIG")"
|
test -n "$XDG_COMMAND" || XDG_COMMAND="$(tomcat tools.xdg "$CONFIG")"
|
||||||
! command -v handlr >/dev/null 2>&1 && ! command -v xdg-open >/dev/null 2>&1 \
|
! command -v handlr >/dev/null 2>&1 && ! command -v xdg-open >/dev/null 2>&1 \
|
||||||
&& XDG_COMMAND=false \
|
&& XDG_COMMAND=false \
|
||||||
|| true
|
|| true
|
||||||
|
|
||||||
|
|
||||||
# check if we have a BROWSER
|
# check if we have a BROWSER
|
||||||
test -n "$BROWSER" || BROWSER="$(tomcat tools.browser "$CONFIG")"
|
test -n "$BROWSER" || BROWSER="$(tomcat tools.browser "$CONFIG")"
|
||||||
if ! test -n "$BROWSER"; then
|
if ! test -n "$BROWSER"; then
|
||||||
printf "\
|
printf "\
|
||||||
%s: \$BROWSER not filled.
|
%s: \$BROWSER not filled.
|
||||||
Please place the path to your preferred browser's executable in
|
Please place the path to your preferred browser's executable in
|
||||||
$XDG_CONFIG_HOME/xdg-sanity.conf or /etc/xdg-sanity.conf
|
$XDG_CONFIG_HOME/xdg-sanity.toml
|
||||||
" "$argv0" 1>&2
|
" "$argv0" 1>&2
|
||||||
exit 71 # sysexits(3) EX_OSERR
|
exit 71 # sysexits(3) EX_OSERR
|
||||||
fi
|
fi
|
||||||
|
|
||||||
while test -n "$1"; do
|
while test -n "$1"; do
|
||||||
URL="$1"
|
URL="$1"
|
||||||
|
|
||||||
# use curl(1) to write out the request header's content_type,
|
# use curl(1) to write out the request header's content_type,
|
||||||
# strip everything after the first semicolon,
|
# strip everything after the first semicolon,
|
||||||
# chop off any weird whitespace remnants
|
# chop off any weird whitespace remnants
|
||||||
MIME="$(curl -Ls -o /dev/null -w '%{content_type}' "$1" | sed 's/\;.*//' |\
|
MIME="$(curl -Ls -o /dev/null -w '%{content_type}' "$1" | sed 's/\;.*//' |\
|
||||||
xargs echo)"
|
xargs echo)"
|
||||||
|
|
||||||
# get the pattern for the extensions to MATCH
|
# get the pattern for the extensions to MATCH
|
||||||
MATCH="$(printf "%s\n" "$URL" | sed -ne 's/^h.\+\/\///p' |\
|
MATCH="$(printf "%s\n" "$URL" | sed -ne 's/^h.\+\/\///p' |\
|
||||||
sed -e 's/\/.*\+//g')"
|
sed -e 's/\/.*\+//g')"
|
||||||
|
|
||||||
# run through MIME extensions
|
# run through MIME extensions
|
||||||
for file in \
|
for file in \
|
||||||
"$XDG_DATA_HOME"/xdg-sanity/*-mime.toml \
|
"$XDG_DATA_HOME"/xdg-sanity/*-mime.toml \
|
||||||
/usr/share/xdg-sanity/*-mime.toml \
|
/usr/share/xdg-sanity/*-mime.toml \
|
||||||
/usr/local/share/xdg-sanity/*-mime.toml
|
/usr/local/share/xdg-sanity/*-mime.toml
|
||||||
do
|
do
|
||||||
if test -e "$file"; then
|
if test -e "$file"; then
|
||||||
i=$(tomcat replace.urls "$file" | sed 's/ /\n/g' | wc -l)
|
i=$(tomcat replace.urls "$file" | sed 's/ /\n/g' | wc -l)
|
||||||
while ! [ "$i" = 0 ]; do
|
while ! [ "$i" = 0 ]; do
|
||||||
if [ "$MATCH" = "$(tomcat replace.urls["$i"] "$file")" ]; then
|
if [ "$MATCH" = "$(tomcat replace.urls["$i"] "$file")" ]; then
|
||||||
MIME="$(tomcat with.mime "$file")"
|
MIME="$(tomcat with.mime "$file")"
|
||||||
fi
|
fi
|
||||||
i="$(dc -e "$i 1 - p")"
|
i="$(dc -e "$i 1 - p")"
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
# and the replace extensions
|
# and the replace extensions
|
||||||
for file in \
|
for file in \
|
||||||
"$XDG_DATA_HOME"/xdg-sanity/*-replace.toml \
|
"$XDG_DATA_HOME"/xdg-sanity/*-replace.toml \
|
||||||
/usr/share/xdg-sanity/*-replace.toml \
|
/usr/share/xdg-sanity/*-replace.toml \
|
||||||
/usr/local/share/xdg-sanity/*-replace.toml
|
/usr/local/share/xdg-sanity/*-replace.toml
|
||||||
do
|
do
|
||||||
if test -e "$file"; then
|
if test -e "$file"; then
|
||||||
i=$(tomcat replace.urls "$file" | sed 's/ /\n/g' | wc -l)
|
i="$(tomcat replace.urls "$file" | sed 's/ /\n/g' | wc -l)"
|
||||||
while ! [ "$i" = 0 ]; do
|
while ! [ "$i" = 0 ]; do
|
||||||
if [ "$MATCH" = "$(tomcat replace.urls["$i"] "$file")" ]; then
|
if [ "$MATCH" = "$(tomcat replace.urls["$i"] "$file")" ]; then
|
||||||
URL="$(tomcat with.url "$file")"
|
URL="$(tomcat with.url "$file")"
|
||||||
fi
|
fi
|
||||||
i="$(dc -e "$i 1 - p")"
|
i="$(dc -e "$i 1 - p")"
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
# these commands may fail; this is intentional
|
# these commands may fail; this is intentional
|
||||||
if [ "$MIME" = "text/html" ]; then
|
if [ "$MIME" = "text/html" ]; then
|
||||||
"$BROWSER" "$URL"
|
"$BROWSER" "$URL"
|
||||||
else
|
else
|
||||||
case "$(command -v $XDG_COMMAND)" in
|
case "$(command -v $XDG_COMMAND)" in
|
||||||
*/handlr )
|
*/handlr )
|
||||||
handlr launch "$MIME" -- "$URL"
|
handlr launch "$MIME" -- "$URL"
|
||||||
;;
|
;;
|
||||||
*/xdg-open )
|
*/xdg-open )
|
||||||
"$(xdg-mime query default "$MIME")" "$URL"
|
"$(xdg-mime query default "$MIME")" "$URL"
|
||||||
;;
|
;;
|
||||||
false )
|
false )
|
||||||
exit 69 # sysexits(3) EX_UNAVAILABLE
|
exit 69 # sysexits(3) EX_UNAVAILABLE
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
shift
|
shift
|
||||||
done
|
done
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
Loading…
Reference in New Issue
Block a user