1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
package linodego
import (
"context"
"encoding/json"
"time"
"github.com/linode/linodego/internal/parseabletime"
)
// TwoFactorSecret contains fields returned by CreateTwoFactorSecret
type TwoFactorSecret struct {
Expiry *time.Time `json:"expiry"`
Secret string `json:"secret"`
}
// ConfirmTwoFactorOptions contains fields used by ConfirmTwoFactor
type ConfirmTwoFactorOptions struct {
TFACode string `json:"tfa_code"`
}
// ConfirmTwoFactorResponse contains fields returned by ConfirmTwoFactor
type ConfirmTwoFactorResponse struct {
Scratch string `json:"scratch"`
}
func (s *TwoFactorSecret) UnmarshalJSON(b []byte) error {
type Mask TwoFactorSecret
p := struct {
*Mask
Expiry *parseabletime.ParseableTime `json:"expiry"`
}{
Mask: (*Mask)(s),
}
if err := json.Unmarshal(b, &p); err != nil {
return err
}
s.Expiry = (*time.Time)(p.Expiry)
return nil
}
// CreateTwoFactorSecret generates a Two Factor secret for your User.
func (c *Client) CreateTwoFactorSecret(ctx context.Context) (*TwoFactorSecret, error) {
return doPOSTRequest[TwoFactorSecret, any](ctx, c, "profile/tfa-enable")
}
// DisableTwoFactor disables Two Factor Authentication for your User.
func (c *Client) DisableTwoFactor(ctx context.Context) error {
return doPOSTRequestNoRequestResponseBody(ctx, c, "profile/tfa-disable")
}
// ConfirmTwoFactor confirms that you can successfully generate Two Factor codes and enables TFA on your Account.
func (c *Client) ConfirmTwoFactor(ctx context.Context, opts ConfirmTwoFactorOptions) (*ConfirmTwoFactorResponse, error) {
return doPOSTRequest[ConfirmTwoFactorResponse](ctx, c, "profile/tfa-enable-confirm", opts)
}
|