mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-28 23:42:02 +08:00

* chore: update auth * chore: password changes * chore: make changes in oss code * chore: login * chore: get to a running state * fix: migration inital commit * fix: signoz cloud intgtn tests * fix: minor fixes * chore: sso code fixed with org domain * fix: tests * fix: ee auth api's * fix: changes in name * fix: return user in login api * fix: address comments * fix: validate password * fix: handle get domain by email properly * fix: move authomain to usermodule * fix: use displayname instead of hname * fix: rename back endpoints * fix: update telemetry * fix: correct errors * fix: test and fix the invite endpoints * fix: delete all things related to user in store * fix: address issues * fix: ee delete invite * fix: rename func * fix: update user and update role * fix: update role * fix: login and invite changes * fix: return org name in users response * fix: update user role * fix: nil check * fix: getinvite and update role * fix: sso * fix: getinvite use sso ctx * fix: use correct sourceurl * fix: getsourceurl from req payload * fix: update created_at * fix: fix reset password * fix: sso signup and token password change * fix: don't delete last admin * fix: reset password and migration * fix: migration * fix: reset password for sso users * fix: clean up invite * fix: migration * fix: update claims and store code * fix: use correct error * fix: proper nil checks * fix: make migration multitenant * fix: address comments * fix: minor fixes * fix: test * fix: rename reset password --------- Co-authored-by: Vikrant Gupta <vikrant@signoz.io>
88 lines
2.0 KiB
Go
88 lines
2.0 KiB
Go
package types
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/SigNoz/signoz/pkg/errors"
|
|
"github.com/SigNoz/signoz/pkg/valuer"
|
|
"github.com/uptrace/bun"
|
|
)
|
|
|
|
var (
|
|
ErrInviteAlreadyExists = errors.MustNewCode("invite_already_exists")
|
|
ErrInviteNotFound = errors.MustNewCode("invite_not_found")
|
|
)
|
|
|
|
type GettableEEInvite struct {
|
|
GettableInvite
|
|
PreCheck *GettableLoginPrecheck `bun:"-" json:"precheck"`
|
|
}
|
|
|
|
type GettableInvite struct {
|
|
Invite
|
|
Organization string `bun:"organization,type:text,notnull" json:"organization"`
|
|
}
|
|
|
|
type Invite struct {
|
|
bun.BaseModel `bun:"table:user_invite"`
|
|
|
|
Identifiable
|
|
TimeAuditable
|
|
OrgID string `bun:"org_id,type:text,notnull" json:"orgID"`
|
|
Name string `bun:"name,type:text,notnull" json:"name"`
|
|
Email string `bun:"email,type:text,notnull,unique" json:"email"`
|
|
Token string `bun:"token,type:text,notnull" json:"token"`
|
|
Role string `bun:"role,type:text,notnull" json:"role"`
|
|
|
|
InviteLink string `bun:"-" json:"inviteLink"`
|
|
}
|
|
|
|
func NewInvite(orgID, role, name, email string) (*Invite, error) {
|
|
if email == "" {
|
|
return nil, errors.New(errors.TypeInvalidInput, errors.CodeInvalidInput, "email is required")
|
|
}
|
|
_, err := NewRole(role)
|
|
if err != nil {
|
|
return nil, errors.New(errors.TypeInvalidInput, errors.CodeInvalidInput, fmt.Sprintf("invalid role for user: %s", email))
|
|
}
|
|
|
|
email = strings.TrimSpace(email)
|
|
|
|
invite := &Invite{
|
|
Identifiable: Identifiable{
|
|
ID: valuer.GenerateUUID(),
|
|
},
|
|
TimeAuditable: TimeAuditable{
|
|
CreatedAt: time.Now(),
|
|
UpdatedAt: time.Now(),
|
|
},
|
|
Name: name,
|
|
Email: email,
|
|
Token: valuer.GenerateUUID().String(),
|
|
Role: role,
|
|
OrgID: orgID,
|
|
}
|
|
|
|
return invite, nil
|
|
}
|
|
|
|
type InviteEmailData struct {
|
|
CustomerName string
|
|
InviterName string
|
|
InviterEmail string
|
|
Link string
|
|
}
|
|
|
|
type PostableInvite struct {
|
|
Name string `json:"name"`
|
|
Email string `json:"email"`
|
|
Role Role `json:"role"`
|
|
FrontendBaseUrl string `json:"frontendBaseUrl"`
|
|
}
|
|
|
|
type PostableBulkInviteRequest struct {
|
|
Invites []PostableInvite `json:"invites"`
|
|
}
|