1
0
mirror of https://github.com/nitezs/sub2clash.git synced 2024-12-24 23:54:41 -05:00
sub2clash/api/controller/clash.go

36 lines
784 B
Go
Raw Normal View History

2023-09-12 06:40:24 -04:00
package controller
import (
"net/http"
"net/url"
"sub/config"
"sub/validator"
"github.com/gin-gonic/gin"
"gopkg.in/yaml.v3"
)
func SubmodHandler(c *gin.Context) {
// 从请求中获取参数
var query validator.SubQuery
if err := c.ShouldBind(&query); err != nil {
c.String(http.StatusBadRequest, "参数错误: "+err.Error())
return
}
query.Sub, _ = url.QueryUnescape(query.Sub)
// 混合订阅和模板节点
sub, err := MixinSubTemp(query, config.Default.ClashTemplate)
if err != nil {
c.String(http.StatusInternalServerError, err.Error())
return
}
// 添加自定义节点、规则
// 输出
bytes, err := yaml.Marshal(sub)
if err != nil {
c.String(http.StatusInternalServerError, err.Error())
return
}
c.String(http.StatusOK, string(bytes))
}