enable routes

This commit is contained in:
Fran Jurmanović
2024-07-14 20:09:50 +02:00
parent edd1806de9
commit 6e91c02de7
8 changed files with 78 additions and 14 deletions

View File

@@ -2,8 +2,9 @@ package service
import (
"acc-server-manager/local/repository"
"acc-server-manager/local/utl/common"
"acc-server-manager/local/utl/configs"
"os/exec"
"errors"
"github.com/gofiber/fiber/v2"
)
@@ -32,18 +33,50 @@ func (as ApiService) GetFirst(ctx *fiber.Ctx) string {
return configs.Version
}
func (as ApiService) StartServer(ctx *fiber.Ctx) (string, error) {
func (as ApiService) ApiStartServer(ctx *fiber.Ctx) (string, error) {
service, ok := ctx.Locals("service").(string)
print(service)
if !ok {
return "", fiber.NewError(400)
return "", errors.New("service name missing")
}
cmd := exec.Command("sc", "start", service)
output, err := cmd.CombinedOutput()
print(string(output[:]))
if err != nil {
return "", fiber.NewError(500)
}
return string(output[:]), nil
return as.StartServer(service)
}
func (as ApiService) StartServer(serviceName string) (string, error) {
return as.ManageService("start", serviceName)
}
func (as ApiService) ApiStopServer(ctx *fiber.Ctx) (string, error) {
service, ok := ctx.Locals("service").(string)
if !ok {
return "", errors.New("service name missing")
}
return as.StopServer(service)
}
func (as ApiService) StopServer(serviceName string) (string, error) {
return as.ManageService("stop", serviceName)
}
func (as ApiService) ApiRestartServer(ctx *fiber.Ctx) (string, error) {
service, ok := ctx.Locals("service").(string)
if !ok {
return "", errors.New("service name missing")
}
return as.RestartServer(service)
}
func (as ApiService) RestartServer(serviceName string) (string, error) {
_, err := as.ManageService("stop", serviceName)
if err != nil {
return "", err
}
return as.ManageService("start", serviceName)
}
func (as ApiService) ManageService(action string, serviceName string) (string, error) {
output, err := common.RunElevatedCommand(action, serviceName)
if err != nil {
return "", err
}
return output, nil
}