-
Notifications
You must be signed in to change notification settings - Fork 10
/
di-clickerforhbomax.sh
executable file
·191 lines (128 loc) · 4.26 KB
/
di-clickerforhbomax.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
#!/usr/bin/env zsh -f
# Purpose:
#
# From: Timothy J. Luoma
# Mail: luomat at gmail dot com
# Date: 2021-05-14
[[ -e "$HOME/.path" ]] && source "$HOME/.path"
[[ -e "$HOME/.config/di/defaults.sh" ]] && source "$HOME/.config/di/defaults.sh"
INSTALL_TO="${INSTALL_DIR_ALTERNATE-/Applications}/Clicker for HBO Max.app"
NAME="$0:t:r"
XML_FEED='https://www.dbklabs.com/clicker-for-hbo-max/appcast/appcast.xml'
INFO=($(curl -sfLS "$XML_FEED" \
| awk '/<item>/{i++}i==1' \
| tr -s ' |\t' '\012' \
| egrep '^(url|sparkle:version|sparkle:shortVersionString|https://www.dbklabs.com/.*\.html)' \
| sort \
| sed -e 's#sparkle:shortVersionString="##g' \
-e 's#sparkle:version="##g' \
-e 's#url="##g' \
-e 's#"$##g'))
RELEASE_NOTES_URL="$INFO[1]"
LATEST_VERSION="$INFO[2]"
LATEST_BUILD="$INFO[3]"
URL="$INFO[4]"
# URL is DMG
if [[ -e "$INSTALL_TO" ]]
then
INSTALLED_VERSION=$(defaults read "${INSTALL_TO}/Contents/Info" CFBundleShortVersionString)
INSTALLED_BUILD=$(defaults read "${INSTALL_TO}/Contents/Info" CFBundleVersion)
autoload is-at-least
is-at-least "$LATEST_VERSION" "$INSTALLED_VERSION"
VERSION_COMPARE="$?"
is-at-least "$LATEST_BUILD" "$INSTALLED_BUILD"
BUILD_COMPARE="$?"
if [ "$VERSION_COMPARE" = "0" -a "$BUILD_COMPARE" = "0" ]
then
echo "$NAME: Up-To-Date ($INSTALLED_VERSION/$INSTALLED_BUILD)"
exit 0
fi
echo "$NAME: Outdated: $INSTALLED_VERSION/$INSTALLED_BUILD vs $LATEST_VERSION/$LATEST_BUILD"
FIRST_INSTALL='no'
if [[ ! -w "$INSTALL_TO" ]]
then
echo "$NAME: '$INSTALL_TO' exists, but you do not have 'write' access to it, therefore you cannot update it." >>/dev/stderr
exit 2
fi
else
FIRST_INSTALL='yes'
fi
######
FILENAME="$HOME/Downloads/${${INSTALL_TO:t:r}// /}-${${LATEST_VERSION}// /}_${${LATEST_BUILD}// /}.dmg"
#####
RELEASE_NOTES_TXT="$FILENAME:r.txt"
if [[ -e "$RELEASE_NOTES_TXT" ]]
then
cat "$RELEASE_NOTES_TXT"
else
if (( $+commands[lynx] ))
then
RELEASE_NOTES=$(curl -sfLS "$RELEASE_NOTES_URL" \
| awk '/<h2>/{i++}i==1' \
| sed -e 's#<li class="new">#<li>New: #g' \
-e 's#<li class="fixed">#<li>Fixed: #g' \
| lynx -dump -width='10000' -display_charset=UTF-8 -assume_charset=UTF-8 \
-pseudo_inlines -stdin -nolist -nomargins -nonumbers)
echo "${RELEASE_NOTES}\n\nSource: ${RELEASE_NOTES_URL}\nVersion: ${LATEST_VERSION} / ${LATEST_BUILD}\nURL: ${URL}" | tee "$RELEASE_NOTES_TXT"
fi
fi
#####
echo "$NAME: Downloading '$URL' to '$FILENAME':"
curl --continue-at - --fail --location --output "$FILENAME" "$URL"
EXIT="$?"
## exit 22 means 'the file was already fully downloaded'
[ "$EXIT" != "0" -a "$EXIT" != "22" ] && echo "$NAME: Download of $URL failed (EXIT = $EXIT)" && exit 0
[[ ! -e "$FILENAME" ]] && echo "$NAME: $FILENAME does not exist." && exit 0
[[ ! -s "$FILENAME" ]] && echo "$NAME: $FILENAME is zero bytes." && rm -f "$FILENAME" && exit 0
egrep -q '^Local sha256:$' "$FILENAME:r.txt" 2>/dev/null
EXIT="$?"
if [ "$EXIT" = "1" -o ! -e "$FILENAME:r.txt" ]
then
(cd "$FILENAME:h" ; \
echo "\n\nLocal sha256:" ; \
shasum -a 256 "$FILENAME:t" \
) >>| "$FILENAME:r.txt"
fi
#####
echo "$NAME: Mounting $FILENAME:"
MNTPNT=$(hdiutil attach -nobrowse -plist "$FILENAME" 2>/dev/null \
| fgrep -A 1 '<key>mount-point</key>' \
| tail -1 \
| sed 's#</string>.*##g ; s#.*<string>##g')
if [[ "$MNTPNT" == "" ]]
then
echo "$NAME: MNTPNT is empty"
exit 1
else
echo "$NAME: MNTPNT is $MNTPNT"
fi
if [[ -e "$INSTALL_TO" ]]
then
# Quit app, if running
pgrep -xq "$INSTALL_TO:t:r" \
&& LAUNCH='yes' \
&& osascript -e "tell application \"$INSTALL_TO:t:r\" to quit"
# move installed version to trash
echo "$NAME: moving old installed version to '$HOME/.Trash'..."
mv -f "$INSTALL_TO" "$HOME/.Trash/$INSTALL_TO:t:r.${INSTALLED_VERSION}_${INSTALLED_BUILD}.app"
EXIT="$?"
if [[ "$EXIT" != "0" ]]
then
echo "$NAME: failed to move '$INSTALL_TO' to '$HOME/.Trash'. ('mv' \$EXIT = $EXIT)"
exit 1
fi
fi
echo "$NAME: Installing '$MNTPNT/$INSTALL_TO:t' to '$INSTALL_TO': "
ditto --noqtn -v "$MNTPNT/$INSTALL_TO:t" "$INSTALL_TO"
EXIT="$?"
if [[ "$EXIT" == "0" ]]
then
echo "$NAME: Successfully installed $INSTALL_TO"
else
echo "$NAME: ditto failed"
exit 1
fi
[[ "$LAUNCH" = "yes" ]] && open -a "$INSTALL_TO"
echo -n "$NAME: Unmounting $MNTPNT: " && diskutil eject "$MNTPNT"
exit 0
#EOF