aboutsummaryrefslogtreecommitdiffstats
path: root/coin/provisioning/common/macos/InstallAppFromCompressedFileFromURL.sh
blob: 034544858447e987633e5470c0aba5382aa911e3 (plain)
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
#!/usr/bin/env bash
# Copyright (C) 2017 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

# This script receives URLs to a compressed file. It then downloads it,
# uncompresses it and installs it by default
# to /Applications/. This can be overridden by a target parameter.

set -ex

# shellcheck source=../unix/DownloadURL.sh
source "${BASH_SOURCE%/*}/../unix/DownloadURL.sh"

function InstallAppFromCompressedFileFromURL {
    url=$1
    url_alt=$2
    expectedSha1=$3
    appPrefix=$4
    target=$5

    if [ "" == "$target" ]; then
        target="/Applications/"
    fi

    basefilename=${url##*/}
    extension=${basefilename##*.}
    filename=${basefilename%.*}
    if [ "$extension" == "gz" ] && [ "${filename##*.}" == "tar" ]; then
        extension="tar.gz"
    fi

    echo "Extension for file: $extension"
    echo "Creating temporary file and directory"
    targetFile=$(mktemp "$TMPDIR$(uuidgen).$extension")
    # macOS 10.10 mktemp does require prefix
    if [[ $OSTYPE == "darwin14" ]]; then
        targetDirectory=$(mktemp -d -t '10.10')
    else
        targetDirectory=$(mktemp -d)
    fi
    (DownloadURL "$url" "$url_alt" "$expectedSha1" "$targetFile")
    echo "Uncompress $targetFile"
    case $extension in
        "tar.gz")
            tar -xzf "$targetFile" --directory "$targetDirectory"
        ;;
        "zip")
            unzip -q "$targetFile" -d "$targetDirectory"
        ;;
        *)
            exit 1
        ;;
    esac
    echo "Moving app to '$target'"
    sudo mv "$targetDirectory/$appPrefix/"* "$target"
    echo "Removing file '$targetFile'"
    rm "$targetFile"
    echo "Removing directory '$targetDirectory'"
    rm -rf "$targetDirectory"
}