- 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
176 lines
6.5 KiB
Go
176 lines
6.5 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package user
|
|
|
|
import (
|
|
"time"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
)
|
|
|
|
const (
|
|
// Label holds the string label denoting the user type in the database.
|
|
Label = "user"
|
|
// FieldID holds the string denoting the id field in the database.
|
|
FieldID = "id"
|
|
// FieldEmail holds the string denoting the email field in the database.
|
|
FieldEmail = "email"
|
|
// FieldUsername holds the string denoting the username field in the database.
|
|
FieldUsername = "username"
|
|
// FieldFirstName holds the string denoting the first_name field in the database.
|
|
FieldFirstName = "first_name"
|
|
// FieldLastName holds the string denoting the last_name field in the database.
|
|
FieldLastName = "last_name"
|
|
// FieldPasswordHash holds the string denoting the password_hash field in the database.
|
|
FieldPasswordHash = "password_hash"
|
|
// FieldVerified holds the string denoting the verified field in the database.
|
|
FieldVerified = "verified"
|
|
// FieldEmailVerificationToken holds the string denoting the email_verification_token field in the database.
|
|
FieldEmailVerificationToken = "email_verification_token"
|
|
// FieldPasswordResetToken holds the string denoting the password_reset_token field in the database.
|
|
FieldPasswordResetToken = "password_reset_token"
|
|
// FieldPasswordResetExpiresAt holds the string denoting the password_reset_expires_at field in the database.
|
|
FieldPasswordResetExpiresAt = "password_reset_expires_at"
|
|
// FieldCreatedAt holds the string denoting the created_at field in the database.
|
|
FieldCreatedAt = "created_at"
|
|
// FieldUpdatedAt holds the string denoting the updated_at field in the database.
|
|
FieldUpdatedAt = "updated_at"
|
|
// EdgeUserRoles holds the string denoting the user_roles edge name in mutations.
|
|
EdgeUserRoles = "user_roles"
|
|
// Table holds the table name of the user in the database.
|
|
Table = "users"
|
|
// UserRolesTable is the table that holds the user_roles relation/edge.
|
|
UserRolesTable = "user_roles"
|
|
// UserRolesInverseTable is the table name for the UserRole entity.
|
|
// It exists in this package in order to avoid circular dependency with the "userrole" package.
|
|
UserRolesInverseTable = "user_roles"
|
|
// UserRolesColumn is the table column denoting the user_roles relation/edge.
|
|
UserRolesColumn = "user_user_roles"
|
|
)
|
|
|
|
// Columns holds all SQL columns for user fields.
|
|
var Columns = []string{
|
|
FieldID,
|
|
FieldEmail,
|
|
FieldUsername,
|
|
FieldFirstName,
|
|
FieldLastName,
|
|
FieldPasswordHash,
|
|
FieldVerified,
|
|
FieldEmailVerificationToken,
|
|
FieldPasswordResetToken,
|
|
FieldPasswordResetExpiresAt,
|
|
FieldCreatedAt,
|
|
FieldUpdatedAt,
|
|
}
|
|
|
|
// ValidColumn reports if the column name is valid (part of the table columns).
|
|
func ValidColumn(column string) bool {
|
|
for i := range Columns {
|
|
if column == Columns[i] {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
var (
|
|
// EmailValidator is a validator for the "email" field. It is called by the builders before save.
|
|
EmailValidator func(string) error
|
|
// PasswordHashValidator is a validator for the "password_hash" field. It is called by the builders before save.
|
|
PasswordHashValidator func(string) error
|
|
// DefaultVerified holds the default value on creation for the "verified" field.
|
|
DefaultVerified bool
|
|
// DefaultCreatedAt holds the default value on creation for the "created_at" field.
|
|
DefaultCreatedAt func() time.Time
|
|
// DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
|
|
DefaultUpdatedAt func() time.Time
|
|
// UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
|
|
UpdateDefaultUpdatedAt func() time.Time
|
|
)
|
|
|
|
// OrderOption defines the ordering options for the User queries.
|
|
type OrderOption func(*sql.Selector)
|
|
|
|
// ByID orders the results by the id field.
|
|
func ByID(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldID, opts...).ToFunc()
|
|
}
|
|
|
|
// ByEmail orders the results by the email field.
|
|
func ByEmail(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldEmail, opts...).ToFunc()
|
|
}
|
|
|
|
// ByUsername orders the results by the username field.
|
|
func ByUsername(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldUsername, opts...).ToFunc()
|
|
}
|
|
|
|
// ByFirstName orders the results by the first_name field.
|
|
func ByFirstName(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldFirstName, opts...).ToFunc()
|
|
}
|
|
|
|
// ByLastName orders the results by the last_name field.
|
|
func ByLastName(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldLastName, opts...).ToFunc()
|
|
}
|
|
|
|
// ByPasswordHash orders the results by the password_hash field.
|
|
func ByPasswordHash(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldPasswordHash, opts...).ToFunc()
|
|
}
|
|
|
|
// ByVerified orders the results by the verified field.
|
|
func ByVerified(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldVerified, opts...).ToFunc()
|
|
}
|
|
|
|
// ByEmailVerificationToken orders the results by the email_verification_token field.
|
|
func ByEmailVerificationToken(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldEmailVerificationToken, opts...).ToFunc()
|
|
}
|
|
|
|
// ByPasswordResetToken orders the results by the password_reset_token field.
|
|
func ByPasswordResetToken(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldPasswordResetToken, opts...).ToFunc()
|
|
}
|
|
|
|
// ByPasswordResetExpiresAt orders the results by the password_reset_expires_at field.
|
|
func ByPasswordResetExpiresAt(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldPasswordResetExpiresAt, opts...).ToFunc()
|
|
}
|
|
|
|
// ByCreatedAt orders the results by the created_at field.
|
|
func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
|
|
}
|
|
|
|
// ByUpdatedAt orders the results by the updated_at field.
|
|
func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()
|
|
}
|
|
|
|
// ByUserRolesCount orders the results by user_roles count.
|
|
func ByUserRolesCount(opts ...sql.OrderTermOption) OrderOption {
|
|
return func(s *sql.Selector) {
|
|
sqlgraph.OrderByNeighborsCount(s, newUserRolesStep(), opts...)
|
|
}
|
|
}
|
|
|
|
// ByUserRoles orders the results by user_roles terms.
|
|
func ByUserRoles(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption {
|
|
return func(s *sql.Selector) {
|
|
sqlgraph.OrderByNeighborTerms(s, newUserRolesStep(), append([]sql.OrderTerm{term}, terms...)...)
|
|
}
|
|
}
|
|
func newUserRolesStep() *sqlgraph.Step {
|
|
return sqlgraph.NewStep(
|
|
sqlgraph.From(Table, FieldID),
|
|
sqlgraph.To(UserRolesInverseTable, FieldID),
|
|
sqlgraph.Edge(sqlgraph.O2M, false, UserRolesTable, UserRolesColumn),
|
|
)
|
|
}
|