summaryrefslogtreecommitdiff
path: root/cron-jobs/make_repo_torrents
blob: dd14b2228ff135998f494694bd3a24dcb9c2997e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/bash
# Copyright (C) 2014, 2017 Joseph Graham <joseph@xylon.me.uk>
# Copyright (C) 2018 Luke Shumaker <lukeshu@parabola.nu>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU 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 General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

# This script finds any updated packages and calls
# `make_indivudual_torrent' for each of them. Run every hour from cron.

# pacman doesn't support multiple different packages of the same name,
# so it's OK to just stuff all the torrents into a single directory.

set -eE
script_directory="$(dirname "$(readlink -e "$0")")/.."
. "$(dirname "$(readlink -e "$0")")/../config"
. "$(dirname "$(readlink -e "$0")")/../torrent.conf"
. "$(dirname "$(readlink -e "$0")")/../db-functions"

mkdir -p -- "${FTP_BASE}/${TORRENTPOOL}"
cd "${FTP_BASE}/${TORRENTPOOL}"

# Find any packages
for pkgpath in "$FTP_BASE"/*/os/*/*${PKGEXTS}; do
	# Resolve any symlinks
	pkgpath=$(readlink -f -- "$pkgpath")
	pkgfile="${pkgpath##*/}"

	# If a .torrent file does not already exist for this package, we call
	# `make_individual_torrent' to make it.
	if ! [[ -f ${pkgfile}.torrent ]]; then
		"$script_directory/make_individual_torrent" "$pkgpath"
	fi
done

# For torrents older than 1 year, we check if it's package still
# exists, else clean it up. This shouldn't be done every hour, but it
# is good for it to be in this cronjob so it can re-use the
# $pkgfilelist we made earlier. So we do it with a 1-in-30
# probability.
if ! (( $(shuf -e {0..29} | head -1) )); then
	while read -r torrent; do
		pkgfile="${torrent##*/}"
		pkgfile="${torrent%.torrent}"

		if ! is_globfile "$FTP_BASE"/*/os/*/"$pkgfile"; then
			rm -f -- "$torrent"
		fi
	done < <(find -H . -mtime +365 -name '*.torrent' -type f)
fi