mirror of
https://github.com/openziti/zrok.git
synced 2025-03-11 21:38:47 +01:00
better, more resilient account request processing (#50)
This commit is contained in:
parent
3ac9541463
commit
ec6afaaa3d
@ -22,22 +22,38 @@ func (self *createAccountHandler) Handle(params identity.CreateAccountParams) mi
|
|||||||
logrus.Errorf("missing email")
|
logrus.Errorf("missing email")
|
||||||
return identity.NewCreateAccountBadRequest().WithPayload("missing email")
|
return identity.NewCreateAccountBadRequest().WithPayload("missing email")
|
||||||
}
|
}
|
||||||
|
|
||||||
token := createToken()
|
token := createToken()
|
||||||
if err := sendVerificationEmail(params.Body.Email, token, self.cfg); err != nil {
|
|
||||||
logrus.Error(err)
|
|
||||||
return identity.NewCreateAccountInternalServerError().WithPayload(rest_model_zrok.ErrorMessage(err.Error()))
|
|
||||||
}
|
|
||||||
ar := &store.AccountRequest{
|
ar := &store.AccountRequest{
|
||||||
Token: token,
|
Token: token,
|
||||||
Email: params.Body.Email,
|
Email: params.Body.Email,
|
||||||
SourceAddress: params.HTTPRequest.RemoteAddr,
|
SourceAddress: params.HTTPRequest.RemoteAddr,
|
||||||
}
|
}
|
||||||
|
|
||||||
tx, err := str.Begin()
|
tx, err := str.Begin()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logrus.Error(err)
|
logrus.Error(err)
|
||||||
return identity.NewCreateAccountInternalServerError().WithPayload(rest_model_zrok.ErrorMessage(err.Error()))
|
return identity.NewCreateAccountInternalServerError().WithPayload(rest_model_zrok.ErrorMessage(err.Error()))
|
||||||
}
|
}
|
||||||
defer func() { _ = tx.Rollback() }()
|
defer func() { _ = tx.Rollback() }()
|
||||||
|
|
||||||
|
if _, err := str.FindAccountWithEmail(params.Body.Email, tx); err == nil {
|
||||||
|
logrus.Errorf("found account for '%v', cannot process account request", params.Body.Email)
|
||||||
|
return identity.NewCreateAccountBadRequest()
|
||||||
|
} else {
|
||||||
|
logrus.Infof("no account found for '%v': %v", params.Body.Email, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if oldAr, err := str.FindAccountRequestWithEmail(params.Body.Email, tx); err == nil {
|
||||||
|
logrus.Warnf("found previous account request for '%v', removing", params.Body.Email)
|
||||||
|
if err := str.DeleteAccountRequest(oldAr.Id, tx); err != nil {
|
||||||
|
logrus.Errorf("error deleteing previous account request for '%v': %v", params.Body.Email, err)
|
||||||
|
return identity.NewCreateAccountInternalServerError().WithPayload(rest_model_zrok.ErrorMessage(err.Error()))
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
logrus.Warnf("error finding previous account request for '%v': %v", params.Body.Email, err)
|
||||||
|
}
|
||||||
|
|
||||||
if _, err := str.CreateAccountRequest(ar, tx); err != nil {
|
if _, err := str.CreateAccountRequest(ar, tx); err != nil {
|
||||||
logrus.Error(err)
|
logrus.Error(err)
|
||||||
return identity.NewCreateAccountInternalServerError().WithPayload(rest_model_zrok.ErrorMessage(err.Error()))
|
return identity.NewCreateAccountInternalServerError().WithPayload(rest_model_zrok.ErrorMessage(err.Error()))
|
||||||
@ -46,5 +62,11 @@ func (self *createAccountHandler) Handle(params identity.CreateAccountParams) mi
|
|||||||
logrus.Error(err)
|
logrus.Error(err)
|
||||||
return identity.NewCreateAccountInternalServerError().WithPayload(rest_model_zrok.ErrorMessage(err.Error()))
|
return identity.NewCreateAccountInternalServerError().WithPayload(rest_model_zrok.ErrorMessage(err.Error()))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if err := sendVerificationEmail(params.Body.Email, token, self.cfg); err != nil {
|
||||||
|
logrus.Error(err)
|
||||||
|
return identity.NewCreateAccountInternalServerError().WithPayload(rest_model_zrok.ErrorMessage(err.Error()))
|
||||||
|
}
|
||||||
|
|
||||||
return identity.NewCreateAccountCreated()
|
return identity.NewCreateAccountCreated()
|
||||||
}
|
}
|
||||||
|
@ -43,3 +43,23 @@ func (self *Store) FindAccountRequestWithToken(token string, tx *sqlx.Tx) (*Acco
|
|||||||
}
|
}
|
||||||
return ar, nil
|
return ar, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (self *Store) FindAccountRequestWithEmail(email string, tx *sqlx.Tx) (*AccountRequest, error) {
|
||||||
|
ar := &AccountRequest{}
|
||||||
|
if err := tx.QueryRowx("select * from account_requests where email = ?", email).StructScan(ar); err != nil {
|
||||||
|
return nil, errors.Wrap(err, "error selecting account_request by email")
|
||||||
|
}
|
||||||
|
return ar, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (self *Store) DeleteAccountRequest(id int, tx *sqlx.Tx) error {
|
||||||
|
stmt, err := tx.Prepare("delete from account_requests where id = ?")
|
||||||
|
if err != nil {
|
||||||
|
return errors.Wrap(err, "error preparing account_requests delete statement")
|
||||||
|
}
|
||||||
|
_, err = stmt.Exec(id)
|
||||||
|
if err != nil {
|
||||||
|
return errors.Wrap(err, "error executing account_requests delete statement")
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user