-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
pullio.sh
executable file
·293 lines (267 loc) · 13 KB
/
pullio.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
#!/bin/bash
COMPOSE_BINARY="${COMPOSE_BINARY:-$(which 'docker-compose')}"
DOCKER_BINARY="${DOCKER_BINARY:-$(which 'docker')}"
CACHE_LOCATION=/tmp
TAG=""
DEBUG=""
CURRENT_VERSION=0.0.7
LATEST_VERSION=$(curl -fsSL "https://api.github.com/repos/hotio/pullio/releases" | jq -r .[0].tag_name)
PARALLEL=1
COMPOSE_TYPE="NONE"
# Check for V1
if [[ -n "${COMPOSE_BINARY}" ]]; then
COMPOSE_TYPE="V1"
# If V1 is not found, check for V2
elif [[ -n "${DOCKER_BINARY}" ]] && docker compose version &>/dev/null; then
COMPOSE_TYPE="V2"
fi
while [ "$1" != "" ]; do
PARAM=$(printf "%s\n" $1 | awk -F= '{print $1}')
VALUE=$(printf "%s\n" $1 | sed 's/^[^=]*=//g')
if [[ $VALUE == "$PARAM" ]]; then
shift
VALUE=$1
fi
case $PARAM in
--tag)
[[ -n $VALUE ]] && [[ $VALUE != "--"* ]] && TAG=".$VALUE"
;;
--debug)
[[ $VALUE != "--"* ]] && DEBUG="${VALUE:-debug}"
;;
--parallel)
[[ $VALUE =~ ^[0-9]+$ ]] && PARALLEL=$VALUE
;;
esac
shift
done
echo "Running with \"DEBUG=$DEBUG\", \"TAG=$TAG\", and \"PARALLEL=$PARALLEL\"."
echo "Current version: ${CURRENT_VERSION}"
echo "Latest version: ${LATEST_VERSION}"
# Setups the environment variables
setup_environment() {
# Always export these variables
export COMPOSE_BINARY DOCKER_BINARY CACHE_LOCATION TAG DEBUG COMPOSE_TYPE
# Export functions and additional variables only for parallel execution
if [ "$PARALLEL" -gt 1 ]; then
export -f process_container compose_pull_wrapper compose_up_wrapper
export -f send_discord_notification send_generic_webhook export_env_vars
export sum
fi
}
compose_pull_wrapper() {
cd "$1" || exit 1
case $COMPOSE_TYPE in
"V1")
"${COMPOSE_BINARY}" pull "$2"
;;
"V2")
"${DOCKER_BINARY}" compose pull "$2"
;;
"NONE")
if [[ -n "${DOCKER_BINARY}" ]]; then
"${DOCKER_BINARY}" run --rm -v /var/run/docker.sock:/var/run/docker.sock -v "$1:$1" -w="$1" linuxserver/docker-compose pull "$2"
else
echo "Error: Neither Docker Compose nor Docker binary is available. Cannot pull." >&2
return 1
fi
;;
esac
}
compose_up_wrapper() {
cd "$1" || exit 1
case $COMPOSE_TYPE in
"V1")
"${COMPOSE_BINARY}" up -d --always-recreate-deps "$2"
;;
"V2")
"${DOCKER_BINARY}" compose up -d --always-recreate-deps "$2"
;;
"NONE")
if [[ -n "${DOCKER_BINARY}" ]]; then
"${DOCKER_BINARY}" run --rm -v /var/run/docker.sock:/var/run/docker.sock -v "$1:$1" -w="$1" linuxserver/docker-compose up -d --always-recreate-deps "$2"
else
echo "Error: Neither Docker Compose nor Docker binary is available. Cannot bring up services." >&2
return 1
fi
;;
esac
}
send_discord_notification() {
if [[ "${LATEST_VERSION}" != "${CURRENT_VERSION}" ]]; then
footer_text="Powered by Pullio (update available)"
else
footer_text="Powered by Pullio"
fi
extra=""
if [[ -n $3 ]] && [[ -n $4 ]] && [[ -n $7 ]] && [[ -n $8 ]]; then
v_ind=">" && [[ ${3} == "${4}" ]] && v_ind="="
r_ind=">" && [[ ${7} == "${8}" ]] && r_ind="="
extra=',
{
"name": "Version",
"value": "```\n'${3}'\n ='$v_ind' '${4}'```"
},
{
"name": "Revision (Git SHA)",
"value": "```\n'${7:0:6}'\n ='$r_ind' '${8:0:6}'```"
}'
fi
d_ind=">" && [[ ${9} == "${10}" ]] && d_ind="="
author_url="${12}" && [[ -z ${12} ]] && author_url="https://github.com/hotio/pullio/raw/master/pullio.png"
json='{
"embeds": [
{
"description": "'${1}'",
"color": '${11:-768753}',
"fields": [
{
"name": "Image",
"value": "```'${5}'```"
},
{
"name": "Image ID",
"value": "```\n'${9:0:11}'\n ='$d_ind' '${10:0:11}'```"
}'$extra'
],
"author": {
"name": "'${2}'",
"url": "'${13}'",
"icon_url": "'${author_url}'"
},
"footer": {
"text": "'${footer_text}'"
},
"timestamp": "'$(date -u +'%FT%T.%3NZ')'"
}
],
"username": "Pullio",
"avatar_url": "https://github.com/hotio/pullio/raw/master/pullio.png"
}'
curl -fsSL -H "User-Agent: Pullio" -H "Content-Type: application/json" -d "${json}" "${6}"
}
send_generic_webhook() {
json='{
"container": "'${2}'",
"image": "'${5}'",
"avatar": "'${11}'",
"old_image_id": "'${9}'",
"new_image_id": "'${10}'",
"old_version": "'${3}'",
"new_version": "'${4}'",
"old_revision": "'${7}'",
"new_revision": "'${8}'",
"type": "'${1}'",
"url": "'${12}'",
"timestamp": "'$(date -u +'%FT%T.%3NZ')'"
}'
curl -fsSL -H "User-Agent: Pullio" -H "Content-Type: application/json" -d "${json}" "${6}"
}
export_env_vars() {
export PULLIO_CONTAINER=${1}
export PULLIO_IMAGE=${2}
export PULLIO_AVATAR=${3}
export PULLIO_OLD_IMAGE_ID=${4}
export PULLIO_NEW_IMAGE_ID=${5}
export PULLIO_OLD_VERSION=${6}
export PULLIO_NEW_VERSION=${7}
export PULLIO_OLD_REVISION=${8}
export PULLIO_NEW_REVISION=${9}
export PULLIO_COMPOSE_SERVICE=${10}
export PULLIO_COMPOSE_WORKDIR=${11}
export PULLIO_AUTHOR_URL=${13}
}
process_container() {
local container_name="$1"
echo "$container_name: Checking..."
image_name=$("${DOCKER_BINARY}" inspect --format='{{.Config.Image}}' "$container_name")
container_image_digest=$("${DOCKER_BINARY}" inspect --format='{{.Image}}' "$container_name")
docker_compose_service=$("${DOCKER_BINARY}" inspect --format='{{ index .Config.Labels "com.docker.compose.service" }}' "$container_name")
docker_compose_version=$("${DOCKER_BINARY}" inspect --format='{{ index .Config.Labels "com.docker.compose.version" }}' "$container_name")
docker_compose_workdir=$("${DOCKER_BINARY}" inspect --format='{{ index .Config.Labels "com.docker.compose.project.working_dir" }}' "$container_name")
old_opencontainers_image_version=$("${DOCKER_BINARY}" inspect --format='{{ index .Config.Labels "org.opencontainers.image.version" }}' "$container_name")
old_opencontainers_image_revision=$("${DOCKER_BINARY}" inspect --format='{{ index .Config.Labels "org.opencontainers.image.revision" }}' "$container_name")
pullio_update=$("${DOCKER_BINARY}" inspect --format='{{ index .Config.Labels "org.hotio.pullio'"${TAG}"'.update" }}' "$container_name")
pullio_notify=$("${DOCKER_BINARY}" inspect --format='{{ index .Config.Labels "org.hotio.pullio'"${TAG}"'.notify" }}' "$container_name")
pullio_discord_webhook=$("${DOCKER_BINARY}" inspect --format='{{ index .Config.Labels "org.hotio.pullio'"${TAG}"'.discord.webhook" }}' "$container_name")
pullio_generic_webhook=$("${DOCKER_BINARY}" inspect --format='{{ index .Config.Labels "org.hotio.pullio'"${TAG}"'.generic.webhook" }}' "$container_name")
pullio_script_update=($("${DOCKER_BINARY}" inspect --format='{{ index .Config.Labels "org.hotio.pullio'"${TAG}"'.script.update" }}' "$container_name"))
pullio_script_notify=($("${DOCKER_BINARY}" inspect --format='{{ index .Config.Labels "org.hotio.pullio'"${TAG}"'.script.notify" }}' "$container_name"))
pullio_registry_authfile=$("${DOCKER_BINARY}" inspect --format='{{ index .Config.Labels "org.hotio.pullio'"${TAG}"'.registry.authfile" }}' "$container_name")
pullio_author_avatar=$("${DOCKER_BINARY}" inspect --format='{{ index .Config.Labels "org.hotio.pullio'"${TAG}"'.author.avatar" }}' "$container_name")
pullio_author_url=$("${DOCKER_BINARY}" inspect --format='{{ index .Config.Labels "org.hotio.pullio'"${TAG}"'.author.url" }}' "$container_name")
if [[ (-n $docker_compose_version) && ($pullio_update == true || $pullio_notify == true) ]]; then
if [[ -f $pullio_registry_authfile ]]; then
echo "$container_name: Registry login..."
jq -r .password <"$pullio_registry_authfile" | "${DOCKER_BINARY}" login --username "$(jq -r .username <"$pullio_registry_authfile")" --password-stdin "$(jq -r .registry <"$pullio_registry_authfile")"
fi
echo "$container_name: Pulling image..."
if ! compose_pull_wrapper "$docker_compose_workdir" "${docker_compose_service}"; then
echo "$container_name: Pulling failed!"
fi
image_digest=${DEBUG}$("${DOCKER_BINARY}" image inspect --format='{{.Id}}' "${image_name}")
new_opencontainers_image_version=$("${DOCKER_BINARY}" image inspect --format='{{ index .Config.Labels "org.opencontainers.image.version" }}' "$image_name")
new_opencontainers_image_revision=$("${DOCKER_BINARY}" image inspect --format='{{ index .Config.Labels "org.opencontainers.image.revision" }}' "$image_name")
status="I've got an update waiting for me.\nGive it to me, please."
status_generic="update_available"
color=768753
if [[ "${image_digest}" != "$container_image_digest" ]] && [[ $pullio_update == true ]]; then
if [[ -n "${pullio_script_update[*]}" ]]; then
echo "$container_name: Stopping container..."
"${DOCKER_BINARY}" stop "${container_name}"
echo "$container_name: Executing update script..."
export_env_vars "$container_name" "${image_name}" "${pullio_author_avatar}" "${container_image_digest/sha256:/}" "${image_digest/sha256:/}" "${old_opencontainers_image_version}" "${new_opencontainers_image_version}" "${old_opencontainers_image_revision}" "${new_opencontainers_image_revision}" "${docker_compose_service}" "${docker_compose_workdir}" "${pullio_author_url}"
"${pullio_script_update[@]}"
fi
echo "$container_name: Updating container..."
if compose_up_wrapper "$docker_compose_workdir" "${docker_compose_service}"; then
status="I just updated myself.\nFeeling brand spanking new again!"
status_generic="update_success"
color=3066993
else
echo "${container_name}: Updating container failed!"
status="I tried to update myself.\nIt didn't work out, I might need some help."
status_generic="update_failure"
color=15158332
fi
rm -f "${CACHE_LOCATION}/${sum}-${container_name}.notified"
fi
if [[ "${image_digest}" != "$container_image_digest" ]] && [[ $pullio_notify == true ]]; then
touch "${CACHE_LOCATION}/${sum}-${container_name}.notified"
notified_digest=$(cat "${CACHE_LOCATION}/${sum}-${container_name}.notified")
if [[ $notified_digest != "$image_digest" ]]; then
if [[ -n "${pullio_script_notify[*]}" ]]; then
echo "$container_name: Executing notify script..."
export_env_vars "$container_name" "${image_name}" "${pullio_author_avatar}" "${container_image_digest/sha256:/}" "${image_digest/sha256:/}" "${old_opencontainers_image_version}" "${new_opencontainers_image_version}" "${old_opencontainers_image_revision}" "${new_opencontainers_image_revision}" "${docker_compose_service}" "${docker_compose_workdir}" "${pullio_author_url}"
"${pullio_script_notify[@]}"
fi
if [[ -n "$pullio_discord_webhook" ]]; then
echo "$container_name: Sending discord notification..."
send_discord_notification "$status" "$container_name" "$old_opencontainers_image_version" "$new_opencontainers_image_version" "$image_name" "$pullio_discord_webhook" "$old_opencontainers_image_revision" "$new_opencontainers_image_revision" "${container_image_digest/sha256:/}" "${image_digest/sha256:/}" "$color" "$pullio_author_avatar" "$pullio_author_url"
fi
if [[ -n "$pullio_generic_webhook" ]]; then
echo "$container_name: Sending generic webhook..."
send_generic_webhook "$status_generic" "$container_name" "$old_opencontainers_image_version" "$new_opencontainers_image_version" "$image_name" "$pullio_generic_webhook" "$old_opencontainers_image_revision" "$new_opencontainers_image_revision" "${container_image_digest/sha256:/}" "${image_digest/sha256:/}" "$pullio_author_avatar" "$pullio_author_url"
fi
echo "$image_digest" >"${CACHE_LOCATION}/${sum}-${container_name}.notified"
fi
fi
fi
}
# Respect ctrl+c
trap 'exit 130' INT
# Setup the environment
sum="$(sha1sum "$0" | awk '{print $1}')"
declare -a containers
readarray -t containers < <("${DOCKER_BINARY}" ps --format '{{.Names}}' | sort -k1)
setup_environment
echo "Processing ${#containers[@]} containers with parallelism of $PARALLEL"
if [ "$PARALLEL" -gt 1 ]; then
printf '%s\n' "${containers[@]}" | xargs -P "$PARALLEL" -I {} bash -c 'process_container "$@"' _ {}
else
for container_name in "${containers[@]}"; do
process_container "$container_name"
done
fi
echo "Pruning docker images..."
"${DOCKER_BINARY}" image prune --force