1
0
mirror of https://github.com/nitezs/sub2clash.git synced 2024-12-25 17:00:53 -05:00
sub2clash/api/handler/clash.go

44 lines
987 B
Go
Raw Normal View History

package handler
2023-09-12 06:40:24 -04:00
import (
"net/http"
2023-09-12 12:46:17 -04:00
"sub2clash/config"
"sub2clash/model"
2023-09-12 12:46:17 -04:00
"sub2clash/validator"
"github.com/gin-gonic/gin"
"gopkg.in/yaml.v3"
2023-09-12 06:40:24 -04:00
)
func SubmodHandler(c *gin.Context) {
// 从请求中获取参数
2023-09-13 01:47:22 -04:00
query, err := validator.ParseQuery(c)
if err != nil {
c.String(http.StatusBadRequest, err.Error())
2023-09-12 06:40:24 -04:00
return
}
sub, err := BuildSub(model.Clash, query, config.Default.ClashTemplate)
2023-09-12 06:40:24 -04:00
if err != nil {
c.String(http.StatusInternalServerError, err.Error())
return
}
// 输出
2023-09-25 03:43:21 -04:00
if query.NodeListMode {
nodelist := model.NodeList{}
nodelist.Proxies = sub.Proxies
marshal, err := yaml.Marshal(nodelist)
if err != nil {
c.String(http.StatusInternalServerError, "YAML序列化失败: "+err.Error())
return
}
c.String(http.StatusOK, string(marshal))
return
}
2023-09-13 01:47:22 -04:00
marshal, err := yaml.Marshal(sub)
2023-09-12 06:40:24 -04:00
if err != nil {
2023-09-13 01:47:22 -04:00
c.String(http.StatusInternalServerError, "YAML序列化失败: "+err.Error())
2023-09-12 06:40:24 -04:00
return
}
2023-09-13 01:47:22 -04:00
c.String(http.StatusOK, string(marshal))
2023-09-12 06:40:24 -04:00
}