xmr-remote-nodes/handler/middlewares.go

31 lines
591 B
Go
Raw Normal View History

package handler
import (
"xmr-remote-nodes/internal/monero"
2024-05-04 12:52:22 +00:00
"github.com/gofiber/fiber/v2"
)
2024-05-04 12:52:22 +00:00
func CheckProber(c *fiber.Ctx) error {
key := c.Get("X-Prober-Api-Key")
if key == "" {
return c.Status(fiber.StatusUnauthorized).JSON(fiber.Map{
"status": "error",
"message": "Unauthorized",
"data": nil,
})
}
prober, err := monero.NewProber().CheckApi(key)
2024-05-04 12:52:22 +00:00
if err != nil {
return c.Status(fiber.StatusUnauthorized).JSON(fiber.Map{
"status": "error",
"message": "No API key match",
"data": nil,
})
}
2024-05-04 18:42:47 +00:00
c.Locals("prober_id", prober.Id)
2024-05-04 12:52:22 +00:00
return c.Next()
}