From 88acd290f4043d05965ab5ed6a319eb454736ae0 Mon Sep 17 00:00:00 2001 From: Alexey Berezhok Date: Thu, 16 Jan 2025 19:03:12 +0300 Subject: [PATCH] Added brepo php support --- hestiacp-php-selector.spec | 9 ++-- installer.sh | 16 +++++-- src/converter/hestiacp-php-set-ver.go | 63 ++++++++++++++++++++++----- 3 files changed, 70 insertions(+), 18 deletions(-) diff --git a/hestiacp-php-selector.spec b/hestiacp-php-selector.spec index 4dfc4eb..3548f11 100644 --- a/hestiacp-php-selector.spec +++ b/hestiacp-php-selector.spec @@ -1,7 +1,7 @@ Name: hestiacp-php-selector Summary: Utility for manage php cli for HestiaCP -Version: 0.1.0 -Release: 1%{?dist} +Version: 0.2.0 +Release: 1%{?dist}.%{brepo_dist}.. License: GPL-2.0-or-later Group: System Environment/Base URL: https://www.inferit.ru @@ -42,7 +42,7 @@ if [ $1 -eq 1 ]; then /usr/local/hestia_php_selector/hestiacp_php_selector_installer install fi -%postun +%preun if [ $1 -eq 0 ]; then /usr/local/hestia_php_selector/hestiacp_php_selector_installer delete fi @@ -59,5 +59,8 @@ fi /usr/local/hestia_php_selector/* %changelog +* Thu Jan 16 2025 Alexey Berezhok 0.2.0-1 +- Added support brepo php's + * Wed Aug 21 2024 Alexey Berezhok 0.1.0-1 - Added hestiacp-php-selector diff --git a/installer.sh b/installer.sh index ac4da23..fd01726 100644 --- a/installer.sh +++ b/installer.sh @@ -5,8 +5,15 @@ function restore_system() { if [ "$current_php" == "/usr/bin/hestiacp-php-selector" ]; then if [ -e /etc/hestia_php_selector/system/php.path ]; then php_sys=$(cat /etc/hestia_php_selector/system/php.path) - if [ -n "$php_sys" ]; then - update-alternatives --display php | grep "/usr/bin/php82" + if [ -n "$php_sys" -o "$php_sys" == "/usr/bin/hestiacp-php-selector" ]; then + inst_tp="/usr/bin/php82" + if [ -e /usr/local/hestia/conf/hestia.conf ]; then + res=$(cat /usr/local/hestia/conf/hestia.conf | grep "LOCAL_PHP" | grep "yes") + if [ -n "$res" ]; then + inst_tp="/opt/brepo/php82/bin/php" + fi + fi + update-alternatives --display php | grep "$inst_tp" if [ $? -eq 0 ]; then update-alternatives --set php "$php_sys" else @@ -34,13 +41,16 @@ fi case "$1" in install) echo "Try to find php-selector for hestiacp" + current_path_to_php="" + if [ -e /usr/bin/php ]; then + current_path_to_php=$(readlink -f /usr/bin/php) + fi update-alternatives --display php | grep hestiacp-php-selector if [ $? -ne 0 ]; then echo "Register php-selector" update-alternatives --install /usr/bin/php php /usr/bin/hestiacp-php-selector 1 if [ ! -e /etc/hestia_php_selector/system/php.path ]; then mkdir -p /etc/hestia_php_selector/system/ - current_path_to_php=$(readlink -f /usr/bin/php) echo "$current_path_to_php" >/etc/hestia_php_selector/system/php.path chmod 644 /etc/hestia_php_selector/system/php.path fi diff --git a/src/converter/hestiacp-php-set-ver.go b/src/converter/hestiacp-php-set-ver.go index 6e3fe1c..d631bf0 100644 --- a/src/converter/hestiacp-php-set-ver.go +++ b/src/converter/hestiacp-php-set-ver.go @@ -26,9 +26,54 @@ const ( PATH_TO_LOCAL_PHP = PATH_TO_LOCAL_PHP_ROOT + PATH_TO_CONFIG_NAME LOCK_PATH = "lock" PHP_SEL_CONF = "/etc/hestia_php_selector/php_sel_path.conf" - PHP_TEMPLATE = "/usr/bin/php%s" + PHP_TEMPLATE_REMI = "/usr/bin/php%s" + PHP_TEMPLATE_BREPO = "/opt/brepo/php%s/bin/php" + HESTIA_CONF = "/usr/local/hestia/conf/hestia.conf" ) +func isFileExists(path string) (bool, bool, error) { + if fi, err := os.Stat(path); err == nil { + return true, fi.IsDir(), nil + } else if errors.Is(err, os.ErrNotExist) { + return false, false, nil + } else { + return false, false, err + } +} + +func get_php_type() string { + res := "remi" + ext, isd, err := isFileExists(HESTIA_CONF) + if err == nil && ext && !isd { + f, err := os.Open(HESTIA_CONF) + if err != nil { + return res + } + defer f.Close() + scanner := bufio.NewScanner(f) + + for scanner.Scan() { + line := scanner.Text() + formatedLine := strings.SplitN(strings.TrimSpace(line), "=", 2) + if len(formatedLine) < 2 { + continue + } + if strings.TrimSpace(formatedLine[0]) == "LOCAL_PHP" { + result := strings.Trim(formatedLine[1], "' ") + if result == "yes" { + res = "brepo" + } + } + } + + if err := scanner.Err(); err != nil { + return res + } + + } + return res +} + func escapeUserName(username string) string { username0 := strings.TrimSpace(username) uname := strings.Split(username0, "/") @@ -54,7 +99,11 @@ func getPathtpPHP(phpVer string) string { } } } - return fmt.Sprintf(PHP_TEMPLATE, phpVer) + if get_php_type() == "remi" { + return fmt.Sprintf(PHP_TEMPLATE_REMI, phpVer) + } else { + return fmt.Sprintf(PHP_TEMPLATE_BREPO, phpVer) + } } @@ -138,16 +187,6 @@ func setUserPHPVer(username string, php_ver string) error { } } -func isFileExists(path string) (bool, bool, error) { - if fi, err := os.Stat(path); err == nil { - return true, fi.IsDir(), nil - } else if errors.Is(err, os.ErrNotExist) { - return false, false, nil - } else { - return false, false, err - } -} - func setUserPhpPathVer(username string, php_ver string, php_path string) error { un := escapeUserName(username) if un == "" {