mirror of
https://github.com/pocketbase/pocketbase.git
synced 2025-04-03 10:06:19 +02:00
added record.PasswordHash() getter
This commit is contained in:
parent
65693d1916
commit
46dc6cc47c
@ -586,6 +586,11 @@ func (m *Record) SetLastVerificationSentAt(dateTime types.DateTime) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// PasswordHash returns the "passwordHash" auth record data value.
|
||||||
|
func (m *Record) PasswordHash() string {
|
||||||
|
return m.GetString(schema.FieldNamePasswordHash)
|
||||||
|
}
|
||||||
|
|
||||||
// ValidatePassword validates a plain password against the auth record password.
|
// ValidatePassword validates a plain password against the auth record password.
|
||||||
//
|
//
|
||||||
// Returns false if the password is incorrect or record is not from an auth collection.
|
// Returns false if the password is incorrect or record is not from an auth collection.
|
||||||
@ -594,10 +599,8 @@ func (m *Record) ValidatePassword(password string) bool {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
err := bcrypt.CompareHashAndPassword(
|
err := bcrypt.CompareHashAndPassword([]byte(m.PasswordHash()), []byte(password))
|
||||||
[]byte(m.GetString(schema.FieldNamePasswordHash)),
|
|
||||||
[]byte(password),
|
|
||||||
)
|
|
||||||
return err == nil
|
return err == nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1603,6 +1603,20 @@ func TestRecordLastVerificationSentAt(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestRecordPasswordHash(t *testing.T) {
|
||||||
|
m := models.NewRecord(&models.Collection{})
|
||||||
|
|
||||||
|
if v := m.PasswordHash(); v != "" {
|
||||||
|
t.Errorf("Expected PasswordHash() to be empty, got %v", v)
|
||||||
|
}
|
||||||
|
|
||||||
|
m.Set(schema.FieldNamePasswordHash, "test")
|
||||||
|
|
||||||
|
if v := m.PasswordHash(); v != "test" {
|
||||||
|
t.Errorf("Expected PasswordHash() to be 'test', got %v", v)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func TestRecordValidatePassword(t *testing.T) {
|
func TestRecordValidatePassword(t *testing.T) {
|
||||||
// 123456
|
// 123456
|
||||||
hash := "$2a$10$YKU8mPP8sTE3xZrpuM.xQuq27KJ7aIJB2oUeKPsDDqZshbl5g5cDK"
|
hash := "$2a$10$YKU8mPP8sTE3xZrpuM.xQuq27KJ7aIJB2oUeKPsDDqZshbl5g5cDK"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user