epm-prescription 2.85 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#!/bin/sh
#
# Copyright (C) 2015, 2017, 2019, 2020  Etersoft
# Copyright (C) 2015, 2017, 2019, 2020  Vitaly Lipatov <lav@etersoft.ru>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#

20 21 22 23 24 25 26 27 28 29 30 31 32 33
# TODO
epm_vardir=/var/lib/eepm

__save_installed_app()
{
	[ -d "$epm_vardir" ] || return 0
	estrlist list "$@" | $SUDO tee $epm_vardir/installed-app >/dev/null
}

__remove_installed_app()
{
	[ -d "$epm_vardir" ] || return 0
	local i
	for i in $* ; do
34
		$SUDO sed -i "/^$i$/d" $epm_vardir/installed-app
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
	done
	return 0
}

__check_installed_app()
{
	[ -s $epm_vardir/installed-app ] || return 1
	grep -q -- "^$1\$" $epm_vardir/installed-app
}

__list_installed_app()
{
    cat $epm_vardir/installed-app 2>/dev/null
}


__epm_prescription_run()
{
    local script="$psdir/$1.sh"
    shift
    local option="$1"

    if [ ! -x "$script" ] ; then
        fatal "Can't find $script prescription."
    fi

    # allow use EGET in the scripts
    __set_EGET
    # also we will have DISTRVENDOR there
    export PATH=$PROGDIR:$PATH

    #info "Running $($script --description 2>/dev/null) ..."
    docmd $script $option
}

70 71 72 73 74
epm_prescription()
{

local psdir="$CONFIGDIR/prescription.d"

75 76 77 78 79 80 81 82 83
if [ "$1" = "-h" ] || [ "$1" = "--help" ] ; then
    cat <<EOF
Options:
    APP            - install APP
    --remove APP   - remove APP
    --list         - list all installed apps
    --list-all     - list all available apps
EOF
    exit
84 85
fi

86 87 88
if [ "$1" = "--remove" ] ; then
    shift
    #__check_installed_app "$1" || fatal "$1 is not installed"
89 90
    __epm_prescription_run $1 --remove
    __remove_installed_app "$@"
91
    exit
92 93
fi

94
if [ "$1" = "--list" ] || [ "$1" = "--installed" ] ; then
95
    shift
96
    echo "Installed:"
97 98 99 100 101 102
    local i
    for i in $(__list_installed_app) ; do
        printf "  %-20s - %s\n" "$i" "$($psdir/$i.sh --description 2>/dev/null)"
    done
    exit
fi
103

104 105 106 107 108
if [ "$1" == "--list-all" ] || [ -z "$*" ] ; then
    echo "Run with a name of a prescription to run:"
    for i in $psdir/*.sh ; do
        printf "  %-20s - %s\n" "$(basename $i .sh)" "$($i --description 2>/dev/null)"
    done
109 110
    echo
    echo "run epm play --list to list installed only or --remove to remove one"
111 112
    exit
fi
113

114
__check_installed_app "$1" && info "$1 is already installed" && exit 1
115
__epm_prescription_run "$1" --run && __save_installed_app "$1"
116
}