2022-08-30 18:04:50 +00:00
|
|
|
// Code generated by ent, DO NOT EDIT.
|
2022-08-30 02:30:36 +00:00
|
|
|
|
|
|
|
package ent
|
|
|
|
|
|
|
|
import (
|
|
|
|
"entgo.io/ent"
|
|
|
|
"entgo.io/ent/dialect"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Option function to configure the client.
|
|
|
|
type Option func(*config)
|
|
|
|
|
|
|
|
// Config is the configuration for the client and its builder.
|
|
|
|
type config struct {
|
|
|
|
// driver used for executing database requests.
|
|
|
|
driver dialect.Driver
|
|
|
|
// debug enable a debug logging.
|
|
|
|
debug bool
|
|
|
|
// log used for logging on debug mode.
|
2022-09-29 05:42:33 +00:00
|
|
|
log func(...any)
|
2022-08-30 02:30:36 +00:00
|
|
|
// hooks to execute on mutations.
|
|
|
|
hooks *hooks
|
2023-01-19 05:44:06 +00:00
|
|
|
// interceptors to execute on queries.
|
|
|
|
inters *inters
|
2022-08-30 02:30:36 +00:00
|
|
|
}
|
|
|
|
|
2023-01-19 05:44:06 +00:00
|
|
|
// hooks and interceptors per client, for fast access.
|
|
|
|
type (
|
|
|
|
hooks struct {
|
|
|
|
Attachment []ent.Hook
|
|
|
|
AuthRoles []ent.Hook
|
|
|
|
AuthTokens []ent.Hook
|
|
|
|
Document []ent.Hook
|
|
|
|
Group []ent.Hook
|
|
|
|
GroupInvitationToken []ent.Hook
|
|
|
|
Item []ent.Hook
|
|
|
|
ItemField []ent.Hook
|
|
|
|
Label []ent.Hook
|
|
|
|
Location []ent.Hook
|
|
|
|
MaintenanceEntry []ent.Hook
|
2023-03-05 07:01:36 +00:00
|
|
|
Notifier []ent.Hook
|
2023-01-19 05:44:06 +00:00
|
|
|
User []ent.Hook
|
|
|
|
}
|
|
|
|
inters struct {
|
|
|
|
Attachment []ent.Interceptor
|
|
|
|
AuthRoles []ent.Interceptor
|
|
|
|
AuthTokens []ent.Interceptor
|
|
|
|
Document []ent.Interceptor
|
|
|
|
Group []ent.Interceptor
|
|
|
|
GroupInvitationToken []ent.Interceptor
|
|
|
|
Item []ent.Interceptor
|
|
|
|
ItemField []ent.Interceptor
|
|
|
|
Label []ent.Interceptor
|
|
|
|
Location []ent.Interceptor
|
|
|
|
MaintenanceEntry []ent.Interceptor
|
2023-03-05 07:01:36 +00:00
|
|
|
Notifier []ent.Interceptor
|
2023-01-19 05:44:06 +00:00
|
|
|
User []ent.Interceptor
|
|
|
|
}
|
|
|
|
)
|
2022-08-30 02:30:36 +00:00
|
|
|
|
|
|
|
// Options applies the options on the config object.
|
|
|
|
func (c *config) options(opts ...Option) {
|
|
|
|
for _, opt := range opts {
|
|
|
|
opt(c)
|
|
|
|
}
|
|
|
|
if c.debug {
|
|
|
|
c.driver = dialect.Debug(c.driver, c.log)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Debug enables debug logging on the ent.Driver.
|
|
|
|
func Debug() Option {
|
|
|
|
return func(c *config) {
|
|
|
|
c.debug = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Log sets the logging function for debug mode.
|
2022-09-29 05:42:33 +00:00
|
|
|
func Log(fn func(...any)) Option {
|
2022-08-30 02:30:36 +00:00
|
|
|
return func(c *config) {
|
|
|
|
c.log = fn
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Driver configures the client driver.
|
|
|
|
func Driver(driver dialect.Driver) Option {
|
|
|
|
return func(c *config) {
|
|
|
|
c.driver = driver
|
|
|
|
}
|
|
|
|
}
|