32 lines
768 B
Go
32 lines
768 B
Go
package duo
|
|
|
|
import (
|
|
"net/url"
|
|
|
|
"github.com/authelia/authelia/internal/middlewares"
|
|
)
|
|
import "github.com/duosecurity/duo_api_golang"
|
|
|
|
// API interface wrapping duo api library for testing purpose
|
|
type API interface {
|
|
Call(values url.Values, ctx *middlewares.AutheliaCtx) (*Response, error)
|
|
}
|
|
|
|
// APIImpl implementation of DuoAPI interface
|
|
type APIImpl struct {
|
|
*duoapi.DuoApi
|
|
}
|
|
|
|
// Response response coming from Duo API
|
|
type Response struct {
|
|
Response struct {
|
|
Result string `json:"result"`
|
|
Status string `json:"status"`
|
|
StatusMessage string `json:"status_msg"`
|
|
} `json:"response"`
|
|
Code int `json:"code"`
|
|
Message string `json:"message"`
|
|
MessageDetail string `json:"message_detail"`
|
|
Stat string `json:"stat"`
|
|
}
|