-
Notifications
You must be signed in to change notification settings - Fork 75
/
install-cli.sh
executable file
·128 lines (106 loc) · 3.21 KB
/
install-cli.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
#!/usr/bin/env bash
# Copyright 2023 LiveKit, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# LiveKit install script for Linux
set -u
set -o errtrace
set -o errexit
set -o pipefail
REPO="livekit-cli"
BIN_NAME="lk"
INSTALL_PATH="/usr/local/bin"
BASH_COMPLETION_PATH="/usr/share/bash-completion/completions"
ZSH_COMPLETION_PATH="/usr/share/zsh/site-functions"
FISH_COMPLETION_PATH="/usr/share/fish/vendor_completions.d"
log() { printf "%b\n" "$*"; }
abort() {
printf "%s\n" "$@" >&2
exit 1
}
# returns the latest version according to GH
# i.e. 1.0.0
get_latest_version()
{
latest_version=$(curl -s https://api.github.com/repos/livekit/$REPO/releases/latest | grep -oP '"tarball_url": ".*/tarball/v\K([^/]*)(?=")')
printf "%s" "$latest_version"
}
# Ensure bash is used
if [ -z "${BASH_VERSION:-}" ]
then
abort "This script requires bash"
fi
# Check if $INSTALL_PATH exists
if [ ! -d ${INSTALL_PATH} ]
then
abort "Could not install, ${INSTALL_PATH} doesn't exist"
fi
# Needs SUDO if no permissions to write
SUDO_PREFIX=""
if [ ! -w ${INSTALL_PATH} ]
then
SUDO_PREFIX="sudo"
log "sudo is required to install to ${INSTALL_PATH}"
fi
# Check cURL is installed
if ! command -v curl >/dev/null
then
abort "cURL is required and is not found"
fi
# OS check
OS="$(uname)"
if [[ "${OS}" == "Darwin" ]]
then
abort "Installer not supported on MacOS, please install using Homebrew."
elif [[ "${OS}" != "Linux" ]]
then
abort "Installer is only supported on Linux."
fi
ARCH="$(uname -m)"
# fix arch on linux
if [[ "${ARCH}" == "aarch64" ]]
then
ARCH="arm64"
elif [[ "${ARCH}" == "x86_64" ]]
then
ARCH="amd64"
fi
VERSION=$(get_latest_version)
ARCHIVE_URL="https://github.com/livekit/$REPO/releases/download/v${VERSION}/${BIN_NAME}_${VERSION}_linux_${ARCH}.tar.gz"
# Ensure version follows SemVer
if ! [[ "${VERSION}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]
then
abort "Invalid version: ${VERSION}"
fi
log "Installing ${REPO} ${VERSION}"
log "Downloading from ${ARCHIVE_URL}..."
TEMP_DIR_PATH="$(mktemp -d)"
curl -s -L "${ARCHIVE_URL}" | tar xzf - -C "${TEMP_DIR_PATH}" --wildcards --no-anchored "$BIN_NAME*"
${SUDO_PREFIX} mv "${TEMP_DIR_PATH}/lk" "${INSTALL_PATH}/lk"
${SUDO_PREFIX} ln -sf "${INSTALL_PATH}/lk" "${INSTALL_PATH}/livekit-cli"
if [ -d "${TEMP_DIR_PATH}/autocomplete" ]
then
if [ -d "${BASH_COMPLETION_PATH}" ]
then
mv "${TEMP_DIR_PATH}/autocomplete/bash_autocomplete" "${BASH_COMPLETION_PATH}/livekit-cli"
fi
if [ -d "${ZSH_COMPLETION_PATH}" ]
then
mv "${TEMP_DIR_PATH}/autocomplete/zsh_autocomplete" "${ZSH_COMPLETION_PATH}/_livekit-cli"
fi
if [ -d "${FISH_COMPLETION_PATH}" ]
then
lk generate-fish-completion -o "${FISH_COMPLETION_PATH}/livekit-cli.fish"
fi
fi
log "\n$BIN_NAME is installed to $INSTALL_PATH\n"