summaryrefslogtreecommitdiffstats
path: root/update.sh
blob: 2fb6f4c01d31033445323f8f2bfd5a3cf1e5beb4 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/bin/bash
set -eo pipefail

declare -A cmd=(
	[apache]='apache2-foreground'
	[fpm]='php-fpm'
)

declare -A extras=(
	[apache]='\nRUN a2enmod rewrite'
	[fpm]=''
)

# version_greater_or_equal A B returns whether A >= B
function version_greater_or_equal() {
	[[ "$(printf '%s\n' "$@" | sort -V | head -n 1)" != "$1" || "$1" == "$2" ]];
}

latests=( $( curl -fsSL 'https://download.nextcloud.com/server/releases/' |tac|tac| \
	grep -oE 'nextcloud-[[:digit:]]+(.[[:digit:]]+)+' | \
	grep -oE '[[:digit:]]+(.[[:digit:]]+)+' | \
	sort -urV ) )

find . -maxdepth 1 -type d -regextype sed -regex '\./[[:digit:]]\+\.[[:digit:]]\+' -exec rm -r '{}' \;

travisEnv=
for latest in "${latests[@]}"; do
	version=$(echo "$latest" | cut -d. -f1-2)

	if [ -d "$version" ]; then
		continue
	fi

	# Only add versions >= 11
	if version_greater_or_equal "$version" "11.0"; then

		for variant in apache fpm; do
			# Create the version+variant directory with a Dockerfile.
			mkdir -p "$version/$variant"

			template="Dockerfile.template"
			cp "$template" "$version/$variant/Dockerfile"

			echo "updating $latest [$version] $variant"

			# Replace the variables.
			sed -ri -e '
				s/%%VARIANT%%/'"$variant"'/g;
				s/%%VERSION%%/'"$latest"'/g;
				s/%%CMD%%/'"${cmd[$variant]}"'/g;
				s/%%VARIANT_EXTRAS%%/'"${extras[$variant]}"'/g;
			' "$version/$variant/Dockerfile"

			# Copy the shell scripts
			for name in entrypoint cron; do
				cp "docker-$name.sh" "$version/$variant/$name.sh"
			done

			# Copy the config directory
			cp -rT .config "$version/$variant/config"

			# Remove Apache config if we're not an Apache variant.
			if [ "$variant" != "apache" ]; then
				rm "$version/$variant/config/apache-pretty-urls.config.php"
			fi

			for arch in i386 amd64; do
				travisEnv='\n    - env: VERSION='"$version"' VARIANT='"$variant"' ARCH='"$arch$travisEnv"
			done
		done
	fi
done

# replace the fist '-' with ' '
travisEnv="$(echo "$travisEnv" | sed '0,/-/{s/-/ /}')"

# update .travis.yml
travis="$(awk -v 'RS=\n\n' '$1 == "-" && $2 == "stage:" && $3 == "test" && $4 == "images" { $0 = "    - stage: test images'"$travisEnv"'" } { printf "%s%s", $0, RS }' .travis.yml)"
echo "$travis"  > .travis.yml