storj/satellite/referrals/users.go
Egon Elbre 0a69da4ff1 all: switch to storj.io/common/uuid
Change-Id: I178a0a8dac691e57bce317b91411292fb3c40c9f
2020-03-31 19:16:41 +03:00

47 lines
1.1 KiB
Go

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
package referrals
import (
"net/mail"
"github.com/zeebo/errs"
"storj.io/common/uuid"
"storj.io/storj/satellite/console"
)
// ErrValidation validation related error class
var ErrValidation = errs.Class("validation error")
// CreateUser contains information that's necessary for creating a new user through referral program
type CreateUser struct {
FullName string `json:"fullName"`
ShortName string `json:"shortName"`
Email string `json:"email"`
Password string `json:"password"`
ReferralToken string `json:"referralToken"`
}
// IsValid checks CreateUser validity and returns error describing whats wrong.
func (user *CreateUser) IsValid() error {
var errors []error
errors = append(errors, console.ValidateFullName(user.FullName))
errors = append(errors, console.ValidatePassword(user.Password))
// validate email
_, err := mail.ParseAddress(user.Email)
errors = append(errors, err)
if user.ReferralToken != "" {
_, err := uuid.Parse(user.ReferralToken)
if err != nil {
errors = append(errors, err)
}
}
return errs.Combine(errors...)
}