mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-03 23:20:25 +08:00
32 lines
546 B
Go
32 lines
546 B
Go
package iplibrary
|
|
|
|
import (
|
|
"encoding/json"
|
|
"github.com/iwind/TeaGo/maps"
|
|
"net/http"
|
|
)
|
|
|
|
type BaseAction struct {
|
|
}
|
|
|
|
func (this *BaseAction) Close() error {
|
|
return nil
|
|
}
|
|
|
|
// 处理HTTP请求
|
|
func (this *BaseAction) DoHTTP(req *http.Request, resp http.ResponseWriter) (goNext bool, err error) {
|
|
return true, nil
|
|
}
|
|
|
|
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
|
|
}
|