fin-check-api/handlers/card.go

106 lines
2.9 KiB
Go
Raw Normal View History

2024-08-03 07:16:18 +02:00
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"
2024-08-03 07:16:18 +02:00
// @Success 200 {object} types.DbCard
// @Failure 400 {object} types.ErrorResponse
// @Failure 401 {object} types.ErrorResponse
2024-08-03 07:16:18 +02:00
// @Failure 500 {object} types.ErrorResponse
// @Security ApiKeyAuth
2024-08-03 07:16:18 +02:00
// @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,
Balance: inp.Balance,
HaveCreditLine: inp.HaveCreditLine,
CreditLine: inp.CreditLine,
}
})(c)
2024-08-03 07:16:18 +02:00
}
// @Summary Get card by id
// @Description Get card by id
// @Tags card
// @Accept json
// @Produce json
// @Param Authorization header string true "Bearer token"
2024-08-03 07:16:18 +02:00
// @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]
2024-08-03 07:16:18 +02:00
func CardAdd(c *gin.Context) {
card := &db.Card{}
CreateHandler(card, func(src types.DbCard, dst *db.Card) {
dst.Name = src.Name
dst.Balance = src.Balance
dst.HaveCreditLine = src.HaveCreditLine
dst.CreditLine = src.CreditLine
})(c)
2024-08-03 07:16:18 +02:00
}
// @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.Balance = src.Balance
dst.CreditLine = src.CreditLine
dst.HaveCreditLine = src.HaveCreditLine
},
func(inp *db.Card) types.DbCard {
return types.DbCard{
ID: inp.ID,
Name: inp.Name,
Balance: inp.Balance,
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
2024-08-03 08:54:29 +02:00
// @Router /card/delete/:id [delete]
func CardDeleteId(c *gin.Context) {
DeleteHandler[*db.Card]()(c)
}