cosmium/api/handlers/databases.go

85 lines
2.0 KiB
Go
Raw Normal View History

2024-02-10 15:17:34 +00:00
package handlers
import (
"net/http"
"github.com/gin-gonic/gin"
"github.com/pikami/cosmium/internal/repositories"
repositorymodels "github.com/pikami/cosmium/internal/repository_models"
2024-02-10 15:17:34 +00:00
)
func GetAllDatabases(c *gin.Context) {
databases, status := repositories.GetAllDatabases()
if status == repositorymodels.StatusOk {
c.IndentedJSON(http.StatusOK, gin.H{
"_rid": "",
"Databases": databases,
"_count": len(databases),
})
2024-02-10 15:17:34 +00:00
return
}
c.IndentedJSON(http.StatusInternalServerError, gin.H{"message": "Unknown error"})
}
func GetDatabase(c *gin.Context) {
2024-02-10 16:52:41 +00:00
id := c.Param("databaseId")
2024-02-10 15:17:34 +00:00
database, status := repositories.GetDatabase(id)
if status == repositorymodels.StatusOk {
2024-02-10 15:17:34 +00:00
c.IndentedJSON(http.StatusOK, database)
return
}
if status == repositorymodels.StatusNotFound {
2024-02-10 15:17:34 +00:00
c.IndentedJSON(http.StatusNotFound, gin.H{"message": "NotFound"})
return
}
c.IndentedJSON(http.StatusInternalServerError, gin.H{"message": "Unknown error"})
}
func DeleteDatabase(c *gin.Context) {
2024-02-10 16:52:41 +00:00
id := c.Param("databaseId")
2024-02-10 15:17:34 +00:00
status := repositories.DeleteDatabase(id)
if status == repositorymodels.StatusOk {
2024-02-10 15:17:34 +00:00
c.Status(http.StatusNoContent)
return
}
if status == repositorymodels.StatusNotFound {
2024-02-10 15:17:34 +00:00
c.IndentedJSON(http.StatusNotFound, gin.H{"message": "NotFound"})
return
}
c.IndentedJSON(http.StatusInternalServerError, gin.H{"message": "Unknown error"})
}
func CreateDatabase(c *gin.Context) {
var newDatabase repositorymodels.Database
2024-02-10 15:17:34 +00:00
if err := c.BindJSON(&newDatabase); err != nil {
c.JSON(http.StatusBadRequest, gin.H{"message": err.Error()})
return
}
if newDatabase.ID == "" {
c.JSON(http.StatusBadRequest, gin.H{"message": "BadRequest"})
return
}
createdDatabase, status := repositories.CreateDatabase(newDatabase)
if status == repositorymodels.Conflict {
2024-02-10 15:17:34 +00:00
c.IndentedJSON(http.StatusConflict, gin.H{"message": "Conflict"})
return
}
if status == repositorymodels.StatusOk {
c.IndentedJSON(http.StatusCreated, createdDatabase)
2024-02-10 15:17:34 +00:00
return
}
c.IndentedJSON(http.StatusInternalServerError, gin.H{"message": "Unknown error"})
}