Add type handlers

This commit is contained in:
qowevisa 2024-10-31 11:41:49 +02:00
parent 020a5e6e40
commit 30c6c59e63
2 changed files with 111 additions and 0 deletions

View File

@ -77,6 +77,13 @@ func main() {
incomeRoutes.PUT("/edit/:id", handlers.IncomePutId)
incomeRoutes.DELETE("/delete/:id", handlers.IncomeDeleteId)
}
typesRoutes := api.Group("/type", middleware.AuthMiddleware())
{
typesRoutes.POST("/add", handlers.TypeAdd)
typesRoutes.GET("/:id", handlers.TypeGetId)
typesRoutes.PUT("/edit/:id", handlers.TypePutId)
typesRoutes.DELETE("/delete/:id", handlers.TypeDeleteId)
}
}
r.GET("/swagger/*any", ginSwagger.WrapHandler(swaggerFiles.Handler))

104
handlers/type.go Normal file
View File

@ -0,0 +1,104 @@
package handlers
import (
"git.qowevisa.me/Qowevisa/gonuts/db"
"git.qowevisa.me/Qowevisa/gonuts/types"
"github.com/gin-gonic/gin"
)
// @Summary Get dbtype by id
// @Description Get dbtype by id
// @Tags dbtype
// @Accept json
// @Produce json
// @Param Authorization header string true "Bearer token"
// @Param dbtype path int true "id"
// @Success 200 {object} types.DbType
// @Failure 400 {object} types.ErrorResponse
// @Failure 401 {object} types.ErrorResponse
// @Failure 403 {object} types.ErrorResponse
// @Failure 500 {object} types.ErrorResponse
// @Security ApiKeyAuth
// @Router /dbtype/:id [get]
func TypeGetId(c *gin.Context) {
GetHandler(func(inp *db.Type) types.DbType {
return types.DbType{
ID: inp.ID,
Name: inp.Name,
Comment: inp.Comment,
Color: inp.Color,
}
})(c)
}
// @Summary Get dbtype by id
// @Description Get dbtype by id
// @Tags dbtype
// @Accept json
// @Produce json
// @Param Authorization header string true "Bearer token"
// @Param dbtype body types.DbType true "Type"
// @Success 200 {object} types.Message
// @Failure 400 {object} types.ErrorResponse
// @Failure 500 {object} types.ErrorResponse
// @Security ApiKeyAuth
// @Router /dbtype/add [post]
func TypeAdd(c *gin.Context) {
t := &db.Type{}
CreateHandler(t, func(update types.DbType, dst *db.Type) {
dst.Name = update.Name
dst.Comment = update.Comment
dst.Color = update.Color
})(c)
}
// @Summary Edit dbtype by id
// @Description Edit dbtype by id
// @Tags dbtype
// @Accept json
// @Produce json
// @Param Authorization header string true "Bearer token"
// @Param dbtypeID path int true "id"
// @Param dbtype body types.DbType true "Type"
// @Success 200 {object} types.DbType
// @Failure 400 {object} types.ErrorResponse
// @Failure 401 {object} types.ErrorResponse
// @Failure 403 {object} types.ErrorResponse
// @Failure 500 {object} types.ErrorResponse
// @Security ApiKeyAuth
// @Router /dbtype/edit/:id [put]
func TypePutId(c *gin.Context) {
UpdateHandler(
func(updates types.DbType, dst *db.Type) {
dst.Name = updates.Name
dst.Comment = updates.Comment
dst.Color = updates.Color
},
func(inp *db.Type) types.DbType {
return types.DbType{
ID: inp.ID,
Name: inp.Name,
Comment: inp.Comment,
Color: inp.Color,
}
},
)(c)
}
// @Summary Delete dbtype by id
// @Description Delete dbtype by id
// @Tags dbtype
// @Accept json
// @Produce json
// @Param Authorization header string true "Bearer token"
// @Param dbtypeID path int true "id"
// @Success 200 {object} types.DbType
// @Failure 400 {object} types.ErrorResponse
// @Failure 401 {object} types.ErrorResponse
// @Failure 403 {object} types.ErrorResponse
// @Failure 500 {object} types.ErrorResponse
// @Security ApiKeyAuth
// @Router /dbtype/delete/:id [delete]
func TypeDeleteId(c *gin.Context) {
DeleteHandler[*db.Type]()(c)
}