mirror of
https://github.com/pocketbase/pocketbase.git
synced 2024-11-25 01:16:21 +02:00
34 lines
817 B
Go
34 lines
817 B
Go
package models
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/pocketbase/pocketbase/models/schema"
|
|
)
|
|
|
|
// RequestInfo defines a HTTP request data struct, usually used
|
|
// as part of the `@request.*` filter resolver.
|
|
type RequestInfo struct {
|
|
Method string `json:"method"`
|
|
Query map[string]any `json:"query"`
|
|
Data map[string]any `json:"data"`
|
|
Headers map[string]any `json:"headers"`
|
|
AuthRecord *Record `json:"authRecord"`
|
|
Admin *Admin `json:"admin"`
|
|
}
|
|
|
|
// HasModifierDataKeys loosely checks if the current struct has any modifier Data keys.
|
|
func (r *RequestInfo) HasModifierDataKeys() bool {
|
|
allModifiers := schema.FieldValueModifiers()
|
|
|
|
for key := range r.Data {
|
|
for _, m := range allModifiers {
|
|
if strings.HasSuffix(key, m) {
|
|
return true
|
|
}
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|