mirror of
https://github.com/pocketbase/pocketbase.git
synced 2025-01-10 00:43:36 +02:00
95 lines
2.6 KiB
Go
95 lines
2.6 KiB
Go
|
package forms
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"time"
|
||
|
|
||
|
validation "github.com/go-ozzo/ozzo-validation/v4"
|
||
|
"github.com/go-ozzo/ozzo-validation/v4/is"
|
||
|
"github.com/pocketbase/pocketbase/core"
|
||
|
"github.com/pocketbase/pocketbase/daos"
|
||
|
"github.com/pocketbase/pocketbase/mails"
|
||
|
"github.com/pocketbase/pocketbase/models"
|
||
|
"github.com/pocketbase/pocketbase/models/schema"
|
||
|
"github.com/pocketbase/pocketbase/tools/types"
|
||
|
)
|
||
|
|
||
|
// RecordVerificationRequest is an auth record email verification request form.
|
||
|
type RecordVerificationRequest struct {
|
||
|
app core.App
|
||
|
collection *models.Collection
|
||
|
dao *daos.Dao
|
||
|
resendThreshold float64 // in seconds
|
||
|
|
||
|
Email string `form:"email" json:"email"`
|
||
|
}
|
||
|
|
||
|
// NewRecordVerificationRequest creates a new [RecordVerificationRequest]
|
||
|
// form initialized with from the provided [core.App] instance.
|
||
|
//
|
||
|
// If you want to submit the form as part of a transaction,
|
||
|
// you can change the default Dao via [SetDao()].
|
||
|
func NewRecordVerificationRequest(app core.App, collection *models.Collection) *RecordVerificationRequest {
|
||
|
return &RecordVerificationRequest{
|
||
|
app: app,
|
||
|
dao: app.Dao(),
|
||
|
collection: collection,
|
||
|
resendThreshold: 120, // 2 min
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// SetDao replaces the default form Dao instance with the provided one.
|
||
|
func (form *RecordVerificationRequest) SetDao(dao *daos.Dao) {
|
||
|
form.dao = dao
|
||
|
}
|
||
|
|
||
|
// Validate makes the form validatable by implementing [validation.Validatable] interface.
|
||
|
//
|
||
|
// // This method doesn't verify that auth record with `form.Email` exists (this is done on Submit).
|
||
|
func (form *RecordVerificationRequest) Validate() error {
|
||
|
return validation.ValidateStruct(form,
|
||
|
validation.Field(
|
||
|
&form.Email,
|
||
|
validation.Required,
|
||
|
validation.Length(1, 255),
|
||
|
is.EmailFormat,
|
||
|
),
|
||
|
)
|
||
|
}
|
||
|
|
||
|
// Submit validates and sends a verification request email
|
||
|
// to the `form.Email` auth record.
|
||
|
func (form *RecordVerificationRequest) Submit() error {
|
||
|
if err := form.Validate(); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
record, err := form.dao.FindFirstRecordByData(
|
||
|
form.collection.Id,
|
||
|
schema.FieldNameEmail,
|
||
|
form.Email,
|
||
|
)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
if record.GetBool(schema.FieldNameVerified) {
|
||
|
return nil // already verified
|
||
|
}
|
||
|
|
||
|
now := time.Now().UTC()
|
||
|
lastVerificationSentAt := record.LastVerificationSentAt().Time()
|
||
|
if (now.Sub(lastVerificationSentAt)).Seconds() < form.resendThreshold {
|
||
|
return errors.New("A verification email was already sent.")
|
||
|
}
|
||
|
|
||
|
if err := mails.SendRecordVerification(form.app, record); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
// update last sent timestamp
|
||
|
record.Set(schema.FieldNameLastVerificationSentAt, types.NowDateTime())
|
||
|
|
||
|
return form.dao.SaveRecord(record)
|
||
|
}
|