Use curl
if not running on OpenBSD
This commit is contained in:
parent
6bbdb29b10
commit
8de76cf8b1
@ -23,6 +23,19 @@ err()
|
|||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fetch_file()
|
||||||
|
{
|
||||||
|
# Assumes utility supports `-o output_file`
|
||||||
|
case $(uname) in
|
||||||
|
OpenBSD)
|
||||||
|
$torsocks ftp -MV "$@"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
$torsocks curl -fLSs "$@"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
api()
|
api()
|
||||||
{
|
{
|
||||||
printf "https://%s%s\n" "$INVIDIOUS" "$*"
|
printf "https://%s%s\n" "$INVIDIOUS" "$*"
|
||||||
@ -93,6 +106,6 @@ id=$(get_id "$url")
|
|||||||
[ ${#id} -eq 11 ] || err "invalid video ID $id"
|
[ ${#id} -eq 11 ] || err "invalid video ID $id"
|
||||||
|
|
||||||
# XXX choose in some clever way
|
# XXX choose in some clever way
|
||||||
itag=$($torsocks ftp -MVo - "$(api "/api/v1/videos/$id")" |
|
itag=$(fetch_file -o - "$(api "/api/v1/videos/$id")" |
|
||||||
jq -r ".formatStreams[].itag" | head -n 1)
|
jq -r ".formatStreams[].itag" | head -n 1)
|
||||||
api "/latest_version?id=$id&itag=$itag"
|
api "/latest_version?id=$id&itag=$itag"
|
||||||
|
@ -22,6 +22,19 @@ err()
|
|||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fetch_file()
|
||||||
|
{
|
||||||
|
# Assumes utility supports `-o output_file`
|
||||||
|
case $(uname) in
|
||||||
|
OpenBSD)
|
||||||
|
$torsocks ftp -MV "$@"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
$torsocks curl -fLSs "$@"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
tonumber()
|
tonumber()
|
||||||
{
|
{
|
||||||
printf "%u" "$1" 2>/dev/null
|
printf "%u" "$1" 2>/dev/null
|
||||||
@ -44,6 +57,6 @@ url=https://tools.ietf.org/rfc/rfc$n.txt
|
|||||||
|
|
||||||
mkdir -p "$RFCDIR"
|
mkdir -p "$RFCDIR"
|
||||||
if [ ! -f "$rfcfile" ]; then
|
if [ ! -f "$rfcfile" ]; then
|
||||||
$torsocks ftp -Vo "$rfcfile" "$url" || err "couldn't fetch RFC $n"
|
fetch_file -o "$rfcfile" "$url" || err "couldn't fetch RFC $n"
|
||||||
fi
|
fi
|
||||||
${PAGER:-more} "$rfcfile"
|
${PAGER:-more} "$rfcfile"
|
||||||
|
Loading…
Reference in New Issue
Block a user