-
-
Notifications
You must be signed in to change notification settings - Fork 530
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
176 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,117 +1,117 @@ | ||
package cosy | ||
|
||
import ( | ||
"github.com/0xJacky/Nginx-UI/internal/logger" | ||
"github.com/gin-gonic/gin" | ||
"github.com/go-playground/validator/v10" | ||
"gorm.io/gorm" | ||
"github.com/0xJacky/Nginx-UI/internal/logger" | ||
"github.com/gin-gonic/gin" | ||
"github.com/go-playground/validator/v10" | ||
"gorm.io/gorm" | ||
) | ||
|
||
var validate *validator.Validate | ||
|
||
func init() { | ||
validate = validator.New() | ||
validate = validator.New() | ||
} | ||
|
||
type Ctx[T any] struct { | ||
ctx *gin.Context | ||
rules gin.H | ||
Payload map[string]interface{} | ||
Model T | ||
OriginModel T | ||
table string | ||
tableArgs []interface{} | ||
abort bool | ||
nextHandler *gin.HandlerFunc | ||
skipAssociationsOnCreate bool | ||
beforeDecodeHookFunc []func(ctx *Ctx[T]) | ||
beforeExecuteHookFunc []func(ctx *Ctx[T]) | ||
executedHookFunc []func(ctx *Ctx[T]) | ||
gormScopes []func(tx *gorm.DB) *gorm.DB | ||
preloads []string | ||
scan func(tx *gorm.DB) any | ||
transformer func(*T) any | ||
permanentlyDelete bool | ||
SelectedFields []string | ||
itemKey string | ||
ctx *gin.Context | ||
rules gin.H | ||
Payload map[string]interface{} | ||
Model T | ||
OriginModel T | ||
table string | ||
tableArgs []interface{} | ||
abort bool | ||
nextHandler *gin.HandlerFunc | ||
skipAssociationsOnCreate bool | ||
beforeDecodeHookFunc []func(ctx *Ctx[T]) | ||
beforeExecuteHookFunc []func(ctx *Ctx[T]) | ||
executedHookFunc []func(ctx *Ctx[T]) | ||
gormScopes []func(tx *gorm.DB) *gorm.DB | ||
preloads []string | ||
scan func(tx *gorm.DB) any | ||
transformer func(*T) any | ||
permanentlyDelete bool | ||
SelectedFields []string | ||
itemKey string | ||
} | ||
|
||
func Core[T any](c *gin.Context) *Ctx[T] { | ||
return &Ctx[T]{ | ||
ctx: c, | ||
gormScopes: make([]func(tx *gorm.DB) *gorm.DB, 0), | ||
beforeExecuteHookFunc: make([]func(ctx *Ctx[T]), 0), | ||
beforeDecodeHookFunc: make([]func(ctx *Ctx[T]), 0), | ||
itemKey: "`id`", | ||
skipAssociationsOnCreate: true, | ||
} | ||
return &Ctx[T]{ | ||
ctx: c, | ||
gormScopes: make([]func(tx *gorm.DB) *gorm.DB, 0), | ||
beforeExecuteHookFunc: make([]func(ctx *Ctx[T]), 0), | ||
beforeDecodeHookFunc: make([]func(ctx *Ctx[T]), 0), | ||
itemKey: "`id`", | ||
skipAssociationsOnCreate: true, | ||
} | ||
} | ||
|
||
func (c *Ctx[T]) SetTable(table string, args ...interface{}) *Ctx[T] { | ||
c.table = table | ||
c.tableArgs = args | ||
return c | ||
c.table = table | ||
c.tableArgs = args | ||
return c | ||
} | ||
|
||
func (c *Ctx[T]) SetItemKey(key string) *Ctx[T] { | ||
c.itemKey = key | ||
return c | ||
c.itemKey = key | ||
return c | ||
} | ||
|
||
func (c *Ctx[T]) SetValidRules(rules gin.H) *Ctx[T] { | ||
c.rules = rules | ||
c.rules = rules | ||
|
||
return c | ||
return c | ||
} | ||
|
||
func (c *Ctx[T]) SetPreloads(args ...string) *Ctx[T] { | ||
c.preloads = append(c.preloads, args...) | ||
return c | ||
c.preloads = append(c.preloads, args...) | ||
return c | ||
} | ||
|
||
func (c *Ctx[T]) validate() (errs gin.H) { | ||
c.Payload = make(gin.H) | ||
c.Payload = make(gin.H) | ||
|
||
_ = c.ctx.ShouldBindJSON(&c.Payload) | ||
_ = c.ctx.ShouldBindJSON(&c.Payload) | ||
|
||
errs = validate.ValidateMap(c.Payload, c.rules) | ||
errs = validate.ValidateMap(c.Payload, c.rules) | ||
|
||
if len(errs) > 0 { | ||
logger.Debug(errs) | ||
for k := range errs { | ||
errs[k] = c.rules[k] | ||
} | ||
return | ||
} | ||
// Make sure that the key in c.Payload is also the key of rules | ||
validated := make(map[string]interface{}) | ||
if len(errs) > 0 { | ||
logger.Debug(errs) | ||
for k := range errs { | ||
errs[k] = c.rules[k] | ||
} | ||
return | ||
} | ||
// Make sure that the key in c.Payload is also the key of rules | ||
validated := make(map[string]interface{}) | ||
|
||
for k, v := range c.Payload { | ||
if _, ok := c.rules[k]; ok { | ||
validated[k] = v | ||
} | ||
} | ||
for k, v := range c.Payload { | ||
if _, ok := c.rules[k]; ok { | ||
validated[k] = v | ||
} | ||
} | ||
|
||
c.Payload = validated | ||
c.Payload = validated | ||
|
||
return | ||
return | ||
} | ||
|
||
func (c *Ctx[T]) SetScan(scan func(tx *gorm.DB) any) *Ctx[T] { | ||
c.scan = scan | ||
return c | ||
c.scan = scan | ||
return c | ||
} | ||
|
||
func (c *Ctx[T]) SetTransformer(t func(m *T) any) *Ctx[T] { | ||
c.transformer = t | ||
return c | ||
c.transformer = t | ||
return c | ||
} | ||
|
||
func (c *Ctx[T]) AbortWithError(err error) { | ||
c.abort = true | ||
errHandler(c.ctx, err) | ||
c.abort = true | ||
errHandler(c.ctx, err) | ||
} | ||
|
||
func (c *Ctx[T]) Abort() { | ||
c.abort = true | ||
c.abort = true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.