mirror of
https://github.com/diamondburned/arikawa.git
synced 2024-11-05 14:35:41 +00:00
43 lines
985 B
Go
43 lines
985 B
Go
|
package api
|
||
|
|
||
|
import "github.com/diamondburned/arikawa/internal/httputil"
|
||
|
|
||
|
const (
|
||
|
EndpointAuth = Endpoint + "auth/"
|
||
|
EndpointLogin = EndpointAuth + "login"
|
||
|
EndpointTOTP = EndpointAuth + "mfa/totp"
|
||
|
)
|
||
|
|
||
|
type LoginResponse struct {
|
||
|
MFA bool `json:"mfa"`
|
||
|
SMS bool `json:"sms"`
|
||
|
Ticket string `json:"ticket"`
|
||
|
Token string `json:"token"`
|
||
|
}
|
||
|
|
||
|
func (c *Client) Login(email, password string) (*LoginResponse, error) {
|
||
|
var param struct {
|
||
|
Email string `json:"email"`
|
||
|
Password string `json:"password"`
|
||
|
}
|
||
|
param.Email = email
|
||
|
param.Password = password
|
||
|
|
||
|
var r *LoginResponse
|
||
|
return r, c.RequestJSON(&r, "POST", EndpointLogin,
|
||
|
httputil.WithJSONBody(c, param))
|
||
|
}
|
||
|
|
||
|
func (c *Client) TOTP(code, ticket string) (*LoginResponse, error) {
|
||
|
var param struct {
|
||
|
Code string `json:"code"`
|
||
|
Ticket string `json:"ticket"`
|
||
|
}
|
||
|
param.Code = code
|
||
|
param.Ticket = ticket
|
||
|
|
||
|
var r *LoginResponse
|
||
|
return r, c.RequestJSON(&r, "POST", EndpointTOTP,
|
||
|
httputil.WithJSONBody(c, param))
|
||
|
}
|