feat(epic1): implement core infrastructure (stories 1.1-1.5)
Implemented Epic 1 core kernel and infrastructure stories: Story 1.1: Enhanced DI Container - Added providers for database, health, metrics, and error bus - Extended CoreModule to include all core services Story 1.2: Database Layer with Ent ORM - Created Ent schema for User, Role, Permission, AuditLog entities - Implemented many-to-many relationships (User-Role, Role-Permission) - Created database client wrapper with connection pooling - Added database provider to DI container with migration support Story 1.3: Health Monitoring and Metrics System - Implemented health check registry and interface - Added database health checker - Created Prometheus metrics system with HTTP instrumentation - Added health and metrics providers to DI container Story 1.4: Error Handling and Error Bus - Implemented channel-based error bus - Created ErrorPublisher interface - Added error bus provider with lifecycle management Story 1.5: HTTP Server Foundation - Created HTTP server with Gin framework - Implemented comprehensive middleware stack: - Request ID generation - Structured logging - Panic recovery with error bus integration - Prometheus metrics collection - CORS support - Registered core routes: /healthz, /ready, /metrics - Integrated with FX lifecycle for graceful shutdown All components are integrated via DI container and ready for use.
This commit is contained in:
114
internal/ent/userrole/userrole.go
Normal file
114
internal/ent/userrole/userrole.go
Normal file
@@ -0,0 +1,114 @@
|
||||
// Code generated by ent, DO NOT EDIT.
|
||||
|
||||
package userrole
|
||||
|
||||
import (
|
||||
"entgo.io/ent/dialect/sql"
|
||||
"entgo.io/ent/dialect/sql/sqlgraph"
|
||||
)
|
||||
|
||||
const (
|
||||
// Label holds the string label denoting the userrole type in the database.
|
||||
Label = "user_role"
|
||||
// FieldID holds the string denoting the id field in the database.
|
||||
FieldID = "id"
|
||||
// FieldUserID holds the string denoting the user_id field in the database.
|
||||
FieldUserID = "user_id"
|
||||
// FieldRoleID holds the string denoting the role_id field in the database.
|
||||
FieldRoleID = "role_id"
|
||||
// EdgeUser holds the string denoting the user edge name in mutations.
|
||||
EdgeUser = "user"
|
||||
// EdgeRole holds the string denoting the role edge name in mutations.
|
||||
EdgeRole = "role"
|
||||
// Table holds the table name of the userrole in the database.
|
||||
Table = "user_roles"
|
||||
// UserTable is the table that holds the user relation/edge.
|
||||
UserTable = "user_roles"
|
||||
// UserInverseTable is the table name for the User entity.
|
||||
// It exists in this package in order to avoid circular dependency with the "user" package.
|
||||
UserInverseTable = "users"
|
||||
// UserColumn is the table column denoting the user relation/edge.
|
||||
UserColumn = "user_id"
|
||||
// RoleTable is the table that holds the role relation/edge.
|
||||
RoleTable = "user_roles"
|
||||
// RoleInverseTable is the table name for the Role entity.
|
||||
// It exists in this package in order to avoid circular dependency with the "role" package.
|
||||
RoleInverseTable = "roles"
|
||||
// RoleColumn is the table column denoting the role relation/edge.
|
||||
RoleColumn = "role_id"
|
||||
)
|
||||
|
||||
// Columns holds all SQL columns for userrole fields.
|
||||
var Columns = []string{
|
||||
FieldID,
|
||||
FieldUserID,
|
||||
FieldRoleID,
|
||||
}
|
||||
|
||||
// ForeignKeys holds the SQL foreign-keys that are owned by the "user_roles"
|
||||
// table and are not defined as standalone fields in the schema.
|
||||
var ForeignKeys = []string{
|
||||
"role_user_roles",
|
||||
"user_user_roles",
|
||||
}
|
||||
|
||||
// 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
|
||||
}
|
||||
}
|
||||
for i := range ForeignKeys {
|
||||
if column == ForeignKeys[i] {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
// OrderOption defines the ordering options for the UserRole 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()
|
||||
}
|
||||
|
||||
// ByUserID orders the results by the user_id field.
|
||||
func ByUserID(opts ...sql.OrderTermOption) OrderOption {
|
||||
return sql.OrderByField(FieldUserID, opts...).ToFunc()
|
||||
}
|
||||
|
||||
// ByRoleID orders the results by the role_id field.
|
||||
func ByRoleID(opts ...sql.OrderTermOption) OrderOption {
|
||||
return sql.OrderByField(FieldRoleID, opts...).ToFunc()
|
||||
}
|
||||
|
||||
// ByUserField orders the results by user field.
|
||||
func ByUserField(field string, opts ...sql.OrderTermOption) OrderOption {
|
||||
return func(s *sql.Selector) {
|
||||
sqlgraph.OrderByNeighborTerms(s, newUserStep(), sql.OrderByField(field, opts...))
|
||||
}
|
||||
}
|
||||
|
||||
// ByRoleField orders the results by role field.
|
||||
func ByRoleField(field string, opts ...sql.OrderTermOption) OrderOption {
|
||||
return func(s *sql.Selector) {
|
||||
sqlgraph.OrderByNeighborTerms(s, newRoleStep(), sql.OrderByField(field, opts...))
|
||||
}
|
||||
}
|
||||
func newUserStep() *sqlgraph.Step {
|
||||
return sqlgraph.NewStep(
|
||||
sqlgraph.From(Table, FieldID),
|
||||
sqlgraph.To(UserInverseTable, FieldID),
|
||||
sqlgraph.Edge(sqlgraph.M2O, false, UserTable, UserColumn),
|
||||
)
|
||||
}
|
||||
func newRoleStep() *sqlgraph.Step {
|
||||
return sqlgraph.NewStep(
|
||||
sqlgraph.From(Table, FieldID),
|
||||
sqlgraph.To(RoleInverseTable, FieldID),
|
||||
sqlgraph.Edge(sqlgraph.M2O, false, RoleTable, RoleColumn),
|
||||
)
|
||||
}
|
||||
255
internal/ent/userrole/where.go
Normal file
255
internal/ent/userrole/where.go
Normal file
@@ -0,0 +1,255 @@
|
||||
// Code generated by ent, DO NOT EDIT.
|
||||
|
||||
package userrole
|
||||
|
||||
import (
|
||||
"entgo.io/ent/dialect/sql"
|
||||
"entgo.io/ent/dialect/sql/sqlgraph"
|
||||
"git.dcentral.systems/toolz/goplt/internal/ent/predicate"
|
||||
)
|
||||
|
||||
// ID filters vertices based on their ID field.
|
||||
func ID(id int) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldEQ(FieldID, id))
|
||||
}
|
||||
|
||||
// IDEQ applies the EQ predicate on the ID field.
|
||||
func IDEQ(id int) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldEQ(FieldID, id))
|
||||
}
|
||||
|
||||
// IDNEQ applies the NEQ predicate on the ID field.
|
||||
func IDNEQ(id int) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldNEQ(FieldID, id))
|
||||
}
|
||||
|
||||
// IDIn applies the In predicate on the ID field.
|
||||
func IDIn(ids ...int) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldIn(FieldID, ids...))
|
||||
}
|
||||
|
||||
// IDNotIn applies the NotIn predicate on the ID field.
|
||||
func IDNotIn(ids ...int) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldNotIn(FieldID, ids...))
|
||||
}
|
||||
|
||||
// IDGT applies the GT predicate on the ID field.
|
||||
func IDGT(id int) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldGT(FieldID, id))
|
||||
}
|
||||
|
||||
// IDGTE applies the GTE predicate on the ID field.
|
||||
func IDGTE(id int) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldGTE(FieldID, id))
|
||||
}
|
||||
|
||||
// IDLT applies the LT predicate on the ID field.
|
||||
func IDLT(id int) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldLT(FieldID, id))
|
||||
}
|
||||
|
||||
// IDLTE applies the LTE predicate on the ID field.
|
||||
func IDLTE(id int) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldLTE(FieldID, id))
|
||||
}
|
||||
|
||||
// UserID applies equality check predicate on the "user_id" field. It's identical to UserIDEQ.
|
||||
func UserID(v string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldEQ(FieldUserID, v))
|
||||
}
|
||||
|
||||
// RoleID applies equality check predicate on the "role_id" field. It's identical to RoleIDEQ.
|
||||
func RoleID(v string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldEQ(FieldRoleID, v))
|
||||
}
|
||||
|
||||
// UserIDEQ applies the EQ predicate on the "user_id" field.
|
||||
func UserIDEQ(v string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldEQ(FieldUserID, v))
|
||||
}
|
||||
|
||||
// UserIDNEQ applies the NEQ predicate on the "user_id" field.
|
||||
func UserIDNEQ(v string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldNEQ(FieldUserID, v))
|
||||
}
|
||||
|
||||
// UserIDIn applies the In predicate on the "user_id" field.
|
||||
func UserIDIn(vs ...string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldIn(FieldUserID, vs...))
|
||||
}
|
||||
|
||||
// UserIDNotIn applies the NotIn predicate on the "user_id" field.
|
||||
func UserIDNotIn(vs ...string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldNotIn(FieldUserID, vs...))
|
||||
}
|
||||
|
||||
// UserIDGT applies the GT predicate on the "user_id" field.
|
||||
func UserIDGT(v string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldGT(FieldUserID, v))
|
||||
}
|
||||
|
||||
// UserIDGTE applies the GTE predicate on the "user_id" field.
|
||||
func UserIDGTE(v string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldGTE(FieldUserID, v))
|
||||
}
|
||||
|
||||
// UserIDLT applies the LT predicate on the "user_id" field.
|
||||
func UserIDLT(v string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldLT(FieldUserID, v))
|
||||
}
|
||||
|
||||
// UserIDLTE applies the LTE predicate on the "user_id" field.
|
||||
func UserIDLTE(v string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldLTE(FieldUserID, v))
|
||||
}
|
||||
|
||||
// UserIDContains applies the Contains predicate on the "user_id" field.
|
||||
func UserIDContains(v string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldContains(FieldUserID, v))
|
||||
}
|
||||
|
||||
// UserIDHasPrefix applies the HasPrefix predicate on the "user_id" field.
|
||||
func UserIDHasPrefix(v string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldHasPrefix(FieldUserID, v))
|
||||
}
|
||||
|
||||
// UserIDHasSuffix applies the HasSuffix predicate on the "user_id" field.
|
||||
func UserIDHasSuffix(v string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldHasSuffix(FieldUserID, v))
|
||||
}
|
||||
|
||||
// UserIDEqualFold applies the EqualFold predicate on the "user_id" field.
|
||||
func UserIDEqualFold(v string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldEqualFold(FieldUserID, v))
|
||||
}
|
||||
|
||||
// UserIDContainsFold applies the ContainsFold predicate on the "user_id" field.
|
||||
func UserIDContainsFold(v string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldContainsFold(FieldUserID, v))
|
||||
}
|
||||
|
||||
// RoleIDEQ applies the EQ predicate on the "role_id" field.
|
||||
func RoleIDEQ(v string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldEQ(FieldRoleID, v))
|
||||
}
|
||||
|
||||
// RoleIDNEQ applies the NEQ predicate on the "role_id" field.
|
||||
func RoleIDNEQ(v string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldNEQ(FieldRoleID, v))
|
||||
}
|
||||
|
||||
// RoleIDIn applies the In predicate on the "role_id" field.
|
||||
func RoleIDIn(vs ...string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldIn(FieldRoleID, vs...))
|
||||
}
|
||||
|
||||
// RoleIDNotIn applies the NotIn predicate on the "role_id" field.
|
||||
func RoleIDNotIn(vs ...string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldNotIn(FieldRoleID, vs...))
|
||||
}
|
||||
|
||||
// RoleIDGT applies the GT predicate on the "role_id" field.
|
||||
func RoleIDGT(v string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldGT(FieldRoleID, v))
|
||||
}
|
||||
|
||||
// RoleIDGTE applies the GTE predicate on the "role_id" field.
|
||||
func RoleIDGTE(v string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldGTE(FieldRoleID, v))
|
||||
}
|
||||
|
||||
// RoleIDLT applies the LT predicate on the "role_id" field.
|
||||
func RoleIDLT(v string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldLT(FieldRoleID, v))
|
||||
}
|
||||
|
||||
// RoleIDLTE applies the LTE predicate on the "role_id" field.
|
||||
func RoleIDLTE(v string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldLTE(FieldRoleID, v))
|
||||
}
|
||||
|
||||
// RoleIDContains applies the Contains predicate on the "role_id" field.
|
||||
func RoleIDContains(v string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldContains(FieldRoleID, v))
|
||||
}
|
||||
|
||||
// RoleIDHasPrefix applies the HasPrefix predicate on the "role_id" field.
|
||||
func RoleIDHasPrefix(v string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldHasPrefix(FieldRoleID, v))
|
||||
}
|
||||
|
||||
// RoleIDHasSuffix applies the HasSuffix predicate on the "role_id" field.
|
||||
func RoleIDHasSuffix(v string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldHasSuffix(FieldRoleID, v))
|
||||
}
|
||||
|
||||
// RoleIDEqualFold applies the EqualFold predicate on the "role_id" field.
|
||||
func RoleIDEqualFold(v string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldEqualFold(FieldRoleID, v))
|
||||
}
|
||||
|
||||
// RoleIDContainsFold applies the ContainsFold predicate on the "role_id" field.
|
||||
func RoleIDContainsFold(v string) predicate.UserRole {
|
||||
return predicate.UserRole(sql.FieldContainsFold(FieldRoleID, v))
|
||||
}
|
||||
|
||||
// HasUser applies the HasEdge predicate on the "user" edge.
|
||||
func HasUser() predicate.UserRole {
|
||||
return predicate.UserRole(func(s *sql.Selector) {
|
||||
step := sqlgraph.NewStep(
|
||||
sqlgraph.From(Table, FieldID),
|
||||
sqlgraph.Edge(sqlgraph.M2O, false, UserTable, UserColumn),
|
||||
)
|
||||
sqlgraph.HasNeighbors(s, step)
|
||||
})
|
||||
}
|
||||
|
||||
// HasUserWith applies the HasEdge predicate on the "user" edge with a given conditions (other predicates).
|
||||
func HasUserWith(preds ...predicate.User) predicate.UserRole {
|
||||
return predicate.UserRole(func(s *sql.Selector) {
|
||||
step := newUserStep()
|
||||
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
|
||||
for _, p := range preds {
|
||||
p(s)
|
||||
}
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
// HasRole applies the HasEdge predicate on the "role" edge.
|
||||
func HasRole() predicate.UserRole {
|
||||
return predicate.UserRole(func(s *sql.Selector) {
|
||||
step := sqlgraph.NewStep(
|
||||
sqlgraph.From(Table, FieldID),
|
||||
sqlgraph.Edge(sqlgraph.M2O, false, RoleTable, RoleColumn),
|
||||
)
|
||||
sqlgraph.HasNeighbors(s, step)
|
||||
})
|
||||
}
|
||||
|
||||
// HasRoleWith applies the HasEdge predicate on the "role" edge with a given conditions (other predicates).
|
||||
func HasRoleWith(preds ...predicate.Role) predicate.UserRole {
|
||||
return predicate.UserRole(func(s *sql.Selector) {
|
||||
step := newRoleStep()
|
||||
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
|
||||
for _, p := range preds {
|
||||
p(s)
|
||||
}
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
// And groups predicates with the AND operator between them.
|
||||
func And(predicates ...predicate.UserRole) predicate.UserRole {
|
||||
return predicate.UserRole(sql.AndPredicates(predicates...))
|
||||
}
|
||||
|
||||
// Or groups predicates with the OR operator between them.
|
||||
func Or(predicates ...predicate.UserRole) predicate.UserRole {
|
||||
return predicate.UserRole(sql.OrPredicates(predicates...))
|
||||
}
|
||||
|
||||
// Not applies the not operator on the given predicate.
|
||||
func Not(p predicate.UserRole) predicate.UserRole {
|
||||
return predicate.UserRole(sql.NotPredicates(p))
|
||||
}
|
||||
Reference in New Issue
Block a user