-
Notifications
You must be signed in to change notification settings - Fork 10
/
di-choosy1.sh
executable file
·186 lines (126 loc) · 4.26 KB
/
di-choosy1.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
#!/usr/bin/env zsh -f
# Purpose: download and install the latest version of Choosy
#
# From: Timothy J. Luoma
# Mail: luomat at gmail dot com
# Date: 2015-10-27
NAME="$0:t:r"
if [[ -e "$HOME/.path" ]]
then
source "$HOME/.path"
fi
if [ -e "/Library/PreferencePanes/Choosy.prefPane" -a -e "$HOME/Library/PreferencePanes/Choosy.prefPane" ]
then
echo "$NAME: Choosy.prefPane is installed at _BOTH_ '/Library/PreferencePanes/Choosy.prefPane' and '$HOME/Library/PreferencePanes/Choosy.prefPane'.
Please remove one."
exit 1
elif [[ -e "/Library/PreferencePanes/Choosy.prefPane" ]]
then
INSTALL_TO="/Library/PreferencePanes/Choosy.prefPane"
else
INSTALL_TO="$HOME/Library/PreferencePanes/Choosy.prefPane"
fi
XML_FEED='http://www.choosyosx.com/sparkle/feed'
HOMEPAGE="https://www.choosyosx.com"
DOWNLOAD_PAGE="https://www.choosyosx.com"
SUMMARY="Instead of opening links in the default browser, Choosy sends them to the right browser. Every time."
# sparkle:version= is the only version information available
INFO=($(curl -sfL "$XML_FEED" \
| tr -s ' ' '\012' \
| egrep "sparkle:version=|url=" \
| head -2 \
| awk -F'"' '/^/{print $2}'))
RELEASE_NOTES_URL=$(curl -sfL "$XML_FEED" \
| sed '1,/<description><\!\[CDATA\[/d; /<\/description>/,$d' \
| awk -F'"' '/http/{print $2}')
URL="$INFO[2]"
LATEST_VERSION="$INFO[1]"
# If any of these are blank, we should not continue
if [ "$INFO" = "" -o "$LATEST_VERSION" = "" -o "$URL" = "" ]
then
echo "$NAME: Error: bad data received:
INFO: $INFO
LATEST_VERSION: $LATEST_VERSION
URL: $URL
"
exit 1
fi
if [[ -e "$INSTALL_TO" ]]
then
INSTALLED_VERSION=`defaults read "$INSTALL_TO/Contents/Info" CFBundleShortVersionString 2>/dev/null || echo 0`
if [[ "$LATEST_VERSION" == "$INSTALLED_VERSION" ]]
then
echo "$NAME: Up-To-Date ($INSTALLED_VERSION)"
exit 0
fi
autoload is-at-least
is-at-least "$LATEST_VERSION" "$INSTALLED_VERSION"
if [ "$?" = "0" ]
then
echo "$NAME: Installed version ($INSTALLED_VERSION) is ahead of official version $LATEST_VERSION"
exit 0
fi
echo "$NAME: Outdated (Installed = $INSTALLED_VERSION vs Latest = $LATEST_VERSION)"
fi
# Where to save new download
FILENAME="$HOME/Downloads/$INSTALL_TO:t:r-$LATEST_VERSION.zip"
if (( $+commands[lynx] ))
then
( echo "$NAME: Release Notes for $INSTALL_TO:t:r version $LATEST_VERSION:\n" ;
curl -sfL "$RELEASE_NOTES_URL" \
| sed '1,/<h3>Release notes<\/h3>/d; /<h3>Download<\/h3>/,$d' \
| lynx -dump -nomargins -width=10000 -assume_charset=UTF-8 -pseudo_inlines -stdin ;
echo "\nSource: <$RELEASE_NOTES_URL>" ) \
| tee "$FILENAME:r.txt"
fi
# Do the download
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
# Move old version to trash
if [ -e "$INSTALL_TO" ]
then
pgrep -qx Choosy && pkill Choosy
# move installed version to trash
mv -vf "$INSTALL_TO" "$HOME/.Trash/$INSTALL_TO:t:r.$INSTALLED_VERSION.app"
FIRST_INSTALL='no'
else
FIRST_INSTALL='yes'
fi
# Install
echo "$NAME: Installing $FILENAME to $INSTALL_TO"
ditto --noqtn -x -k "$FILENAME" "$INSTALL_TO:h"
EXIT="$?"
if [ "$EXIT" = "0" ]
then
echo "$NAME: Installation successful to $INSTALL_TO"
else
echo "$NAME: 'ditto' failed (\$EXIT = $EXIT)"
exit 1
fi
# Remove quarantine info (there shouldn't be any, but just in case)
find "$INSTALL_TO" -print | xargs xattr -d com.apple.quarantine 2>/dev/null
### POST INSTALL
if (( $+commands[defaultbrowser] ))
then
defaultbrowser -set choosy
else
echo "$NAME: 'defaultbrowser' not found. Download from 'https://codeload.github.com/kerma/defaultbrowser/zip/master'."
open 'https://codeload.github.com/kerma/defaultbrowser/zip/master'
fi
# Launch Helper
echo "$NAME: Launching Choosy Helper app"
open -a "$INSTALL_TO/Contents/Resources/Choosy.app"
# If this is the first time it has been installed, open the preference pane so it can be configured
if [[ "$FIRST_INSTALL" == "yes" ]]
then
# Launch App
open "$INSTALL_TO"
fi
exit 0
#
#EOF