mirror of
https://github.com/FJurmanovic/wallet-go-api.git
synced 2026-02-06 06:08:16 +00:00
85 lines
1.8 KiB
Go
85 lines
1.8 KiB
Go
package controllers
|
|
|
|
import (
|
|
"net/http"
|
|
"wallet-api/pkg/models"
|
|
"wallet-api/pkg/services"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type TransactionController struct {
|
|
TransactionService *services.TransactionService
|
|
}
|
|
|
|
// Initializes TransactionController.
|
|
func NewTransactionController(as *services.TransactionService, s *gin.RouterGroup) *TransactionController {
|
|
wc := new(TransactionController)
|
|
wc.TransactionService = as
|
|
|
|
s.POST("", wc.New)
|
|
s.GET("", wc.GetAll)
|
|
s.PUT("/:id", wc.Edit)
|
|
s.GET("/:id", wc.Get)
|
|
|
|
return wc
|
|
}
|
|
|
|
// ROUTE (POST /transactions)
|
|
func (wc *TransactionController) New(c *gin.Context) {
|
|
body := new(models.NewTransactionBody)
|
|
if err := c.ShouldBind(body); err != nil {
|
|
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
|
|
return
|
|
}
|
|
|
|
wm := wc.TransactionService.New(c, body)
|
|
c.JSON(200, wm)
|
|
}
|
|
|
|
// ROUTE (GET /transactions)
|
|
func (wc *TransactionController) GetAll(c *gin.Context) {
|
|
body := new(models.Auth)
|
|
auth := c.MustGet("auth")
|
|
body.Id = auth.(*models.Auth).Id
|
|
|
|
fr := FilteredResponse(c)
|
|
wallet, _ := c.GetQuery("walletId")
|
|
|
|
wc.TransactionService.GetAll(c, body, wallet, fr)
|
|
|
|
c.JSON(200, fr)
|
|
}
|
|
|
|
// ROUTE (PUT /transactions/:id)
|
|
func (wc *TransactionController) Edit(c *gin.Context) {
|
|
body := new(models.TransactionEdit)
|
|
if err := c.ShouldBind(body); err != nil {
|
|
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
|
|
return
|
|
}
|
|
|
|
id := c.Param("id")
|
|
|
|
wm := wc.TransactionService.Edit(c, body, id)
|
|
c.JSON(200, wm)
|
|
}
|
|
|
|
// ROUTE (GET /transactions/:id)
|
|
func (wc *TransactionController) Get(c *gin.Context) {
|
|
body := new(models.Auth)
|
|
params := new(models.Params)
|
|
|
|
auth := c.MustGet("auth")
|
|
body.Id = auth.(*models.Auth).Id
|
|
|
|
id := c.Param("id")
|
|
|
|
embed, _ := c.GetQuery("embed")
|
|
params.Embed = embed
|
|
|
|
fr := wc.TransactionService.Get(c, body, id, params)
|
|
|
|
c.JSON(200, fr)
|
|
}
|