-
Notifications
You must be signed in to change notification settings - Fork 6
/
purge.sh
executable file
·62 lines (55 loc) · 1.37 KB
/
purge.sh
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
#!/bin/bash
#
# This script is to purge s3 of older package versions
#
# minimum version to keep
# MIN_VERSION=1.0.2
# stable | test
# RELEASE_TYPE=stable
# bucket name
# S3_BUCKET=repo.homebridge.io
# region
# S3_REGION=us-west-2
# from https://stackoverflow.com/a/4025065
vercomp () {
if [[ $1 == $2 ]]
then
return 0
fi
local IFS=.
local i ver1=($1) ver2=($2)
# fill empty fields in ver1 with zeros
for ((i=${#ver1[@]}; i<${#ver2[@]}; i++))
do
ver1[i]=0
done
for ((i=0; i<${#ver1[@]}; i++))
do
if [[ -z ${ver2[i]} ]]
then
# fill empty fields in ver2 with zeros
ver2[i]=0
fi
if ((10#${ver1[i]} > 10#${ver2[i]}))
then
return 1
fi
if ((10#${ver1[i]} < 10#${ver2[i]}))
then
return 2
fi
done
return 0
}
# loop over the objects in the bucket and find packages to remove
for i in $(aws s3api list-objects --region $S3_REGION --bucket "$S3_BUCKET" --prefix pool/$RELEASE_TYPE/h/ho/ | jq ".Contents[] | .Key"); do
version=${i#*_}
version=${version%_*}
vercomp $MIN_VERSION $version
result=$?
if [ $result -eq 1 ]; then
key=$(echo "$i" | tr -d '"')
echo "Removing ($version) from s3 at $key"
aws s3api delete-object --region $S3_REGION --bucket "$S3_BUCKET" --key="$key" --output=json
fi
done