[MM-33395] Invalidate email tokens (#17069)

* [MM-33395] Invalidate existing verify email tokens when creating a new one

* Update store layers

* Addressing review comments

* Fix linter

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Этот коммит содержится в:
Miguel de la Cruz
2021-07-09 14:31:34 +02:00
коммит произвёл GitHub
родитель b5266c37dc
Коммит 5b99df7bcd
10 изменённых файлов: 179 добавлений и 1 удалений

Просмотреть файл

@@ -8405,6 +8405,22 @@ func (s *TimerLayerTokenStore) Delete(token string) error {
return err
}
func (s *TimerLayerTokenStore) GetAllTokensByType(tokenType string) ([]*model.Token, error) {
start := timemodule.Now()
result, err := s.TokenStore.GetAllTokensByType(tokenType)
elapsed := float64(timemodule.Since(start)) / float64(timemodule.Second)
if s.Root.Metrics != nil {
success := "false"
if err == nil {
success = "true"
}
s.Root.Metrics.ObserveStoreMethodDuration("TokenStore.GetAllTokensByType", success, elapsed)
}
return result, err
}
func (s *TimerLayerTokenStore) GetByToken(token string) (*model.Token, error) {
start := timemodule.Now()