2019-04-24 21:52:08 +00:00
|
|
|
package duo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"net/url"
|
|
|
|
|
2020-04-05 12:37:21 +00:00
|
|
|
duoapi "github.com/duosecurity/duo_api_golang"
|
2023-04-15 05:03:14 +00:00
|
|
|
"github.com/valyala/fasthttp"
|
2020-03-01 00:51:11 +00:00
|
|
|
|
2021-08-11 01:04:35 +00:00
|
|
|
"github.com/authelia/authelia/v4/internal/middlewares"
|
2023-01-25 09:36:40 +00:00
|
|
|
"github.com/authelia/authelia/v4/internal/session"
|
2019-04-24 21:52:08 +00:00
|
|
|
)
|
|
|
|
|
2020-05-02 05:06:39 +00:00
|
|
|
// NewDuoAPI create duo API instance.
|
2019-04-24 21:52:08 +00:00
|
|
|
func NewDuoAPI(duoAPI *duoapi.DuoApi) *APIImpl {
|
2022-08-26 21:39:20 +00:00
|
|
|
return &APIImpl{
|
|
|
|
DuoApi: duoAPI,
|
|
|
|
}
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
|
|
|
|
2023-01-25 09:36:40 +00:00
|
|
|
// Call performs a request to the DuoAPI.
|
|
|
|
func (d *APIImpl) Call(ctx *middlewares.AutheliaCtx, userSession *session.UserSession, values url.Values, method string, path string) (*Response, error) {
|
2020-05-05 19:35:32 +00:00
|
|
|
var response Response
|
2019-04-24 21:52:08 +00:00
|
|
|
|
2021-12-01 03:32:58 +00:00
|
|
|
_, responseBytes, err := d.DuoApi.SignedCall(method, path, values)
|
2019-04-24 21:52:08 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2023-01-25 09:36:40 +00:00
|
|
|
ctx.Logger.Tracef("Duo endpoint: %s response raw data for %s from IP %s: %s", path, userSession.Username, ctx.RemoteIP().String(), string(responseBytes))
|
2020-03-01 00:51:11 +00:00
|
|
|
|
2019-04-24 21:52:08 +00:00
|
|
|
err = json.Unmarshal(responseBytes, &response)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2021-12-01 03:32:58 +00:00
|
|
|
if response.Stat == "FAIL" {
|
|
|
|
ctx.Logger.Warnf(
|
|
|
|
"Duo Push Auth failed to process the auth request for %s from %s: %s (%s), error code %d.",
|
2023-01-25 09:36:40 +00:00
|
|
|
userSession.Username, ctx.RemoteIP().String(),
|
2021-12-01 03:32:58 +00:00
|
|
|
response.Message, response.MessageDetail, response.Code)
|
|
|
|
}
|
|
|
|
|
2019-04-24 21:52:08 +00:00
|
|
|
return &response, nil
|
|
|
|
}
|
2021-12-01 03:32:58 +00:00
|
|
|
|
2023-01-25 09:36:40 +00:00
|
|
|
// PreAuthCall performs a preauth request to the DuoAPI.
|
|
|
|
func (d *APIImpl) PreAuthCall(ctx *middlewares.AutheliaCtx, userSession *session.UserSession, values url.Values) (*PreAuthResponse, error) {
|
2021-12-01 03:32:58 +00:00
|
|
|
var preAuthResponse PreAuthResponse
|
|
|
|
|
2023-04-15 05:03:14 +00:00
|
|
|
response, err := d.Call(ctx, userSession, values, fasthttp.MethodPost, "/auth/v2/preauth")
|
2021-12-01 03:32:58 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.Unmarshal(response.Response, &preAuthResponse)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &preAuthResponse, nil
|
|
|
|
}
|
|
|
|
|
2023-01-25 09:36:40 +00:00
|
|
|
// AuthCall performs an auth request to the DuoAPI.
|
|
|
|
func (d *APIImpl) AuthCall(ctx *middlewares.AutheliaCtx, userSession *session.UserSession, values url.Values) (*AuthResponse, error) {
|
2021-12-01 03:32:58 +00:00
|
|
|
var authResponse AuthResponse
|
|
|
|
|
2023-04-15 05:03:14 +00:00
|
|
|
response, err := d.Call(ctx, userSession, values, fasthttp.MethodPost, "/auth/v2/auth")
|
2021-12-01 03:32:58 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.Unmarshal(response.Response, &authResponse)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &authResponse, nil
|
|
|
|
}
|