44 lines
837 B
Go
44 lines
837 B
Go
package health
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/go-redis/redis/v8"
|
|
"github.com/gofiber/fiber/v2"
|
|
"github.com/jackc/pgx/v4/pgxpool"
|
|
)
|
|
|
|
type Dependencies struct {
|
|
DB *pgxpool.Pool
|
|
Redis *redis.Client
|
|
Context *context.Context
|
|
}
|
|
|
|
func (d *Dependencies) Health(c *fiber.Ctx) error {
|
|
conn, err := d.DB.Acquire(*d.Context)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer conn.Release()
|
|
|
|
// Ping REDIS database
|
|
err = d.Redis.Ping(*d.Context).Err()
|
|
if err != nil {
|
|
return c.
|
|
Status(fiber.StatusServiceUnavailable).
|
|
JSON(Error{
|
|
Error: "REDIS: " + err.Error(),
|
|
})
|
|
}
|
|
|
|
_, err = conn.Query(*d.Context, "SELECT \"id\" FROM \"jokesbapak2\" LIMIT 1")
|
|
if err != nil {
|
|
return c.
|
|
Status(fiber.StatusServiceUnavailable).
|
|
JSON(Error{
|
|
Error: "POSTGRESQL: " + err.Error(),
|
|
})
|
|
}
|
|
return c.SendStatus(fiber.StatusOK)
|
|
}
|