mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 02:15:48 +02:00
39 lines
884 B
Go
39 lines
884 B
Go
package cosy
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
func (c *Ctx[T]) GormScope(hook func(tx *gorm.DB) *gorm.DB) *Ctx[T] {
|
|
c.gormScopes = append(c.gormScopes, hook)
|
|
return c
|
|
}
|
|
|
|
func (c *Ctx[T]) beforeExecuteHook() {
|
|
if len(c.beforeExecuteHookFunc) > 0 {
|
|
for _, v := range c.beforeExecuteHookFunc {
|
|
v(c)
|
|
}
|
|
}
|
|
}
|
|
|
|
func (c *Ctx[T]) beforeDecodeHook() {
|
|
if len(c.beforeDecodeHookFunc) > 0 {
|
|
for _, v := range c.beforeDecodeHookFunc {
|
|
v(c)
|
|
}
|
|
}
|
|
}
|
|
|
|
func (c *Ctx[T]) BeforeDecodeHook(hook ...func(ctx *Ctx[T])) *Ctx[T] {
|
|
c.beforeDecodeHookFunc = append(c.beforeDecodeHookFunc, hook...)
|
|
return c
|
|
}
|
|
|
|
func (c *Ctx[T]) BeforeExecuteHook(hook ...func(ctx *Ctx[T])) *Ctx[T] {
|
|
c.beforeExecuteHookFunc = append(c.beforeExecuteHookFunc, hook...)
|
|
return c
|
|
}
|
|
|
|
func (c *Ctx[T]) ExecutedHook(hook ...func(ctx *Ctx[T])) *Ctx[T] {
|
|
c.executedHookFunc = append(c.executedHookFunc, hook...)
|
|
return c
|
|
}
|