two_factor.go 790 B

12345678910111213141516171819202122232425262728293031323334
  1. // Copyright 2017 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package errors
  5. import "fmt"
  6. type TwoFactorNotFound struct {
  7. UserID int64
  8. }
  9. func IsTwoFactorNotFound(err error) bool {
  10. _, ok := err.(TwoFactorNotFound)
  11. return ok
  12. }
  13. func (err TwoFactorNotFound) Error() string {
  14. return fmt.Sprintf("two-factor authentication does not found [user_id: %d]", err.UserID)
  15. }
  16. type TwoFactorRecoveryCodeNotFound struct {
  17. Code string
  18. }
  19. func IsTwoFactorRecoveryCodeNotFound(err error) bool {
  20. _, ok := err.(TwoFactorRecoveryCodeNotFound)
  21. return ok
  22. }
  23. func (err TwoFactorRecoveryCodeNotFound) Error() string {
  24. return fmt.Sprintf("two-factor recovery code does not found [code: %s]", err.Code)
  25. }