mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-10-10 15:36:45 +08:00
116 lines
2.7 KiB
Go
116 lines
2.7 KiB
Go
package systemctl
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"github.com/pkg/errors"
|
|
"os/exec"
|
|
"strings"
|
|
)
|
|
|
|
func RunSystemCtl(args ...string) (string, error) {
|
|
cmd := exec.Command("systemctl", args...)
|
|
output, err := cmd.CombinedOutput()
|
|
if err != nil {
|
|
return string(output), fmt.Errorf("failed to run command: %w", err)
|
|
}
|
|
return string(output), nil
|
|
}
|
|
|
|
func isSnapService(serviceName string) bool {
|
|
cmd := exec.Command("snap", "services")
|
|
var out bytes.Buffer
|
|
cmd.Stdout = &out
|
|
if err := cmd.Run(); err != nil {
|
|
return false
|
|
}
|
|
return strings.Contains(out.String(), serviceName)
|
|
}
|
|
|
|
func isSnapServiceActive(serviceName string) bool {
|
|
cmd := exec.Command("snap", "services")
|
|
var out bytes.Buffer
|
|
cmd.Stdout = &out
|
|
if err := cmd.Run(); err != nil {
|
|
return false
|
|
}
|
|
lines := strings.Split(out.String(), "\n")
|
|
for _, line := range lines {
|
|
if strings.Contains(line, serviceName) && strings.Contains(line, "active") {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func IsActive(serviceName string) (bool, error) {
|
|
out, err := RunSystemCtl("is-active", serviceName)
|
|
if err == nil {
|
|
return strings.TrimSpace(out) == "active", nil
|
|
}
|
|
|
|
if isSnapServiceActive(serviceName) {
|
|
return true, nil
|
|
}
|
|
return false, fmt.Errorf("service %s is not active: %v", serviceName, err)
|
|
}
|
|
|
|
func IsEnable(serviceName string) (bool, error) {
|
|
out, err := RunSystemCtl("is-enabled", serviceName)
|
|
if err == nil {
|
|
return strings.TrimSpace(out) == "enabled", nil
|
|
}
|
|
|
|
if isSnapServiceActive(serviceName) {
|
|
return true, nil
|
|
}
|
|
return false, fmt.Errorf("failed to determine if service %s is enabled: %v", serviceName, err)
|
|
}
|
|
|
|
func IsExist(serviceName string) (bool, error) {
|
|
out, err := RunSystemCtl("is-enabled", serviceName)
|
|
if err == nil || strings.Contains(out, "disabled") {
|
|
return true, nil
|
|
}
|
|
if isSnapService(serviceName) {
|
|
return true, nil
|
|
}
|
|
return false, nil
|
|
}
|
|
|
|
func handlerErr(out string, err error) error {
|
|
if err != nil {
|
|
if out != "" {
|
|
return errors.New(out)
|
|
}
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func Restart(serviceName string) error {
|
|
out, err := RunSystemCtl("restart", serviceName)
|
|
if err == nil {
|
|
return nil
|
|
}
|
|
if isSnapService(serviceName) {
|
|
cmd := exec.Command("snap", "restart", serviceName)
|
|
output, snapErr := cmd.CombinedOutput()
|
|
return handlerErr(string(output), snapErr)
|
|
}
|
|
return handlerErr(out, err)
|
|
}
|
|
|
|
func Operate(operate, serviceName string) error {
|
|
out, err := RunSystemCtl(operate, serviceName)
|
|
if err == nil {
|
|
return nil
|
|
}
|
|
|
|
if isSnapService(serviceName) && (operate == "start" || operate == "stop" || operate == "restart") {
|
|
cmd := exec.Command("snap", operate, serviceName)
|
|
output, snapErr := cmd.CombinedOutput()
|
|
return handlerErr(string(output), snapErr)
|
|
}
|
|
return handlerErr(out, err)
|
|
}
|