123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- #!/bin/bash
- # Copyright Epic Games, Inc. All Rights Reserved.
- BASH_LOCATION=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
- pushd "${BASH_LOCATION}" > /dev/null
- source common_utils.sh
- use_args $@
- # Azure specific fix to allow installing NodeJS from NodeSource
- if test -f "/etc/apt/sources.list.d/azure-cli.list"; then
- sudo touch /etc/apt/sources.list.d/nodesource.list
- sudo touch /usr/share/keyrings/nodesource.gpg
- sudo chmod 644 /etc/apt/sources.list.d/nodesource.list
- sudo chmod 644 /usr/share/keyrings/nodesource.gpg
- sudo chmod 644 /etc/apt/sources.list.d/azure-cli.list
- fi
- function check_version() { #current_version #min_version
- #check if same string
- if [ -z "$2" ] || [ "$1" = "$2" ]; then
- return 0
- fi
- local i current minimum
- IFS="." read -r -a current <<< $1
- IFS="." read -r -a minimum <<< $2
- # fill empty fields in current with zeros
- for ((i=${#current[@]}; i<${#minimum[@]}; i++))
- do
- current[i]=0
- done
- for ((i=0; i<${#current[@]}; i++))
- do
- if [[ -z ${minimum[i]} ]]; then
- # fill empty fields in minimum with zeros
- minimum[i]=0
- fi
- if ((10#${current[i]} > 10#${minimum[i]})); then
- return 1
- fi
- if ((10#${current[i]} < 10#${minimum[i]})); then
- return 2
- fi
- done
- # if got this far string is the same once we added missing 0
- return 0
- }
- function check_and_install() { #dep_name #get_version_string #version_min #install_command
- local is_installed=0
- log_msg "Checking for required $1 install"
- local current=$(echo $2 | sed -E 's/[^0-9.]//g')
- local minimum=$(echo $3 | sed -E 's/[^0-9.]//g')
- if [ $# -ne 4 ]; then
- log_msg "check_and_install expects 4 args (dep_name get_version_string version_min install_command) got $#"
- return -1
- fi
-
- if [ ! -z $current ]; then
- log_msg "Current version: $current checking >= $minimum"
- check_version "$current" "$minimum"
- if [ "$?" -lt 2 ]; then
- log_msg "$1 is installed."
- return 0
- else
- log_msg "Required install of $1 not found installing"
- fi
- fi
- if [ $is_installed -ne 1 ]; then
- echo "$1 installation not found installing..."
- start_process $4
- if [ $? -ge 1 ]; then
- echo "Installation of $1 failed try running `export VERBOSE=1` then run this script again for more details"
- fi
- fi
- }
- echo "Checking Pixel Streaming Server dependencies."
- # navigate to SignallingWebServer root
- pushd ../.. > /dev/null
- node_version=""
- if [[ -f "${BASH_LOCATION}/node/bin/node" ]]; then
- node_version=$("${BASH_LOCATION}/node/bin/node" --version)
- fi
- check_and_install "node" "$node_version" "v16.4.2" "curl https://nodejs.org/dist/v16.14.2/node-v16.14.2-linux-x64.tar.gz --output node.tar.xz
- && tar -xf node.tar.xz
- && rm node.tar.xz
- && mv node-v*-linux-x64 \"${BASH_LOCATION}/node\""
- PATH="${BASH_LOCATION}/node/bin:$PATH"
- "${BASH_LOCATION}/node/lib/node_modules/npm/bin/npm-cli.js" install
- popd > /dev/null # SignallingWebServer
- popd > /dev/null # BASH_SOURCE
- #command #dep_name #get_version_string #version_min #install command
- coturn_version=$(if command -v turnserver &> /dev/null; then echo 1; else echo 0; fi)
- if [ $coturn_version -eq 0 ]; then
- if ! command -v apt-get &> /dev/null; then
- echo "Setup for the scripts is designed for use with distros that use the apt-get package manager" \
- "if you are seeing this message you will have to update \"${BASH_LOCATION}/setup.sh\" with\n" \
- "a package manger and the equivalent packages for your distribution. Please follow the\n" \
- "instructions found at https://pkgs.org/search/?q=coturn to install Coturn for your specific distribution"
- exit 1
- else
- if [ `id -u` -eq 0 ]; then
- check_and_install "coturn" "$coturn_version" "1" "apt-get install -y coturn"
- else
- check_and_install "coturn" "$coturn_version" "1" "sudo apt-get install -y coturn"
- fi
- fi
- fi
|