494 lines
10 KiB
Go
494 lines
10 KiB
Go
// Copyright (c) 2025 Probo Inc <hello@getprobo.com>.
|
|
//
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
// copyright notice and this permission notice appear in all copies.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
// AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
// OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
// PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
package usrmgr
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"net/url"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/getprobo/probo/pkg/coredata"
|
|
"github.com/getprobo/probo/pkg/crypto/passwdhash"
|
|
"github.com/getprobo/probo/pkg/gid"
|
|
"github.com/getprobo/probo/pkg/statelesstoken"
|
|
"go.gearno.de/kit/pg"
|
|
)
|
|
|
|
type (
|
|
Service struct {
|
|
pg *pg.Client
|
|
hp *passwdhash.Profile
|
|
hostname string
|
|
tokenSecret string
|
|
}
|
|
|
|
ErrInvalidCredentials struct {
|
|
message string
|
|
}
|
|
|
|
ErrInvalidEmail struct {
|
|
email string
|
|
}
|
|
|
|
ErrInvalidPassword struct {
|
|
length int
|
|
}
|
|
|
|
ErrInvalidFullName struct {
|
|
fullName string
|
|
}
|
|
|
|
ErrUserAlreadyExists struct {
|
|
message string
|
|
}
|
|
|
|
ErrSessionNotFound struct {
|
|
message string
|
|
}
|
|
|
|
ErrSessionExpired struct {
|
|
message string
|
|
}
|
|
|
|
ErrInvalidTokenType struct {
|
|
message string
|
|
}
|
|
|
|
EmailConfirmationData struct {
|
|
UserID gid.GID `json:"uid"`
|
|
Email string `json:"email"`
|
|
}
|
|
)
|
|
|
|
// Token types
|
|
const (
|
|
TokenTypeEmailConfirmation = "email_confirmation"
|
|
TokenTypePasswordReset = "password_reset"
|
|
)
|
|
|
|
var (
|
|
signupEmailSubject = "Confirm your email address"
|
|
signupEmailTemplate = `
|
|
Thanks joining Probo!
|
|
Please confirm your email address by clicking the link below[1]
|
|
|
|
[1] %s
|
|
`
|
|
)
|
|
|
|
func (e ErrInvalidCredentials) Error() string {
|
|
return e.message
|
|
}
|
|
|
|
func (e ErrUserAlreadyExists) Error() string {
|
|
return e.message
|
|
}
|
|
|
|
func (e ErrSessionNotFound) Error() string {
|
|
return e.message
|
|
}
|
|
|
|
func (e ErrSessionExpired) Error() string {
|
|
return e.message
|
|
}
|
|
|
|
func (e ErrInvalidEmail) Error() string {
|
|
return fmt.Sprintf("invalid email: %s", e.email)
|
|
}
|
|
|
|
func (e ErrInvalidPassword) Error() string {
|
|
return fmt.Sprintf("invalid password: the length must be at least %d characters", e.length)
|
|
}
|
|
|
|
func (e ErrInvalidFullName) Error() string {
|
|
return fmt.Sprintf("invalid full name: %s", e.fullName)
|
|
}
|
|
|
|
func (e ErrInvalidTokenType) Error() string {
|
|
return e.message
|
|
}
|
|
|
|
func NewService(
|
|
ctx context.Context,
|
|
pgClient *pg.Client,
|
|
hp *passwdhash.Profile,
|
|
tokenSecret string,
|
|
hostname string,
|
|
) (*Service, error) {
|
|
return &Service{
|
|
pg: pgClient,
|
|
hp: hp,
|
|
hostname: hostname,
|
|
tokenSecret: tokenSecret,
|
|
}, nil
|
|
}
|
|
|
|
func (s Service) SignUp(
|
|
ctx context.Context,
|
|
email, password, fullName string,
|
|
) (*coredata.User, *coredata.Session, error) {
|
|
if !strings.Contains(email, "@") {
|
|
return nil, nil, &ErrInvalidEmail{email}
|
|
}
|
|
|
|
if len(password) < 8 {
|
|
return nil, nil, &ErrInvalidPassword{len(password)}
|
|
}
|
|
|
|
if fullName == "" {
|
|
return nil, nil, &ErrInvalidFullName{fullName}
|
|
}
|
|
|
|
hashedPassword, err := s.hp.HashPassword([]byte(password))
|
|
if err != nil {
|
|
return nil, nil, fmt.Errorf("cannot hash password: %w", err)
|
|
}
|
|
|
|
now := time.Now()
|
|
user := &coredata.User{
|
|
ID: gid.New(gid.NilTenant, coredata.UserEntityType),
|
|
EmailAddress: email,
|
|
HashedPassword: hashedPassword,
|
|
FullName: fullName,
|
|
CreatedAt: now,
|
|
UpdatedAt: now,
|
|
}
|
|
|
|
session := &coredata.Session{
|
|
ID: gid.New(gid.NilTenant, coredata.SessionEntityType),
|
|
UserID: user.ID,
|
|
ExpiredAt: now.Add(24 * time.Hour),
|
|
CreatedAt: now,
|
|
UpdatedAt: now,
|
|
}
|
|
|
|
confirmationToken, err := statelesstoken.NewToken(
|
|
s.tokenSecret,
|
|
TokenTypeEmailConfirmation,
|
|
1*time.Hour,
|
|
EmailConfirmationData{UserID: user.ID, Email: user.EmailAddress},
|
|
)
|
|
if err != nil {
|
|
return nil, nil, fmt.Errorf("cannot generate confirmation token: %w", err)
|
|
}
|
|
|
|
confirmationEmailUrl := url.URL{
|
|
Host: s.hostname,
|
|
Path: "/confirm-email",
|
|
RawQuery: url.Values{
|
|
"token": []string{confirmationToken},
|
|
}.Encode(),
|
|
}
|
|
|
|
confirmationEmail := coredata.NewEmail(
|
|
user.FullName,
|
|
user.EmailAddress,
|
|
signupEmailSubject,
|
|
fmt.Sprintf(signupEmailTemplate, confirmationEmailUrl.String()),
|
|
)
|
|
|
|
err = s.pg.WithTx(
|
|
ctx,
|
|
func(tx pg.Conn) error {
|
|
if err := user.Insert(ctx, tx); err != nil {
|
|
return fmt.Errorf("cannot insert user: %w", err)
|
|
}
|
|
|
|
if err := session.Insert(ctx, tx); err != nil {
|
|
return fmt.Errorf("cannot insert session: %w", err)
|
|
}
|
|
|
|
if err := confirmationEmail.Insert(ctx, tx); err != nil {
|
|
return fmt.Errorf("cannot insert email: %w", err)
|
|
}
|
|
|
|
return nil
|
|
},
|
|
)
|
|
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
return user, session, nil
|
|
}
|
|
|
|
func (s Service) SignIn(
|
|
ctx context.Context,
|
|
email, password string,
|
|
) (*coredata.User, *coredata.Session, error) {
|
|
now := time.Now()
|
|
user := &coredata.User{}
|
|
session := &coredata.Session{
|
|
ID: gid.New(gid.NilTenant, coredata.SessionEntityType),
|
|
UserID: gid.Nil,
|
|
ExpiredAt: now.Add(24 * time.Hour),
|
|
CreatedAt: now,
|
|
UpdatedAt: now,
|
|
}
|
|
|
|
err := s.pg.WithTx(
|
|
ctx,
|
|
func(tx pg.Conn) error {
|
|
if err := user.LoadByEmail(ctx, tx, email); err != nil {
|
|
var errUserNotFound *coredata.ErrUserNotFound
|
|
|
|
if errors.As(err, &errUserNotFound) {
|
|
return &ErrInvalidCredentials{message: "invalid email or password"}
|
|
}
|
|
|
|
return fmt.Errorf("cannot load user by email: %w", err)
|
|
}
|
|
|
|
ok, err := s.hp.ComparePasswordAndHash([]byte(password), user.HashedPassword)
|
|
if err != nil {
|
|
return fmt.Errorf("cannot compare password: %w", err)
|
|
}
|
|
|
|
if !ok {
|
|
return &ErrInvalidCredentials{message: "invalid email or password"}
|
|
}
|
|
|
|
session.UserID = user.ID
|
|
|
|
if err := session.Insert(ctx, tx); err != nil {
|
|
return fmt.Errorf("cannot insert session: %w", err)
|
|
}
|
|
|
|
return nil
|
|
},
|
|
)
|
|
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
return user, session, nil
|
|
}
|
|
|
|
func (s Service) SignOut(
|
|
ctx context.Context,
|
|
sessionID gid.GID,
|
|
) error {
|
|
return s.pg.WithConn(
|
|
ctx,
|
|
func(tx pg.Conn) error {
|
|
err := coredata.DeleteSession(ctx, tx, sessionID)
|
|
if err != nil {
|
|
return fmt.Errorf("cannot delete session: %w", err)
|
|
}
|
|
|
|
return nil
|
|
},
|
|
)
|
|
}
|
|
|
|
func (s Service) GetSession(
|
|
ctx context.Context,
|
|
sessionID gid.GID,
|
|
) (*coredata.Session, error) {
|
|
session := &coredata.Session{}
|
|
|
|
err := s.pg.WithTx(
|
|
ctx,
|
|
func(tx pg.Conn) error {
|
|
if err := session.LoadByID(ctx, tx, sessionID); err != nil {
|
|
return &ErrSessionNotFound{message: "session not found"}
|
|
}
|
|
|
|
if time.Now().After(session.ExpiredAt) {
|
|
if err := coredata.DeleteSession(ctx, tx, sessionID); err != nil {
|
|
return fmt.Errorf("cannot delete expired session: %w", err)
|
|
}
|
|
return &ErrSessionExpired{message: "session expired"}
|
|
}
|
|
|
|
return nil
|
|
},
|
|
)
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return session, nil
|
|
}
|
|
|
|
func (s Service) GetUserByID(
|
|
ctx context.Context,
|
|
userID gid.GID,
|
|
) (*coredata.User, error) {
|
|
user := &coredata.User{}
|
|
|
|
err := s.pg.WithTx(
|
|
ctx,
|
|
func(tx pg.Conn) error {
|
|
if err := user.LoadByID(ctx, tx, userID); err != nil {
|
|
return fmt.Errorf("user not found: %w", err)
|
|
}
|
|
return nil
|
|
},
|
|
)
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return user, nil
|
|
}
|
|
|
|
func (s Service) GetUserBySession(
|
|
ctx context.Context,
|
|
sessionID gid.GID,
|
|
) (*coredata.User, error) {
|
|
session, err := s.GetSession(ctx, sessionID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return s.GetUserByID(ctx, session.UserID)
|
|
}
|
|
|
|
func (s Service) ListOrganizationsForUserID(
|
|
ctx context.Context,
|
|
userID gid.GID,
|
|
) (coredata.Organizations, error) {
|
|
|
|
uos := coredata.UserOrganizations{}
|
|
organizations := []*coredata.Organization{}
|
|
|
|
err := s.pg.WithConn(
|
|
ctx,
|
|
func(conn pg.Conn) error {
|
|
if err := uos.ForUserID(ctx, conn, userID); err != nil {
|
|
return fmt.Errorf("cannot list user organizations: %w", err)
|
|
}
|
|
|
|
for _, uo := range uos {
|
|
scope := coredata.NewScope(uo.OrganizationID.TenantID())
|
|
organization := &coredata.Organization{}
|
|
if err := organization.LoadByID(ctx, conn, scope, uo.OrganizationID); err != nil {
|
|
return fmt.Errorf("cannot load organization by id: %w", err)
|
|
}
|
|
organizations = append(organizations, organization)
|
|
}
|
|
|
|
return nil
|
|
},
|
|
)
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return organizations, nil
|
|
}
|
|
|
|
func (s Service) ListTenantsForUserID(
|
|
ctx context.Context,
|
|
userID gid.GID,
|
|
) ([]gid.TenantID, error) {
|
|
|
|
uos := coredata.UserOrganizations{}
|
|
|
|
err := s.pg.WithConn(
|
|
ctx,
|
|
func(tx pg.Conn) error {
|
|
return uos.ForUserID(ctx, tx, userID)
|
|
},
|
|
)
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
tenantIDs := make([]gid.TenantID, len(uos))
|
|
for _, uo := range uos {
|
|
tenantIDs = append(tenantIDs, uo.OrganizationID.TenantID())
|
|
}
|
|
|
|
return tenantIDs, nil
|
|
}
|
|
|
|
func (s Service) EnrollUserInOrganization(
|
|
ctx context.Context,
|
|
userID gid.GID,
|
|
organizationID gid.GID,
|
|
) error {
|
|
|
|
uo := coredata.UserOrganization{
|
|
UserID: userID,
|
|
OrganizationID: organizationID,
|
|
CreatedAt: time.Now(),
|
|
}
|
|
|
|
return s.pg.WithConn(
|
|
ctx,
|
|
func(tx pg.Conn) error {
|
|
return uo.Insert(ctx, tx)
|
|
},
|
|
)
|
|
}
|
|
|
|
func (s Service) UpdateSession(
|
|
ctx context.Context,
|
|
session *coredata.Session,
|
|
) error {
|
|
session.UpdatedAt = time.Now()
|
|
session.ExpiredAt = time.Now().Add(24 * time.Hour)
|
|
|
|
return s.pg.WithTx(
|
|
ctx,
|
|
func(tx pg.Conn) error {
|
|
return session.Update(ctx, tx)
|
|
},
|
|
)
|
|
}
|
|
|
|
func (s Service) ConfirmEmail(ctx context.Context, tokenString string) error {
|
|
token, err := statelesstoken.ValidateToken[EmailConfirmationData](
|
|
s.tokenSecret,
|
|
TokenTypeEmailConfirmation,
|
|
tokenString,
|
|
)
|
|
if err != nil {
|
|
return fmt.Errorf("cannot validate email confirmation token: %w", err)
|
|
}
|
|
|
|
return s.pg.WithTx(
|
|
ctx,
|
|
func(tx pg.Conn) error {
|
|
user := &coredata.User{}
|
|
|
|
if err := user.LoadByID(ctx, tx, token.Data.UserID); err != nil {
|
|
return fmt.Errorf("user not found: %w", err)
|
|
}
|
|
|
|
if user.EmailAddress != token.Data.Email {
|
|
return fmt.Errorf("token email does not match user email")
|
|
}
|
|
|
|
if err := user.UpdateEmailVerification(ctx, tx, true); err != nil {
|
|
return fmt.Errorf("cannot update user email verification: %w", err)
|
|
}
|
|
|
|
return nil
|
|
},
|
|
)
|
|
}
|