package handlers import ( "git.qowevisa.me/Qowevisa/gonuts/db" "git.qowevisa.me/Qowevisa/gonuts/types" "github.com/gin-gonic/gin" ) // @Summary Get card by id // @Description Get card by id // @Tags card // @Accept json // @Produce json // @Param Authorization header string true "Bearer token" // @Param card path int true "id" // @Success 200 {object} types.DbCard // @Failure 400 {object} types.ErrorResponse // @Failure 401 {object} types.ErrorResponse // @Failure 500 {object} types.ErrorResponse // @Security ApiKeyAuth // @Router /card/:id [get] func CardGetId(c *gin.Context) { GetHandler(func(inp *db.Card) types.DbCard { return types.DbCard{ ID: inp.ID, Name: inp.Name, Value: inp.Value, HaveCreditLine: inp.HaveCreditLine, CreditLine: inp.CreditLine, } })(c) } // @Summary Get card by id // @Description Get card by id // @Tags card // @Accept json // @Produce json // @Param Authorization header string true "Bearer token" // @Param card body types.DbCard true "Card" // @Success 200 {object} types.Message // @Failure 400 {object} types.ErrorResponse // @Failure 500 {object} types.ErrorResponse // @Security ApiKeyAuth // @Router /card/add [post] func CardAdd(c *gin.Context) { card := &db.Card{} CreateHandler(card, func(src types.DbCard, dst *db.Card) { dst.Name = src.Name dst.Value = src.Value dst.HaveCreditLine = src.HaveCreditLine dst.CreditLine = src.CreditLine })(c) } // @Summary Edit card by id // @Description Edit card by id // @Tags card // @Accept json // @Produce json // @Param Authorization header string true "Bearer token" // @Param cardID path int true "id" // @Param card body types.DbCard true "Card" // @Success 200 {object} types.DbCard // @Failure 400 {object} types.ErrorResponse // @Failure 401 {object} types.ErrorResponse // @Failure 500 {object} types.ErrorResponse // @Security ApiKeyAuth // @Router /card/edit/:id [put] func CardPutId(c *gin.Context) { UpdateHandler( // Filter used to apply only needed changes from srt to dst before updating dst func(src types.DbCard, dst *db.Card) { dst.Name = src.Name dst.Value = src.Value dst.CreditLine = src.CreditLine dst.HaveCreditLine = src.HaveCreditLine }, func(inp *db.Card) types.DbCard { return types.DbCard{ ID: inp.ID, Name: inp.Name, Value: inp.Value, HaveCreditLine: inp.HaveCreditLine, CreditLine: inp.CreditLine, } })(c) } // @Summary Delete card by id // @Description Delete card by id // @Tags card // @Accept json // @Produce json // @Param Authorization header string true "Bearer token" // @Param cardID path int true "id" // @Success 200 {object} types.DbCard // @Failure 400 {object} types.ErrorResponse // @Failure 401 {object} types.ErrorResponse // @Failure 500 {object} types.ErrorResponse // @Security ApiKeyAuth // @Router /card/delete/:id [delete] func CardDeleteId(c *gin.Context) { DeleteHandler[*db.Card]()(c) }