- Implement Audit Service (2.5) - gRPC server with Record and Query operations - Database persistence with audit schema - Service registry integration - Entry point: cmd/audit-service - Implement Identity Service (2.2) - User CRUD operations - Password hashing with argon2id - Email verification and password reset flows - Entry point: cmd/identity-service - Fix package naming conflicts in user_service.go - Implement Auth Service (2.1) - JWT token generation and validation - Login, RefreshToken, ValidateToken, Logout RPCs - Integration with Identity Service - Entry point: cmd/auth-service - Note: RefreshToken entity needs Ent generation - Implement Authz Service (2.3, 2.4) - Permission checking and authorization - User roles and permissions retrieval - RBAC-based authorization - Entry point: cmd/authz-service - Implement gRPC clients for all services - Auth, Identity, Authz, and Audit clients - Service discovery integration - Full gRPC communication - Add service configurations to config/default.yaml - Create SUMMARY.md with implementation details and testing instructions - Fix compilation errors in Identity Service (password package conflicts) - All services build successfully and tests pass
440 lines
12 KiB
Go
440 lines
12 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"time"
|
|
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/schema/field"
|
|
"git.dcentral.systems/toolz/goplt/internal/ent/user"
|
|
"git.dcentral.systems/toolz/goplt/internal/ent/userrole"
|
|
)
|
|
|
|
// UserCreate is the builder for creating a User entity.
|
|
type UserCreate struct {
|
|
config
|
|
mutation *UserMutation
|
|
hooks []Hook
|
|
}
|
|
|
|
// SetEmail sets the "email" field.
|
|
func (_c *UserCreate) SetEmail(v string) *UserCreate {
|
|
_c.mutation.SetEmail(v)
|
|
return _c
|
|
}
|
|
|
|
// SetUsername sets the "username" field.
|
|
func (_c *UserCreate) SetUsername(v string) *UserCreate {
|
|
_c.mutation.SetUsername(v)
|
|
return _c
|
|
}
|
|
|
|
// SetNillableUsername sets the "username" field if the given value is not nil.
|
|
func (_c *UserCreate) SetNillableUsername(v *string) *UserCreate {
|
|
if v != nil {
|
|
_c.SetUsername(*v)
|
|
}
|
|
return _c
|
|
}
|
|
|
|
// SetFirstName sets the "first_name" field.
|
|
func (_c *UserCreate) SetFirstName(v string) *UserCreate {
|
|
_c.mutation.SetFirstName(v)
|
|
return _c
|
|
}
|
|
|
|
// SetNillableFirstName sets the "first_name" field if the given value is not nil.
|
|
func (_c *UserCreate) SetNillableFirstName(v *string) *UserCreate {
|
|
if v != nil {
|
|
_c.SetFirstName(*v)
|
|
}
|
|
return _c
|
|
}
|
|
|
|
// SetLastName sets the "last_name" field.
|
|
func (_c *UserCreate) SetLastName(v string) *UserCreate {
|
|
_c.mutation.SetLastName(v)
|
|
return _c
|
|
}
|
|
|
|
// SetNillableLastName sets the "last_name" field if the given value is not nil.
|
|
func (_c *UserCreate) SetNillableLastName(v *string) *UserCreate {
|
|
if v != nil {
|
|
_c.SetLastName(*v)
|
|
}
|
|
return _c
|
|
}
|
|
|
|
// SetPasswordHash sets the "password_hash" field.
|
|
func (_c *UserCreate) SetPasswordHash(v string) *UserCreate {
|
|
_c.mutation.SetPasswordHash(v)
|
|
return _c
|
|
}
|
|
|
|
// SetVerified sets the "verified" field.
|
|
func (_c *UserCreate) SetVerified(v bool) *UserCreate {
|
|
_c.mutation.SetVerified(v)
|
|
return _c
|
|
}
|
|
|
|
// SetNillableVerified sets the "verified" field if the given value is not nil.
|
|
func (_c *UserCreate) SetNillableVerified(v *bool) *UserCreate {
|
|
if v != nil {
|
|
_c.SetVerified(*v)
|
|
}
|
|
return _c
|
|
}
|
|
|
|
// SetEmailVerificationToken sets the "email_verification_token" field.
|
|
func (_c *UserCreate) SetEmailVerificationToken(v string) *UserCreate {
|
|
_c.mutation.SetEmailVerificationToken(v)
|
|
return _c
|
|
}
|
|
|
|
// SetNillableEmailVerificationToken sets the "email_verification_token" field if the given value is not nil.
|
|
func (_c *UserCreate) SetNillableEmailVerificationToken(v *string) *UserCreate {
|
|
if v != nil {
|
|
_c.SetEmailVerificationToken(*v)
|
|
}
|
|
return _c
|
|
}
|
|
|
|
// SetPasswordResetToken sets the "password_reset_token" field.
|
|
func (_c *UserCreate) SetPasswordResetToken(v string) *UserCreate {
|
|
_c.mutation.SetPasswordResetToken(v)
|
|
return _c
|
|
}
|
|
|
|
// SetNillablePasswordResetToken sets the "password_reset_token" field if the given value is not nil.
|
|
func (_c *UserCreate) SetNillablePasswordResetToken(v *string) *UserCreate {
|
|
if v != nil {
|
|
_c.SetPasswordResetToken(*v)
|
|
}
|
|
return _c
|
|
}
|
|
|
|
// SetPasswordResetExpiresAt sets the "password_reset_expires_at" field.
|
|
func (_c *UserCreate) SetPasswordResetExpiresAt(v time.Time) *UserCreate {
|
|
_c.mutation.SetPasswordResetExpiresAt(v)
|
|
return _c
|
|
}
|
|
|
|
// SetNillablePasswordResetExpiresAt sets the "password_reset_expires_at" field if the given value is not nil.
|
|
func (_c *UserCreate) SetNillablePasswordResetExpiresAt(v *time.Time) *UserCreate {
|
|
if v != nil {
|
|
_c.SetPasswordResetExpiresAt(*v)
|
|
}
|
|
return _c
|
|
}
|
|
|
|
// SetCreatedAt sets the "created_at" field.
|
|
func (_c *UserCreate) SetCreatedAt(v time.Time) *UserCreate {
|
|
_c.mutation.SetCreatedAt(v)
|
|
return _c
|
|
}
|
|
|
|
// SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
|
|
func (_c *UserCreate) SetNillableCreatedAt(v *time.Time) *UserCreate {
|
|
if v != nil {
|
|
_c.SetCreatedAt(*v)
|
|
}
|
|
return _c
|
|
}
|
|
|
|
// SetUpdatedAt sets the "updated_at" field.
|
|
func (_c *UserCreate) SetUpdatedAt(v time.Time) *UserCreate {
|
|
_c.mutation.SetUpdatedAt(v)
|
|
return _c
|
|
}
|
|
|
|
// SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.
|
|
func (_c *UserCreate) SetNillableUpdatedAt(v *time.Time) *UserCreate {
|
|
if v != nil {
|
|
_c.SetUpdatedAt(*v)
|
|
}
|
|
return _c
|
|
}
|
|
|
|
// SetID sets the "id" field.
|
|
func (_c *UserCreate) SetID(v string) *UserCreate {
|
|
_c.mutation.SetID(v)
|
|
return _c
|
|
}
|
|
|
|
// AddUserRoleIDs adds the "user_roles" edge to the UserRole entity by IDs.
|
|
func (_c *UserCreate) AddUserRoleIDs(ids ...int) *UserCreate {
|
|
_c.mutation.AddUserRoleIDs(ids...)
|
|
return _c
|
|
}
|
|
|
|
// AddUserRoles adds the "user_roles" edges to the UserRole entity.
|
|
func (_c *UserCreate) AddUserRoles(v ...*UserRole) *UserCreate {
|
|
ids := make([]int, len(v))
|
|
for i := range v {
|
|
ids[i] = v[i].ID
|
|
}
|
|
return _c.AddUserRoleIDs(ids...)
|
|
}
|
|
|
|
// Mutation returns the UserMutation object of the builder.
|
|
func (_c *UserCreate) Mutation() *UserMutation {
|
|
return _c.mutation
|
|
}
|
|
|
|
// Save creates the User in the database.
|
|
func (_c *UserCreate) Save(ctx context.Context) (*User, error) {
|
|
_c.defaults()
|
|
return withHooks(ctx, _c.sqlSave, _c.mutation, _c.hooks)
|
|
}
|
|
|
|
// SaveX calls Save and panics if Save returns an error.
|
|
func (_c *UserCreate) SaveX(ctx context.Context) *User {
|
|
v, err := _c.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (_c *UserCreate) Exec(ctx context.Context) error {
|
|
_, err := _c.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (_c *UserCreate) ExecX(ctx context.Context) {
|
|
if err := _c.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// defaults sets the default values of the builder before save.
|
|
func (_c *UserCreate) defaults() {
|
|
if _, ok := _c.mutation.Verified(); !ok {
|
|
v := user.DefaultVerified
|
|
_c.mutation.SetVerified(v)
|
|
}
|
|
if _, ok := _c.mutation.CreatedAt(); !ok {
|
|
v := user.DefaultCreatedAt()
|
|
_c.mutation.SetCreatedAt(v)
|
|
}
|
|
if _, ok := _c.mutation.UpdatedAt(); !ok {
|
|
v := user.DefaultUpdatedAt()
|
|
_c.mutation.SetUpdatedAt(v)
|
|
}
|
|
}
|
|
|
|
// check runs all checks and user-defined validators on the builder.
|
|
func (_c *UserCreate) check() error {
|
|
if _, ok := _c.mutation.Email(); !ok {
|
|
return &ValidationError{Name: "email", err: errors.New(`ent: missing required field "User.email"`)}
|
|
}
|
|
if v, ok := _c.mutation.Email(); ok {
|
|
if err := user.EmailValidator(v); err != nil {
|
|
return &ValidationError{Name: "email", err: fmt.Errorf(`ent: validator failed for field "User.email": %w`, err)}
|
|
}
|
|
}
|
|
if _, ok := _c.mutation.PasswordHash(); !ok {
|
|
return &ValidationError{Name: "password_hash", err: errors.New(`ent: missing required field "User.password_hash"`)}
|
|
}
|
|
if v, ok := _c.mutation.PasswordHash(); ok {
|
|
if err := user.PasswordHashValidator(v); err != nil {
|
|
return &ValidationError{Name: "password_hash", err: fmt.Errorf(`ent: validator failed for field "User.password_hash": %w`, err)}
|
|
}
|
|
}
|
|
if _, ok := _c.mutation.Verified(); !ok {
|
|
return &ValidationError{Name: "verified", err: errors.New(`ent: missing required field "User.verified"`)}
|
|
}
|
|
if _, ok := _c.mutation.CreatedAt(); !ok {
|
|
return &ValidationError{Name: "created_at", err: errors.New(`ent: missing required field "User.created_at"`)}
|
|
}
|
|
if _, ok := _c.mutation.UpdatedAt(); !ok {
|
|
return &ValidationError{Name: "updated_at", err: errors.New(`ent: missing required field "User.updated_at"`)}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (_c *UserCreate) sqlSave(ctx context.Context) (*User, error) {
|
|
if err := _c.check(); err != nil {
|
|
return nil, err
|
|
}
|
|
_node, _spec := _c.createSpec()
|
|
if err := sqlgraph.CreateNode(ctx, _c.driver, _spec); err != nil {
|
|
if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
}
|
|
return nil, err
|
|
}
|
|
if _spec.ID.Value != nil {
|
|
if id, ok := _spec.ID.Value.(string); ok {
|
|
_node.ID = id
|
|
} else {
|
|
return nil, fmt.Errorf("unexpected User.ID type: %T", _spec.ID.Value)
|
|
}
|
|
}
|
|
_c.mutation.id = &_node.ID
|
|
_c.mutation.done = true
|
|
return _node, nil
|
|
}
|
|
|
|
func (_c *UserCreate) createSpec() (*User, *sqlgraph.CreateSpec) {
|
|
var (
|
|
_node = &User{config: _c.config}
|
|
_spec = sqlgraph.NewCreateSpec(user.Table, sqlgraph.NewFieldSpec(user.FieldID, field.TypeString))
|
|
)
|
|
if id, ok := _c.mutation.ID(); ok {
|
|
_node.ID = id
|
|
_spec.ID.Value = id
|
|
}
|
|
if value, ok := _c.mutation.Email(); ok {
|
|
_spec.SetField(user.FieldEmail, field.TypeString, value)
|
|
_node.Email = value
|
|
}
|
|
if value, ok := _c.mutation.Username(); ok {
|
|
_spec.SetField(user.FieldUsername, field.TypeString, value)
|
|
_node.Username = value
|
|
}
|
|
if value, ok := _c.mutation.FirstName(); ok {
|
|
_spec.SetField(user.FieldFirstName, field.TypeString, value)
|
|
_node.FirstName = value
|
|
}
|
|
if value, ok := _c.mutation.LastName(); ok {
|
|
_spec.SetField(user.FieldLastName, field.TypeString, value)
|
|
_node.LastName = value
|
|
}
|
|
if value, ok := _c.mutation.PasswordHash(); ok {
|
|
_spec.SetField(user.FieldPasswordHash, field.TypeString, value)
|
|
_node.PasswordHash = value
|
|
}
|
|
if value, ok := _c.mutation.Verified(); ok {
|
|
_spec.SetField(user.FieldVerified, field.TypeBool, value)
|
|
_node.Verified = value
|
|
}
|
|
if value, ok := _c.mutation.EmailVerificationToken(); ok {
|
|
_spec.SetField(user.FieldEmailVerificationToken, field.TypeString, value)
|
|
_node.EmailVerificationToken = value
|
|
}
|
|
if value, ok := _c.mutation.PasswordResetToken(); ok {
|
|
_spec.SetField(user.FieldPasswordResetToken, field.TypeString, value)
|
|
_node.PasswordResetToken = value
|
|
}
|
|
if value, ok := _c.mutation.PasswordResetExpiresAt(); ok {
|
|
_spec.SetField(user.FieldPasswordResetExpiresAt, field.TypeTime, value)
|
|
_node.PasswordResetExpiresAt = value
|
|
}
|
|
if value, ok := _c.mutation.CreatedAt(); ok {
|
|
_spec.SetField(user.FieldCreatedAt, field.TypeTime, value)
|
|
_node.CreatedAt = value
|
|
}
|
|
if value, ok := _c.mutation.UpdatedAt(); ok {
|
|
_spec.SetField(user.FieldUpdatedAt, field.TypeTime, value)
|
|
_node.UpdatedAt = value
|
|
}
|
|
if nodes := _c.mutation.UserRolesIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2M,
|
|
Inverse: false,
|
|
Table: user.UserRolesTable,
|
|
Columns: []string{user.UserRolesColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: sqlgraph.NewFieldSpec(userrole.FieldID, field.TypeInt),
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges = append(_spec.Edges, edge)
|
|
}
|
|
return _node, _spec
|
|
}
|
|
|
|
// UserCreateBulk is the builder for creating many User entities in bulk.
|
|
type UserCreateBulk struct {
|
|
config
|
|
err error
|
|
builders []*UserCreate
|
|
}
|
|
|
|
// Save creates the User entities in the database.
|
|
func (_c *UserCreateBulk) Save(ctx context.Context) ([]*User, error) {
|
|
if _c.err != nil {
|
|
return nil, _c.err
|
|
}
|
|
specs := make([]*sqlgraph.CreateSpec, len(_c.builders))
|
|
nodes := make([]*User, len(_c.builders))
|
|
mutators := make([]Mutator, len(_c.builders))
|
|
for i := range _c.builders {
|
|
func(i int, root context.Context) {
|
|
builder := _c.builders[i]
|
|
builder.defaults()
|
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
|
mutation, ok := m.(*UserMutation)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected mutation type %T", m)
|
|
}
|
|
if err := builder.check(); err != nil {
|
|
return nil, err
|
|
}
|
|
builder.mutation = mutation
|
|
var err error
|
|
nodes[i], specs[i] = builder.createSpec()
|
|
if i < len(mutators)-1 {
|
|
_, err = mutators[i+1].Mutate(root, _c.builders[i+1].mutation)
|
|
} else {
|
|
spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
|
|
// Invoke the actual operation on the latest mutation in the chain.
|
|
if err = sqlgraph.BatchCreate(ctx, _c.driver, spec); err != nil {
|
|
if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
}
|
|
}
|
|
}
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
mutation.id = &nodes[i].ID
|
|
mutation.done = true
|
|
return nodes[i], nil
|
|
})
|
|
for i := len(builder.hooks) - 1; i >= 0; i-- {
|
|
mut = builder.hooks[i](mut)
|
|
}
|
|
mutators[i] = mut
|
|
}(i, ctx)
|
|
}
|
|
if len(mutators) > 0 {
|
|
if _, err := mutators[0].Mutate(ctx, _c.builders[0].mutation); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return nodes, nil
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (_c *UserCreateBulk) SaveX(ctx context.Context) []*User {
|
|
v, err := _c.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (_c *UserCreateBulk) Exec(ctx context.Context) error {
|
|
_, err := _c.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (_c *UserCreateBulk) ExecX(ctx context.Context) {
|
|
if err := _c.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|