mirror of
https://github.com/grassrootseconomics/cic-custodial.git
synced 2024-11-13 10:26:47 +01:00
Mohammed Sohail
40cb86f522
* otx can nw be tracked at /api/track/:trackingId * moved queries to queries folder * fixed validation error check in ErrorHandler * added enum package with enum types * updated migrations: added enum tables
38 lines
751 B
Go
38 lines
751 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/grassrootseconomics/cic-custodial/internal/store"
|
|
"github.com/labstack/echo/v4"
|
|
)
|
|
|
|
func TxStatus(store store.Store) func(echo.Context) error {
|
|
return func(c echo.Context) error {
|
|
var txStatusRequest struct {
|
|
TrackingId string `param:"trackingId" validate:"required,uuid"`
|
|
}
|
|
|
|
if err := c.Bind(&txStatusRequest); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := c.Validate(txStatusRequest); err != nil {
|
|
return err
|
|
}
|
|
|
|
// TODO: handle potential timeouts
|
|
txs, err := store.GetTxStatusByTrackingId(c.Request().Context(), txStatusRequest.TrackingId)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return c.JSON(http.StatusOK, OkResp{
|
|
Ok: true,
|
|
Result: H{
|
|
"transactions": txs,
|
|
},
|
|
})
|
|
}
|
|
}
|