mirror of
https://github.com/komari-monitor/komari.git
synced 2025-11-03 05:23:32 +00:00
141 lines
3.4 KiB
Go
141 lines
3.4 KiB
Go
package admin
|
|
|
|
import (
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/komari-monitor/komari/common"
|
|
"github.com/komari-monitor/komari/database/clients"
|
|
"github.com/komari-monitor/komari/database/dbcore"
|
|
"github.com/komari-monitor/komari/database/models"
|
|
"github.com/komari-monitor/komari/database/records"
|
|
)
|
|
|
|
func AddClient(c *gin.Context) {
|
|
|
|
uuid, token, err := clients.CreateClient()
|
|
if err != nil {
|
|
c.JSON(http.StatusInternalServerError, gin.H{"status": "error", "error": err.Error()})
|
|
return
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{"status": "success", "uuid": uuid, "token": token})
|
|
}
|
|
|
|
func EditClient(c *gin.Context) {
|
|
var req struct {
|
|
ClientName string `json:"name,omitempty"`
|
|
Token string `json:"token,omitempty"`
|
|
Weigth int `json:"weight,omitempty"`
|
|
}
|
|
uuid := c.Param("uuid")
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
|
c.JSON(http.StatusBadRequest, gin.H{"status": "error", "error": err.Error()})
|
|
return
|
|
}
|
|
db := dbcore.GetDBInstance()
|
|
var err error
|
|
if req.ClientName != "" {
|
|
err = db.Model(&common.ClientInfo{}).Where("uuid = ?", uuid).
|
|
Updates(map[string]interface{}{"name": req.ClientName, "updated_at": time.Now()}).Error
|
|
if err != nil {
|
|
c.JSON(http.StatusInternalServerError, gin.H{"status": "error", "error": err.Error()})
|
|
return
|
|
}
|
|
}
|
|
if req.Token != "" {
|
|
err = db.Model(&models.Client{}).Where("uuid = ?", uuid).
|
|
Updates(map[string]interface{}{"token": req.Token, "updated_at": time.Now()}).Error
|
|
if err != nil {
|
|
c.JSON(http.StatusInternalServerError, gin.H{"status": "error", "error": err.Error()})
|
|
return
|
|
}
|
|
}
|
|
if req.Weigth != 0 {
|
|
err = db.Model(&common.ClientInfo{}).Where("uuid = ?", uuid).
|
|
Updates(map[string]interface{}{"weigth": req.Weigth, "updated_at": time.Now()}).Error
|
|
if err != nil {
|
|
c.JSON(http.StatusInternalServerError, gin.H{"status": "error", "error": err.Error()})
|
|
return
|
|
}
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{"status": "success"})
|
|
}
|
|
|
|
func RemoveClient(c *gin.Context) {
|
|
uuid := c.Param("uuid")
|
|
err := clients.DeleteClient(uuid)
|
|
if err != nil {
|
|
c.JSON(500, gin.H{
|
|
"status": "error",
|
|
"error": "Failed to delete client" + err.Error(),
|
|
})
|
|
return
|
|
}
|
|
c.JSON(200, gin.H{"status": "success"})
|
|
}
|
|
|
|
func ClearRecord(c *gin.Context) {
|
|
if err := records.DeleteAll(); err != nil {
|
|
c.JSON(500, gin.H{
|
|
"status": "error",
|
|
"error": "Failed to delete Record" + err.Error(),
|
|
})
|
|
return
|
|
}
|
|
c.JSON(200, gin.H{"status": "success"})
|
|
}
|
|
|
|
func GetClient(c *gin.Context) {
|
|
uuid := c.Param("uuid")
|
|
if uuid == "" {
|
|
c.JSON(400, gin.H{
|
|
"status": "error",
|
|
"error": "Invalid or missing UUID",
|
|
})
|
|
return
|
|
}
|
|
|
|
result, err := clients.GetClientByUUID(uuid)
|
|
if err != nil {
|
|
c.JSON(http.StatusInternalServerError, gin.H{
|
|
"status": "error",
|
|
"error": err.Error(),
|
|
})
|
|
return
|
|
}
|
|
|
|
c.JSON(http.StatusOK, result)
|
|
}
|
|
|
|
func ListClients(c *gin.Context) {
|
|
cls, err := clients.GetAllClientBasicInfo()
|
|
if err != nil {
|
|
c.JSON(http.StatusInternalServerError, gin.H{"status": "error", "error": err.Error()})
|
|
return
|
|
}
|
|
|
|
c.JSON(http.StatusOK, cls)
|
|
}
|
|
|
|
func GetClientToken(c *gin.Context) {
|
|
uuid := c.Param("uuid")
|
|
if uuid == "" {
|
|
c.JSON(400, gin.H{
|
|
"status": "error",
|
|
"error": "Invalid or missing UUID",
|
|
})
|
|
return
|
|
}
|
|
|
|
token, err := clients.GetClientTokenByUUID(uuid)
|
|
if err != nil {
|
|
c.JSON(http.StatusInternalServerError, gin.H{"status": "error", "error": err.Error()})
|
|
return
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{"status": "success", "token": token})
|
|
}
|