#!/bin/sh # # Copyright (C) 2015, 2017, 2019, 2020, 2022 Etersoft # Copyright (C) 2015, 2017, 2019, 2020, 2022 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/>. # # TODO epm_vardir=/var/lib/eepm __save_installed_app() { return 0 # stub [ -d "$epm_vardir" ] || return 0 __check_installed_app "$1" && return 0 echo "$1" | sudorun tee -a $epm_vardir/installed-app >/dev/null } __remove_installed_app() { return 0 # stub [ -s $epm_vardir/installed-app ] || return 0 local i for i in $* ; do sudorun sed -i "/^$i$/d" $epm_vardir/installed-app done return 0 } __run_script() { local script="$psdir/$1.sh" [ -x "$script" ] || return shift $script "$@" return } __get_app_package() { __run_script "$1" --package-name "$2" 2>/dev/null } __check_installed_app() { __run_script "$1" --installed "$2" return [ -s $epm_vardir/installed-app ] || return 1 grep -q -- "^$1\$" $epm_vardir/installed-app } __list_all_app() { for i in $psdir/*.sh ; do local name=$(basename $i .sh) [ -n "$IGNOREi586" ] && rhas "$name" "^i586-" && continue rhas "$name" "^common" && continue echo "$name" done } __list_all_packages() { local name for name in $(__list_all_app) ; do __get_app_package $name done } # pkg app __list_app_packages_table() { local name for name in $(__list_all_app) ; do local pkg="$(__get_app_package $name)" [ -n "$pkg" ] || continue echo "$pkg $name" done } __list_installed_app() { local i local tapt=$(mktemp) || fatal __list_app_packages_table >$tapt # get all installed packages and convert it to a apps list for i in $(epm query --short $(cat $tapt | sed -e 's| .*$||') 2>/dev/null) ; do grep "^$i " $tapt | sed -e 's|^.* ||' done rm -f $tapt return cat $epm_vardir/installed-app 2>/dev/null } __get_app_description() { __run_script "$1" --description 2>/dev/null } __check_play_script() { local script="$psdir/$1.sh" shift [ -x "$script" ] } __epm_play_run() { local script="$psdir/$1.sh" shift # TODO: use epm print info instead of one? # we will have DISTRVENDOR there export PATH=$PROGDIR:$PATH set_sudo export SUDO [ -n "$non_interactive" ] && export EPM_AUTO="--auto" local bashopt='' [ -n "$verbose" ] && bashopt='-x' && export EPM_VERBOSE="$verbose" #info "Running $($script --description 2>/dev/null) ..." docmd bash $bashopt $script "$@" } __epm_play_list_installed() { local i if [ -n "$short" ] ; then for i in $(__list_installed_app) ; do echo "$i" done exit fi [ -n "$quiet" ] || echo "Installed applications:" for i in $(__list_installed_app) ; do local desc="$(__get_app_description $i)" #[ -n "$desc" ] || continue [ -n "$quiet" ] || echo -n " " printf "%-20s - %s\n" "$i" "$desc" done } __epm_play_list() { local psdir="$1" local i local IGNOREi586 [ "$($DISTRVENDOR -a)" = "x86_64" ] && IGNOREi586='' || IGNOREi586=1 if [ -n "$short" ] ; then for i in $(__list_all_app) ; do local desc="$(__get_app_description $i)" [ -n "$desc" ] || continue echo "$i" done exit fi for i in $(__list_all_app) ; do local desc="$(__get_app_description $i)" [ -n "$desc" ] || continue [ -n "$quiet" ] || echo -n " " printf "%-20s - %s\n" "$i" "$desc" done } __epm_play_help() { cat <<EOF Usage: epm play [options] [<app>] Options: <app> - install <app> --remove <app> - uninstall <app> --update [<app>|all] - update <app> (or all installed apps) if there is new version --list - list all installed apps --list-all - list all available apps --list-scripts - list all available scripts --short (with --list) - list names only" --installed <app> - check if the app is installed" EOF } epm_play() { local psdir="$(realpath $CONFIGDIR/play.d)" local prsdir="$(realpath $CONFIGDIR/prescription.d)" if [ "$1" = "-h" ] || [ "$1" = "--help" ] ; then __epm_play_help exit fi if [ "$1" = "--remove" ] || [ "$1" = "remove" ] ; then shift #__check_installed_app "$1" || warning "$1 is not installed" prescription="$1" shift if __check_play_script "$prescription" ; then __epm_play_run $prescription --remove "$@" __remove_installed_app "$prescription" else psdir=$prsdir __check_play_script "$prescription" || fatal "We have no idea how to remove $prescription (checked in $psdir and $prsdir)" __epm_play_run "$prescription" --remove "$@" || fatal "There was some error during run the script." fi exit fi if [ "$1" = "--update" ] ; then shift if [ "$1" = "all" ] ; then shift RES=0 for i in $(__list_installed_app) ; do echo echo "$i" prescription="$i" if ! __check_play_script $prescription ; then warning "Can't find executable play script for $prescription. Try epm play --remove $prescription if you don't need it anymore." RES=1 continue fi __epm_play_run $prescription --update "$@" || RES=$? done exit $RES fi if [ -z "$1" ] ; then fatal "run --update with 'all' or a project name" fi __check_installed_app "$1" || fatal "$1 is not installed" prescription="$1" shift __epm_play_run $prescription --update "$@" exit fi if [ "$1" = "--installed" ] || [ "$1" = "installed" ] ; then shift __check_installed_app "$1" "$2" #[ -n "$quiet" ] && exit exit fi # common internal options case "$1" in "--installed-version"|"--package-name"|"--product-alternatives") __run_script "$2" "$1" "$3" exit ;; "--help"|"help") __run_script "$2" "$1" "$3" exit ;; esac if [ "$1" = "--list" ] || [ "$1" = "--list-installed" ] || [ "$1" = "list" ] || [ "$1" = "list-installed" ] ; then __epm_play_list_installed exit fi if [ "$1" = "--list-all" ] || [ "$1" = "list-all" ] || [ -z "$*" ] ; then [ -n "$short" ] || [ -n "$quiet" ] || echo "Available applications:" __epm_play_list $psdir [ -n "$quiet" ] || [ -n "$*" ] && exit echo #echo "Run epm play --help for help" __epm_play_help exit fi if [ "$1" = "--list-scripts" ] || [ "$1" = "list-scripts" ] ; then [ -n "$short" ] || [ -n "$quiet" ] || echo "Run with a name of a play script to run:" __epm_play_list $prsdir exit fi prescription="$1" shift if __check_play_script "$prescription" ; then #__check_installed_app "$prescription" && info "$$prescription is already installed (use --remove to remove)" && exit 1 __epm_play_run "$prescription" --run "$@" && __save_installed_app "$prescription" || fatal "There was some error during install the application." else psdir=$prsdir __check_play_script "$prescription" || fatal "We have no idea how to play $prescription (checked in $psdir and $prsdir)" __epm_play_run "$prescription" --run "$@" || fatal "There was some error during run the script." fi }