mirror of
https://gitee.com/goploy/goploy.git
synced 2024-12-05 21:48:39 +08:00
46 lines
1.0 KiB
Go
46 lines
1.0 KiB
Go
// Copyright 2022 The Goploy Authors. All rights reserved.
|
|
// Use of this source code is governed by a GPLv3-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package controller
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"github.com/gorilla/schema"
|
|
"github.com/zhenorzz/goploy/core"
|
|
"gopkg.in/go-playground/validator.v9"
|
|
)
|
|
|
|
// Controller struct
|
|
type Controller struct{}
|
|
|
|
var decoder = schema.NewDecoder()
|
|
|
|
func decodeJson(data []byte, v interface{}) error {
|
|
err := json.Unmarshal(data, v)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if err := core.Validate.Struct(v); err != nil {
|
|
for _, err := range err.(validator.ValidationErrors) {
|
|
return errors.New(err.Translate(core.Trans))
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func decodeQuery(data map[string][]string, v interface{}) error {
|
|
decoder.IgnoreUnknownKeys(true)
|
|
err := decoder.Decode(v, data)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if err := core.Validate.Struct(v); err != nil {
|
|
for _, err := range err.(validator.ValidationErrors) {
|
|
return errors.New(err.Translate(core.Trans))
|
|
}
|
|
}
|
|
return nil
|
|
}
|