123 lines
2.4 KiB
Go
123 lines
2.4 KiB
Go
package main
|
|
|
|
import (
|
|
"archive/zip"
|
|
"bytes"
|
|
"io"
|
|
"net/http"
|
|
"os"
|
|
"os/exec"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func check(err error) {
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
func index(c *gin.Context) {
|
|
index_page, err := indexHTML.ReadFile("html/index.html")
|
|
check(err)
|
|
c.Data(http.StatusOK, "text/html", index_page)
|
|
}
|
|
|
|
func update(c *gin.Context) {
|
|
cmd := exec.Command("awdaawdawd")
|
|
|
|
var out bytes.Buffer
|
|
cmd.Stdout = &out
|
|
|
|
err := cmd.Run()
|
|
|
|
if err != nil {
|
|
c.String(http.StatusBadRequest, err.Error())
|
|
} else {
|
|
c.String(http.StatusOK, out.String())
|
|
}
|
|
}
|
|
|
|
func RecursiveZip(pathToZip, destinationPath string) error {
|
|
destinationFile, err := os.Create(destinationPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
myZip := zip.NewWriter(destinationFile)
|
|
err = filepath.Walk(pathToZip, func(filePath string, info os.FileInfo, err error) error {
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if info.IsDir() {
|
|
return nil
|
|
}
|
|
relPath := strings.TrimPrefix(filePath, filepath.Dir(pathToZip))
|
|
zipFile, err := myZip.Create(relPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
fsFile, err := os.Open(filePath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_, err = io.Copy(zipFile, fsFile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = myZip.Close()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func backup(c *gin.Context) {
|
|
|
|
err := RecursiveZip("/root/.wine/drive_c/users/root/AppData/LocalLow/Stunlock Studios/VRisingServer/Saves", "data/backup.zip")
|
|
if err != nil {
|
|
c.String(http.StatusBadRequest, err.Error())
|
|
return
|
|
}
|
|
|
|
backup, err := os.ReadFile("data/backup.zip")
|
|
if err != nil {
|
|
c.String(http.StatusBadRequest, err.Error())
|
|
return
|
|
}
|
|
|
|
c.Data(http.StatusOK, "application/zip", backup)
|
|
}
|
|
|
|
func configure(c *gin.Context) {
|
|
file, err := c.FormFile("ServerHostSettings.json")
|
|
if err == nil {
|
|
c.SaveUploadedFile(file, "data/ServerHostSettings.json")
|
|
}
|
|
|
|
file, err = c.FormFile("ServerGameSettings.json")
|
|
if err == nil {
|
|
c.SaveUploadedFile(file, "data/ServerGameSettings.json")
|
|
}
|
|
|
|
file, err = c.FormFile("adminlist.txt")
|
|
if err == nil {
|
|
c.SaveUploadedFile(file, "data/adminlist.txt")
|
|
}
|
|
|
|
file, err = c.FormFile("banlist.txt")
|
|
if err == nil {
|
|
c.SaveUploadedFile(file, "data/banlist.txt")
|
|
}
|
|
|
|
updated_page, err := indexHTML.ReadFile("html/updated.html")
|
|
check(err)
|
|
c.Data(http.StatusOK, "text/html", updated_page)
|
|
}
|