mirror of
https://github.com/getAlby/lndhub.go.git
synced 2025-12-19 13:44:53 +01:00
79 lines
2.1 KiB
Go
79 lines
2.1 KiB
Go
package controllers
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/getAlby/lndhub.go/lib/responses"
|
|
"github.com/getAlby/lndhub.go/lib/service"
|
|
"github.com/labstack/echo/v4"
|
|
)
|
|
|
|
// AuthController : AuthController struct
|
|
type AuthController struct {
|
|
svc *service.LndhubService
|
|
}
|
|
|
|
func NewAuthController(svc *service.LndhubService) *AuthController {
|
|
return &AuthController{
|
|
svc: svc,
|
|
}
|
|
}
|
|
|
|
type AuthRequestBody struct {
|
|
Login string `json:"login"`
|
|
Password string `json:"password"`
|
|
RefreshToken string `json:"refresh_token"`
|
|
}
|
|
type AuthResponseBody struct {
|
|
RefreshToken string `json:"refresh_token"`
|
|
AccessToken string `json:"access_token"`
|
|
}
|
|
|
|
// Auth godoc
|
|
// @Summary Authenticate
|
|
// @Description Exchanges a login + password for a token
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Tags Account
|
|
// @Param AuthRequestBody body AuthRequestBody false "Login and password"
|
|
// @Success 200 {object} AuthResponseBody
|
|
// @Failure 400 {object} responses.ErrorResponse
|
|
// @Failure 500 {object} responses.ErrorResponse
|
|
// @Router /auth [post]
|
|
func (controller *AuthController) Auth(c echo.Context) error {
|
|
|
|
var body AuthRequestBody
|
|
|
|
if err := c.Bind(&body); err != nil {
|
|
c.Logger().Errorf("Failed to load auth user request body: %v", err)
|
|
return c.JSON(http.StatusBadRequest, responses.BadArgumentsError)
|
|
}
|
|
if err := c.Validate(&body); err != nil {
|
|
return c.JSON(http.StatusBadRequest, responses.BadArgumentsError)
|
|
}
|
|
|
|
if body.Login == "" || body.Password == "" {
|
|
// To support Swagger we also look in the Form data
|
|
params, err := c.FormParams()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
login := params.Get("login")
|
|
password := params.Get("password")
|
|
if login != "" && password != "" {
|
|
body.Login = login
|
|
body.Password = password
|
|
}
|
|
}
|
|
|
|
accessToken, refreshToken, err := controller.svc.GenerateToken(c.Request().Context(), body.Login, body.Password, body.RefreshToken)
|
|
if err != nil {
|
|
return c.JSON(http.StatusUnauthorized, responses.BadAuthError)
|
|
}
|
|
|
|
return c.JSON(http.StatusOK, &AuthResponseBody{
|
|
RefreshToken: refreshToken,
|
|
AccessToken: accessToken,
|
|
})
|
|
}
|