1
0
mirror of https://github.com/nitezs/sub2sing-box.git synced 2024-12-24 11:24:41 -05:00
sub2sing-box/api/handler/convert.go

50 lines
996 B
Go
Raw Normal View History

2024-03-11 13:34:08 -04:00
package handler
import (
"encoding/json"
"sub2sing-box/api/model"
iutil "sub2sing-box/internal/util"
putil "sub2sing-box/pkg/util"
2024-03-11 13:34:08 -04:00
"github.com/gin-gonic/gin"
)
func Convert(c *gin.Context) {
c.Header("Content-Type", "application/json")
if c.Query("data") == "" {
c.JSON(400, gin.H{
"error": "Missing data parameter",
})
return
}
j, err := iutil.DecodeBase64(c.Query("data"))
2024-03-11 13:34:08 -04:00
if err != nil {
c.JSON(400, gin.H{
"error": "Invalid data",
})
return
}
var data model.ConvertRequest
err = json.Unmarshal([]byte(j), &data)
if err != nil {
c.JSON(400, gin.H{
"error": err.Error(),
})
return
}
if data.Proxies == nil && data.Subscriptions == nil {
c.JSON(400, gin.H{
"error": "Must provide at least one subscription or proxy",
})
return
}
result, err := putil.Convert(data.Subscriptions, data.Proxies, data.Template, data.Delete, data.Rename)
2024-03-11 13:34:08 -04:00
if err != nil {
c.JSON(400, gin.H{
"error": err.Error(),
})
return
}
c.String(200, result)
}