xdg-sanity/xdg-sanity

103 lines
2.8 KiB
Plaintext
Raw Normal View History

2022-11-08 06:05:10 +00:00
#!/bin/sh
# Copyright (c) 20222023 Emma Tebibyte <emma@tebibyte.media>
# SPDX-License-Identifier: AGPL-3.0-or-later
#
# This program is free software: you can redistribute it and/or modify it under
# the terms of the GNU Affero General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option) any
# later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
# details.
#
# You should have received a copy of the GNU Affero General Public License along
# with this program. If not, see https://www.gnu.org/licenses/.
2022-11-08 06:05:10 +00:00
set -e
argv0="$0"
# check if usage is valid
if test -z "$1"; then
2022-11-22 05:02:30 +00:00
printf "Usage: %s [resource...]\n" "$argv0" 1>&2
exit 64 # sysexits(3) EX_USAGE
2022-11-08 06:05:10 +00:00
fi
for dep in \
curl \
handlr \
tomcat
do
if ! command -v "$dep" >/dev/null 2>&1; then
printf "%s: Missing dependency: %s(1)\n" "$argv0" "$dep" 1>&2
exit 69 # sysexits(3) EX_UNAVAILABLE
fi
done
2022-11-08 06:05:10 +00:00
# check if we have a BROWSER
if test -z "$BROWSER"; then
printf "%s: \$BROWSER not filled.\n" "$argv0" 1>&2
2022-11-22 05:02:30 +00:00
exit 71 # sysexits(3) EX_OSERR
2022-11-08 06:05:10 +00:00
fi
while test -n "$1"; do
2022-11-22 05:02:30 +00:00
URL="$1"
# use curl(1) to write out the request header's content_type,
# strip everything after the first semicolon,
# chop off any weird whitespace remnants
MIME="$(curl -Ls -o /dev/null -w '%{content_type}' "$1" | sed 's/\;.*//' \
| xargs echo)"
2022-11-22 05:02:30 +00:00
# get the pattern for the extensions to MATCH
MATCH="$(printf "%s\n" "$URL" | sed -ne 's/^h.\+\/\///p' \
| sed -e 's/\/.*\+//g')"
2022-11-22 05:02:30 +00:00
# run through MIME extensions
for file in \
"$XDG_DATA_HOME"/xdg-sanity/*-mime.toml \
/usr/share/xdg-sanity/*-mime.toml \
/usr/local/share/xdg-sanity/*-mime.toml
do
if test -e "$file"; then
i=$(tomcat replace.urls "$file" | sed 's/ /\n/g' | wc -l)
while ! [ "$i" = 0 ]; do
if [ "$MATCH" = "$(tomcat replace.urls["$i"] "$file")" ]; then
MIME="$(tomcat with.mime "$file")"
fi
i="$(printf "%s-1\n" "$i" | bc)"
2022-11-22 05:02:30 +00:00
done
fi
done
# and the replace extensions
for file in \
"$XDG_DATA_HOME"/xdg-sanity/*-replace.toml \
/usr/share/xdg-sanity/*-replace.toml \
/usr/local/share/xdg-sanity/*-replace.toml
do
if test -e "$file"; then
i="$(tomcat replace.urls "$file" | sed 's/ /\n/g' | wc -l)"
while ! [ "$i" = 0 ]; do
if [ "$MATCH" = "$(tomcat replace.urls["$i"] "$file")" ]; then
URL="$(tomcat with.url "$file")"
2022-11-22 05:02:30 +00:00
fi
i="$(printf "%s-1\n" "$i" | bc)"
2022-11-22 05:02:30 +00:00
done
fi
done
2022-11-08 06:05:10 +00:00
# these commands may fail; this is intentional
2022-11-22 05:02:30 +00:00
if [ "$MIME" = "text/html" ]; then
"$BROWSER" "$URL"
else
handlr launch "$MIME" -- "$URL"
2022-11-22 05:02:30 +00:00
fi
shift
2022-11-08 06:05:10 +00:00
done
exit 0