implement node endpoint

This commit is contained in:
2025-02-11 07:11:05 +00:00
parent 747c705420
commit c9b2fa9b6f
5 changed files with 197 additions and 34 deletions

View File

@@ -1,8 +1,9 @@
package app
import (
"context"
"encoding/gob"
"flag"
"fmt"
"log"
"net/http"
"strconv"
@@ -13,21 +14,24 @@ import (
const APIVersion string = "0.0.1"
var client *proxmox.Client = nil
var client ProxmoxClient
func Run() {
gob.Register(proxmox.Client{})
configPath := flag.String("config", "config.json", "path to config.json file")
flag.Parse()
config := GetConfig(*configPath)
log.Println("Initialized config from " + *configPath)
client = NewClient(config.PVE.Token.ID, config.PVE.Token.Secret)
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)
router := gin.Default()
router.GET("/version", func(c *gin.Context) {
PVEVersion, err := client.Version(context.Background())
PVEVersion, err := client.Version()
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
} else {
@@ -35,6 +39,14 @@ func Run() {
}
})
router.Run("0.0.0.0:" + strconv.Itoa(config.ListenPort))
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})
}
})
router.Run("0.0.0.0:" + strconv.Itoa(config.ListenPort))
}