2024-02-10 21:05:08 +02:00
|
|
|
package handlers
|
|
|
|
|
|
|
|
import (
|
2024-06-01 02:10:20 +03:00
|
|
|
"fmt"
|
2024-02-10 21:05:08 +02:00
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
2024-02-12 21:38:03 +02:00
|
|
|
repositorymodels "github.com/pikami/cosmium/internal/repository_models"
|
2024-02-10 21:05:08 +02:00
|
|
|
)
|
|
|
|
|
2024-12-18 19:39:57 +02:00
|
|
|
func (h *Handlers) GetAllUserDefinedFunctions(c *gin.Context) {
|
2024-02-10 21:05:08 +02:00
|
|
|
databaseId := c.Param("databaseId")
|
|
|
|
collectionId := c.Param("collId")
|
|
|
|
|
2024-12-18 19:39:57 +02:00
|
|
|
udfs, status := h.repository.GetAllUserDefinedFunctions(databaseId, collectionId)
|
2024-02-10 21:05:08 +02:00
|
|
|
|
2024-02-12 21:38:03 +02:00
|
|
|
if status == repositorymodels.StatusOk {
|
2024-06-01 02:10:20 +03:00
|
|
|
c.Header("x-ms-item-count", fmt.Sprintf("%d", len(udfs)))
|
2024-02-10 21:05:08 +02:00
|
|
|
c.IndentedJSON(http.StatusOK, gin.H{"_rid": "", "UserDefinedFunctions": udfs, "_count": len(udfs)})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.IndentedJSON(http.StatusInternalServerError, gin.H{"message": "Unknown error"})
|
|
|
|
}
|
2025-01-06 20:45:43 +02:00
|
|
|
|
|
|
|
func (h *Handlers) GetUserDefinedFunction(c *gin.Context) {
|
|
|
|
databaseId := c.Param("databaseId")
|
|
|
|
collectionId := c.Param("collId")
|
|
|
|
udfId := c.Param("udfId")
|
|
|
|
|
|
|
|
udf, status := h.repository.GetUserDefinedFunction(databaseId, collectionId, udfId)
|
|
|
|
|
|
|
|
if status == repositorymodels.StatusOk {
|
|
|
|
c.IndentedJSON(http.StatusOK, udf)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if status == repositorymodels.StatusNotFound {
|
|
|
|
c.IndentedJSON(http.StatusNotFound, gin.H{"message": "NotFound"})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.IndentedJSON(http.StatusInternalServerError, gin.H{"message": "Unknown error"})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *Handlers) DeleteUserDefinedFunction(c *gin.Context) {
|
|
|
|
databaseId := c.Param("databaseId")
|
|
|
|
collectionId := c.Param("collId")
|
|
|
|
udfId := c.Param("udfId")
|
|
|
|
|
|
|
|
status := h.repository.DeleteUserDefinedFunction(databaseId, collectionId, udfId)
|
|
|
|
if status == repositorymodels.StatusOk {
|
|
|
|
c.Status(http.StatusNoContent)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if status == repositorymodels.StatusNotFound {
|
|
|
|
c.IndentedJSON(http.StatusNotFound, gin.H{"message": "NotFound"})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.IndentedJSON(http.StatusInternalServerError, gin.H{"message": "Unknown error"})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *Handlers) ReplaceUserDefinedFunction(c *gin.Context) {
|
|
|
|
databaseId := c.Param("databaseId")
|
|
|
|
collectionId := c.Param("collId")
|
|
|
|
udfId := c.Param("udfId")
|
|
|
|
|
|
|
|
var udf repositorymodels.UserDefinedFunction
|
|
|
|
if err := c.BindJSON(&udf); err != nil {
|
|
|
|
c.IndentedJSON(http.StatusBadRequest, gin.H{"message": "Invalid body"})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
status := h.repository.DeleteUserDefinedFunction(databaseId, collectionId, udfId)
|
|
|
|
if status == repositorymodels.StatusNotFound {
|
|
|
|
c.IndentedJSON(http.StatusNotFound, gin.H{"message": "NotFound"})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
createdUdf, status := h.repository.CreateUserDefinedFunction(databaseId, collectionId, udf)
|
|
|
|
if status == repositorymodels.Conflict {
|
|
|
|
c.IndentedJSON(http.StatusConflict, gin.H{"message": "Conflict"})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if status == repositorymodels.StatusOk {
|
|
|
|
c.IndentedJSON(http.StatusOK, createdUdf)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.IndentedJSON(http.StatusInternalServerError, gin.H{"message": "Unknown error"})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *Handlers) CreateUserDefinedFunction(c *gin.Context) {
|
|
|
|
databaseId := c.Param("databaseId")
|
|
|
|
collectionId := c.Param("collId")
|
|
|
|
|
|
|
|
var udf repositorymodels.UserDefinedFunction
|
|
|
|
if err := c.BindJSON(&udf); err != nil {
|
|
|
|
c.IndentedJSON(http.StatusBadRequest, gin.H{"message": "Invalid body"})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
createdUdf, status := h.repository.CreateUserDefinedFunction(databaseId, collectionId, udf)
|
|
|
|
if status == repositorymodels.Conflict {
|
|
|
|
c.IndentedJSON(http.StatusConflict, gin.H{"message": "Conflict"})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if status == repositorymodels.StatusOk {
|
|
|
|
c.IndentedJSON(http.StatusCreated, createdUdf)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.IndentedJSON(http.StatusInternalServerError, gin.H{"message": "Unknown error"})
|
|
|
|
}
|