get body request, validator fix

This commit is contained in:
Diana 2024-09-28 17:40:42 -05:00
parent 21319dab48
commit a82b6812e3
2 changed files with 34 additions and 8 deletions

View file

@ -68,6 +68,36 @@ func (c *Context) RequestParamExists(key string) bool {
return c.Request.httpRequest.Form.Has(key)
}
func (c *Context) GetRequesForm() interface{} {
return c.Request.httpRequest.Form
}
func (c *Context) GetRequesBodyMap() map[string]interface{} {
var dat map[string]any
body := c.Request.httpRequest.Body
if body != nil {
if content, err := io.ReadAll(body); err == nil {
json.Unmarshal(content, &dat)
}
}
return dat
}
// get json body and bind to dest interface
func (c *Context) GetRequesBodyStruct(dest interface{}) error {
body := c.Request.httpRequest.Body
if body != nil {
value := reflect.ValueOf(dest)
if value.Kind() != reflect.Ptr {
fmt.Println("dest is not a pointer")
return errors.New("dest is not a pointer")
}
err := json.NewDecoder(body).Decode(dest)
return err
}
return nil
}
func (c *Context) GetHeader(key string) string {
return c.Request.httpRequest.Header.Get(key)
}

View file

@ -33,18 +33,14 @@ func (v *Validator) Validate(data map[string]interface{}, rules map[string]inter
vr = validationResult{}
vr.hasFailed = false
res := map[string]string{}
for key, val := range data {
_, ok := rules[key]
if !ok {
continue
}
rls, err := parseRules(rules[key])
for rule_key, rule_val := range rules {
rls, err := parseRules(rule_val)
if err != nil {
panic(err.Error())
}
err = validation.Validate(val, rls...)
err = validation.Validate(data[rule_key], rls...)
if err != nil {
res[key] = fmt.Sprintf("%v: %v", key, err.Error())
res[rule_key] = fmt.Sprintf("%v: %v", rule_key, err.Error())
}
}