mirror of
https://github.com/balzack/databag.git
synced 2025-02-12 03:29:16 +00:00
57 lines
1.5 KiB
Go
57 lines
1.5 KiB
Go
|
package databag
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
"github.com/pquerna/otp"
|
||
|
"github.com/pquerna/otp/totp"
|
||
|
"databag/internal/store"
|
||
|
"gorm.io/gorm"
|
||
|
)
|
||
|
|
||
|
//AddMultiFactorAuth enables multi-factor auth on the given account
|
||
|
func AddMultiFactorAuth(w http.ResponseWriter, r *http.Request) {
|
||
|
|
||
|
account, code, err := ParamAgentToken(r, true)
|
||
|
if err != nil {
|
||
|
ErrResponse(w, code, err)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
key, err := totp.Generate(totp.GenerateOpts{
|
||
|
Issuer: APPMFAIssuer,
|
||
|
AccountName: account.GUID,
|
||
|
Digits: otp.DigitsSix,
|
||
|
Algorithm: otp.AlgorithmSHA256,
|
||
|
})
|
||
|
|
||
|
err = store.DB.Transaction(func(tx *gorm.DB) error {
|
||
|
account.MFAConfirmed = false
|
||
|
if res := tx.Model(account).Update("mfa_confirmed", account.MFAConfirmed).Error; res != nil {
|
||
|
ErrResponse(w, http.StatusInternalServerError, res)
|
||
|
return res
|
||
|
}
|
||
|
account.MFAEnabled = true
|
||
|
if res := tx.Model(account).Update("mfa_enabled", account.MFAEnabled).Error; res != nil {
|
||
|
ErrResponse(w, http.StatusInternalServerError, res)
|
||
|
return res
|
||
|
}
|
||
|
account.MFASecret = key.Secret()
|
||
|
if res := tx.Model(account).Update("mfa_secret", account.MFASecret).Error; res != nil {
|
||
|
ErrResponse(w, http.StatusInternalServerError, res)
|
||
|
return res
|
||
|
}
|
||
|
account.AccountRevision += 1;
|
||
|
if res := tx.Model(&account).Update("account_revision", account.AccountRevision).Error; res != nil {
|
||
|
return res
|
||
|
}
|
||
|
return nil
|
||
|
})
|
||
|
if err != nil {
|
||
|
ErrResponse(w, http.StatusInternalServerError, err)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
SetStatus(account)
|
||
|
WriteResponse(w, account.MFASecret)
|
||
|
}
|