Files
EdgeNode/internal/iplibrary/action_base.go

33 lines
554 B
Go
Raw Permalink Normal View History

2021-02-06 17:34:33 +08:00
package iplibrary
import (
"encoding/json"
2021-02-26 16:33:58 +08:00
"net/http"
2024-07-27 15:42:50 +08:00
"github.com/iwind/TeaGo/maps"
2021-02-06 17:34:33 +08:00
)
type BaseAction struct {
}
func (this *BaseAction) Close() error {
return nil
}
2021-11-14 20:46:08 +08:00
// DoHTTP 处理HTTP请求
2021-02-26 16:33:58 +08:00
func (this *BaseAction) DoHTTP(req *http.Request, resp http.ResponseWriter) (goNext bool, err error) {
return true, nil
}
2021-02-06 17:34:33 +08:00
func (this *BaseAction) convertParams(params maps.Map, ptr interface{}) error {
data, err := json.Marshal(params)
if err != nil {
return err
}
err = json.Unmarshal(data, ptr)
if err != nil {
return err
}
return nil
}