-
Notifications
You must be signed in to change notification settings - Fork 7
/
install.sh
181 lines (155 loc) · 3.75 KB
/
install.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
#!/bin/sh
set -e
# Some utilities from https://github.com/client9/shlib
echoerr() {
printf "$@\n" 1>&2
}
log_info() {
printf "\033[38;5;61m ==>\033[0;00m $@\n"
}
log_crit() {
echoerr
echoerr " \033[38;5;125m$@\033[0;00m"
echoerr
}
is_command() {
command -v "$1" >/dev/null
#type "$1" > /dev/null 2> /dev/null
}
http_download_curl() {
local_file=$1
source_url=$2
header=$3
if [ -z "$header" ]; then
code=$(curl -w '%{http_code}' -sL -o "$local_file" "$source_url")
else
code=$(curl -w '%{http_code}' -sL -H "$header" -o "$local_file" "$source_url")
fi
if [ "$code" != "200" ]; then
log_crit "Error downloading, got $code response from server"
return 1
fi
return 0
}
http_download_wget() {
local_file=$1
source_url=$2
header=$3
if [ -z "$header" ]; then
wget -q -O "$local_file" "$source_url"
else
wget -q --header "$header" -O "$local_file" "$source_url"
fi
}
http_download() {
if is_command curl; then
http_download_curl "$@"
return
elif is_command wget; then
http_download_wget "$@"
return
fi
log_crit "http_download unable to find wget or curl"
return 1
}
http_copy() {
tmp=$(mktemp)
http_download "${tmp}" "$1" "$2" || return 1
body=$(cat "$tmp")
rm -f "${tmp}"
echo "$body"
}
uname_os() {
os=$(uname -s | tr '[:upper:]' '[:lower:]')
# fixed up for https://github.com/client9/shlib/issues/3
case "$os" in
msys_nt*) os="windows" ;;
mingw*) os="windows" ;;
esac
# other fixups here
echo "$os"
}
uname_os_check() {
os=$(uname_os)
case "$os" in
darwin) return 0 ;;
dragonfly) return 0 ;;
freebsd) return 0 ;;
linux) return 0 ;;
android) return 0 ;;
nacl) return 0 ;;
netbsd) return 0 ;;
openbsd) return 0 ;;
plan9) return 0 ;;
solaris) return 0 ;;
windows) return 0 ;;
esac
log_crit "uname_os_check '$(uname -s)' got converted to '$os' which is not a GOOS value. Please file bug at https://github.com/client9/shlib"
return 1
}
uname_arch() {
arch=$(uname -m)
case $arch in
x86_64) arch="amd64" ;;
x86) arch="386" ;;
i686) arch="386" ;;
i386) arch="386" ;;
aarch64) arch="arm64" ;;
armv5*) arch="armv5" ;;
armv6*) arch="armv6" ;;
armv7*) arch="armv7" ;;
esac
echo ${arch}
}
uname_arch_check() {
arch=$(uname_arch)
case "$arch" in
386) return 0 ;;
amd64) return 0 ;;
arm64) return 0 ;;
armv5) return 0 ;;
armv6) return 0 ;;
armv7) return 0 ;;
ppc64) return 0 ;;
ppc64le) return 0 ;;
mips) return 0 ;;
mipsle) return 0 ;;
mips64) return 0 ;;
mips64le) return 0 ;;
s390x) return 0 ;;
amd64p32) return 0 ;;
esac
log_crit "uname_arch_check '$(uname -m)' got converted to '$arch' which is not a GOARCH value. Please file bug report at https://github.com/client9/shlib"
return 1
}
mktmpdir() {
test -z "$TMPDIR" && TMPDIR="$(mktemp -d)"
mkdir -p "${TMPDIR}"
echo "${TMPDIR}"
}
start() {
uname_os_check
uname_arch_check
pkg="github.com/swiftcarrot/queryx"
bin="queryx.tar.gz"
version="v0.2.15"
prefix=${PREFIX:-"/usr/local/bin"}
tmp="$(mktmpdir)"
echo
log_info "Downloading $pkg@$version"
log_info "Downloading binary for $os $arch"
asset=$(curl -s https://api.github.com/repos/swiftcarrot/queryx/releases/tags/$version | grep -i "browser_download_url.*$os\_$arch" | sed -E 's/.*"([^"]+)".*/\1/')
http_download "$tmp/queryx_$version.tar.gz" "$asset"
cd "$tmp"
tar zxf "queryx_$version.tar.gz"
if [ -w "$prefix" ]; then
log_info "Installing queryx to $prefix"
install queryx "$prefix"
else
log_info "Permissions required for installation to $prefix — alternatively specify a new directory with:"
sudo install queryx "$prefix"
fi
log_info "Installation complete"
echo
}
start