53 lines
1.2 KiB
Go
Raw Normal View History

2024-10-18 04:28:31 +00:00
package app
import (
2024-12-27 19:59:44 +00:00
"encoding/gob"
2024-10-18 04:28:31 +00:00
"flag"
2024-12-27 19:59:44 +00:00
"fmt"
2024-10-18 04:28:31 +00:00
"log"
"net/http"
"strconv"
"github.com/gin-gonic/gin"
"github.com/luthermonson/go-proxmox"
)
const APIVersion string = "0.0.1"
2024-12-27 19:59:44 +00:00
var client ProxmoxClient
2024-10-18 04:28:31 +00:00
func Run() {
2024-12-27 19:59:44 +00:00
gob.Register(proxmox.Client{})
2024-10-18 04:28:31 +00:00
configPath := flag.String("config", "config.json", "path to config.json file")
flag.Parse()
config := GetConfig(*configPath)
log.Println("Initialized config from " + *configPath)
2024-12-27 19:59:44 +00:00
token := fmt.Sprintf(`%s@%s!%s`, config.PVE.Token.USER, config.PVE.Token.REALM, config.PVE.Token.ID)
client = NewClient(token, config.PVE.Token.Secret)
2024-10-18 04:28:31 +00:00
router := gin.Default()
router.GET("/version", func(c *gin.Context) {
2024-12-27 19:59:44 +00:00
PVEVersion, err := client.Version()
2024-10-18 04:28:31 +00:00
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
} else {
c.JSON(http.StatusOK, gin.H{"api-version": APIVersion, "pve-version": PVEVersion})
}
})
2024-12-27 19:59:44 +00:00
router.GET("/nodes/:node", func(c *gin.Context) {
Node, err := client.Node(c.Param("node"))
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
} else {
c.JSON(http.StatusOK, gin.H{"node": Node})
}
})
2024-10-18 04:28:31 +00:00
2024-12-27 19:59:44 +00:00
router.Run("0.0.0.0:" + strconv.Itoa(config.ListenPort))
2024-10-18 04:28:31 +00:00
}