aboutsummaryrefslogtreecommitdiffstats
path: root/coin/provisioning/common/unix/InstallFromCompressedFileFromURL.sh
blob: c1358fddc52fada47bc2f67539b56c9d119fc449 (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
#!/usr/bin/env bash
# Copyright (C) 2018 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

set -ex

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

function InstallFromCompressedFileFromURL {
    url=$1
    url_alt=$2
    expectedSha1=$3
    installDirectory=$4
    appPrefix=$5

    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)XXXXX.$extension")
    targetDirectory=$(mktemp -d)
    DownloadURL "$url" "$url_alt" "$expectedSha1" "$targetFile"
    echo "Uncompress $targetFile"
    case $extension in
        "tar.gz")
            tar -xzf "$targetFile" --directory "$targetDirectory"
        ;;
        "zip")
            unzip "$targetFile" -d "$targetDirectory"
        ;;
        "xz")
            tar -xf "$targetFile" --directory "$targetDirectory"
        ;;
        "tbz2")
            tar -xjf "$targetFile" --directory "$targetDirectory"
        ;;
        *)
            exit 1
        ;;
    esac
    echo "Moving app to $installDirectory"
    sudo mkdir -p "$installDirectory"
    sudo mv "$targetDirectory/$appPrefix/"* "$installDirectory"
    echo "Removing file '$targetFile'"
    rm "$targetFile"
    echo "Removing directory '$targetDirectory'"
    rm -rf "$targetDirectory"
}