2021-07-10 01:57:20 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
|
|
|
|
# Source common variables
|
|
|
|
# shellcheck disable=SC2046,1091,1090
|
2022-07-13 05:55:50 +00:00
|
|
|
source "$(dirname "${BASH_SOURCE[0]}")/common"
|
2021-07-10 01:57:20 +00:00
|
|
|
|
|
|
|
NAME=gen-torrents
|
|
|
|
|
|
|
|
USAGE="usage: $NAME <torrentdir>"
|
|
|
|
ISODIR=${1}
|
|
|
|
|
|
|
|
if [[ -z "${ISODIR}" || $# == 0 ]]; then
|
2021-07-10 02:03:32 +00:00
|
|
|
echo "$USAGE"
|
2021-07-10 01:57:20 +00:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Setup a lock?
|
|
|
|
LOCKFILE="/tmp/${NAME}.lock"
|
|
|
|
if [ -f "$LOCKFILE" ]; then
|
|
|
|
echo "Script is already running"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2021-07-10 02:03:32 +00:00
|
|
|
trap 'rm -f $LOCKFILE' EXIT
|
2021-07-10 01:57:20 +00:00
|
|
|
touch $LOCKFILE
|
|
|
|
|
|
|
|
# stamp the email
|
|
|
|
|
|
|
|
# Where to put torrent data
|
|
|
|
TORRENT_DOWNLOAD_DIR="/opt/rtorrent/download"
|
|
|
|
# Where to drop created torrents
|
|
|
|
TORRENT_START_DIR="/opt/rtorrent/watch/start"
|
|
|
|
# What trackers should be used
|
|
|
|
TORRENT_TRACKERS=(
|
|
|
|
"udp://tracker.opentrackr.org:1337/announce"
|
|
|
|
"udp://tracker.openbittorrent.com:80/announce"
|
|
|
|
)
|
|
|
|
# Regex of paths to exclude
|
|
|
|
TORRENT_EXCLUDES='.*\/CHECKSUM.asc'
|
2022-05-12 22:38:23 +00:00
|
|
|
TORRENT_COMMENT="https://docs.rockylinux.org/release_notes/${REVISION//\./_}/" # dots are bad, mkay?
|
2021-07-10 01:57:20 +00:00
|
|
|
THREADS=10
|
|
|
|
|
|
|
|
printf "* Step 1: Create scaffolding and link\n"
|
|
|
|
cd "${TORRENT_DOWNLOAD_DIR}" || exit 1
|
|
|
|
for variant in "${VARIANTS[@]}"; do
|
|
|
|
for arch in "${ARCHES[@]}"; do
|
|
|
|
# Skip this architecture if it's not there
|
|
|
|
if [[ ! -d "${ISODIR}/${arch}" ]]; then
|
|
|
|
printf "** %s - Does not exist. Skipping.\n" "${ISODIR}/${arch}"
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
name_template="Rocky-${REVISION}-${arch}-${variant}"
|
|
|
|
|
|
|
|
if [[ ! -f "${ISODIR}/${arch}/${name_template}.iso" ]]; then
|
|
|
|
printf "** %s - Does not exist. Skipping.\n" "${ISODIR}/${arch}/${name_template}.iso"
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
printf "** Making directory: %s/%s\n" "${TORRENT_DOWNLOAD_DIR}" "${name_template}"
|
|
|
|
mkdir "${name_template}" || exit 2
|
|
|
|
|
|
|
|
printf "** Linking Version: %s; Arch: %s; Variant: %s\n" "${REVISION}" "${arch}" "${variant}"
|
|
|
|
ln -sv \
|
2021-07-10 02:03:32 +00:00
|
|
|
"${ISODIR}"/"${arch}"/{CHECKSUM*,"${name_template}".iso*} \
|
|
|
|
"${name_template}"/
|
2021-07-10 01:57:20 +00:00
|
|
|
done
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
printf "* Step 2: Generate torrents\n"
|
2021-07-10 02:03:32 +00:00
|
|
|
for torrent_directory in "${TORRENT_DOWNLOAD_DIR}"/Rocky-"${REVISION}"-*; do
|
2021-07-10 01:57:20 +00:00
|
|
|
name="$(basename "${torrent_directory}")"
|
|
|
|
|
|
|
|
if [[ -d "${torrent_directory}" ]]; then
|
2021-07-10 02:03:32 +00:00
|
|
|
printf "** Creating torrent for %s\n" "${torrent_directory}"
|
2021-07-10 01:57:20 +00:00
|
|
|
else
|
|
|
|
continue
|
|
|
|
fi
|
2021-07-10 02:03:32 +00:00
|
|
|
|
|
|
|
torrenttools create \
|
|
|
|
--announce "${TORRENT_TRACKERS[@]}" --name "${name}" \
|
|
|
|
--exclude "${TORRENT_EXCLUDES}" --output "${TORRENT_START_DIR}" \
|
|
|
|
--threads "${THREADS}" --comment "${TORRENT_COMMENT}" \
|
2021-07-10 01:57:20 +00:00
|
|
|
"${torrent_directory}"
|
|
|
|
res=$?
|
|
|
|
if [[ $res -ne 0 ]]; then
|
|
|
|
printf "**[ERROR] Failed to create torrent."
|
|
|
|
exit "$res"
|
|
|
|
fi
|
|
|
|
done
|