代码拉取完成,页面将自动刷新
package webs
import (
"io/ioutil"
"strings"
"github.com/kataras/iris/v12"
"github.com/lithammer/shortuuid"
"gopkg.in/yaml.v3"
)
// Handler 句柄
type Handler struct {
Method string // GET POST PUT DELETE
Path string // 路径
File string // 文件
Type string // Binary,Text,HTML,JSON,JSONP,XML
data []byte //
}
// Handler 句柄
func (h *Handler) Handler() iris.Handler {
if h.data == nil {
h.data, _ = ioutil.ReadFile(h.File)
}
return func(ctx iris.Context) {
if h.data == nil {
return
}
if strings.EqualFold(h.Type, "Json") {
json := string(h.data)
ctx.Text(strings.ReplaceAll(json, "UUID", shortuuid.New()))
ctx.Header("Content-Type", "application/json")
return
}
if strings.EqualFold(h.Type, "Text") {
ctx.Text(string(h.data))
return
}
if strings.EqualFold(h.Type, "Binary") {
ctx.Binary(h.data)
return
}
}
}
// Load 加载
func Load(file string) (hs []Handler, err error) {
var bs []byte
if bs, err = ioutil.ReadFile(file); err != nil {
return
}
err = yaml.Unmarshal(bs, &hs)
return
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。