mirror of
https://github.com/bestnite/sub2sing-box.git
synced 2025-06-16 18:13:19 +08:00
feat: api server
This commit is contained in:
49
api/handler/convert.go
Normal file
49
api/handler/convert.go
Normal file
@ -0,0 +1,49 @@
|
||||
package handler
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"sub2sing-box/api/model"
|
||||
"sub2sing-box/internal"
|
||||
"sub2sing-box/pkg/util"
|
||||
|
||||
"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 := internal.DecodeBase64(c.Query("data"))
|
||||
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 := util.Convert(data.Subscriptions, data.Proxies, data.Template, data.Delete, data.Rename)
|
||||
if err != nil {
|
||||
c.JSON(400, gin.H{
|
||||
"error": err.Error(),
|
||||
})
|
||||
return
|
||||
}
|
||||
c.String(200, result)
|
||||
}
|
Reference in New Issue
Block a user