2023-05-22 14:36:34 +00:00
|
|
|
package sub
|
2023-04-09 19:43:18 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/base64"
|
2025-09-14 21:08:09 +00:00
|
|
|
"fmt"
|
2024-08-11 16:26:43 +00:00
|
|
|
"strings"
|
2025-09-14 17:44:26 +00:00
|
|
|
"x-ui/config"
|
2023-04-09 19:43:18 +00:00
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
)
|
|
|
|
|
|
|
|
type SUBController struct {
|
2025-03-15 07:16:59 +00:00
|
|
|
subTitle string
|
2024-02-21 10:47:52 +00:00
|
|
|
subPath string
|
|
|
|
subJsonPath string
|
|
|
|
subEncrypt bool
|
|
|
|
updateInterval string
|
|
|
|
|
|
|
|
subService *SubService
|
|
|
|
subJsonService *SubJsonService
|
2023-04-09 19:43:18 +00:00
|
|
|
}
|
|
|
|
|
2024-02-21 10:47:52 +00:00
|
|
|
func NewSUBController(
|
|
|
|
g *gin.RouterGroup,
|
|
|
|
subPath string,
|
|
|
|
jsonPath string,
|
|
|
|
encrypt bool,
|
|
|
|
showInfo bool,
|
|
|
|
rModel string,
|
|
|
|
update string,
|
2024-03-10 21:31:24 +00:00
|
|
|
jsonFragment string,
|
2024-08-29 09:27:43 +00:00
|
|
|
jsonNoise string,
|
2024-03-12 16:14:51 +00:00
|
|
|
jsonMux string,
|
|
|
|
jsonRules string,
|
2025-03-15 07:16:59 +00:00
|
|
|
subTitle string,
|
2024-03-10 21:31:24 +00:00
|
|
|
) *SUBController {
|
2024-03-11 12:44:24 +00:00
|
|
|
sub := NewSubService(showInfo, rModel)
|
2024-02-21 10:47:52 +00:00
|
|
|
a := &SUBController{
|
2025-03-15 07:16:59 +00:00
|
|
|
subTitle: subTitle,
|
2024-02-21 10:47:52 +00:00
|
|
|
subPath: subPath,
|
|
|
|
subJsonPath: jsonPath,
|
|
|
|
subEncrypt: encrypt,
|
|
|
|
updateInterval: update,
|
|
|
|
|
2024-03-11 12:44:24 +00:00
|
|
|
subService: sub,
|
2024-08-29 09:27:43 +00:00
|
|
|
subJsonService: NewSubJsonService(jsonFragment, jsonNoise, jsonMux, jsonRules, sub),
|
2024-02-21 10:47:52 +00:00
|
|
|
}
|
2023-04-09 19:43:18 +00:00
|
|
|
a.initRouter(g)
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *SUBController) initRouter(g *gin.RouterGroup) {
|
2024-02-21 10:47:52 +00:00
|
|
|
gLink := g.Group(a.subPath)
|
|
|
|
gJson := g.Group(a.subJsonPath)
|
2023-04-09 19:43:18 +00:00
|
|
|
|
2024-02-21 10:47:52 +00:00
|
|
|
gLink.GET(":subid", a.subs)
|
|
|
|
gJson.GET(":subid", a.subJsons)
|
2023-04-09 19:43:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a *SUBController) subs(c *gin.Context) {
|
|
|
|
subId := c.Param("subid")
|
2025-09-13 23:22:42 +00:00
|
|
|
scheme, host, hostWithPort, hostHeader := a.subService.ResolveRequest(c)
|
2025-09-14 21:08:09 +00:00
|
|
|
subs, lastOnline, traffic, err := a.subService.GetSubs(subId, host)
|
2023-04-18 18:04:06 +00:00
|
|
|
if err != nil || len(subs) == 0 {
|
2023-04-09 19:43:18 +00:00
|
|
|
c.String(400, "Error!")
|
|
|
|
} else {
|
|
|
|
result := ""
|
|
|
|
for _, sub := range subs {
|
|
|
|
result += sub + "\n"
|
|
|
|
}
|
2023-04-18 18:04:06 +00:00
|
|
|
|
2025-09-13 23:22:42 +00:00
|
|
|
// If the request expects HTML (e.g., browser) or explicitly asked (?html=1 or ?view=html), render the info page here
|
|
|
|
accept := c.GetHeader("Accept")
|
|
|
|
if strings.Contains(strings.ToLower(accept), "text/html") || c.Query("html") == "1" || strings.EqualFold(c.Query("view"), "html") {
|
|
|
|
// Build page data in service
|
|
|
|
subURL, subJsonURL := a.subService.BuildURLs(scheme, hostWithPort, a.subPath, a.subJsonPath, subId)
|
2025-09-14 21:08:09 +00:00
|
|
|
page := a.subService.BuildPageData(subId, hostHeader, traffic, lastOnline, subs, subURL, subJsonURL)
|
2025-09-13 23:22:42 +00:00
|
|
|
c.HTML(200, "subscription.html", gin.H{
|
|
|
|
"title": "subscription.title",
|
2025-09-14 17:44:26 +00:00
|
|
|
"cur_ver": config.GetVersion(),
|
2025-09-13 23:22:42 +00:00
|
|
|
"host": page.Host,
|
|
|
|
"base_path": page.BasePath,
|
|
|
|
"sId": page.SId,
|
|
|
|
"download": page.Download,
|
|
|
|
"upload": page.Upload,
|
|
|
|
"total": page.Total,
|
|
|
|
"used": page.Used,
|
|
|
|
"remained": page.Remained,
|
|
|
|
"expire": page.Expire,
|
|
|
|
"lastOnline": page.LastOnline,
|
|
|
|
"datepicker": page.Datepicker,
|
|
|
|
"downloadByte": page.DownloadByte,
|
|
|
|
"uploadByte": page.UploadByte,
|
|
|
|
"totalByte": page.TotalByte,
|
|
|
|
"subUrl": page.SubUrl,
|
|
|
|
"subJsonUrl": page.SubJsonUrl,
|
|
|
|
"result": page.Result,
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2023-04-18 18:04:06 +00:00
|
|
|
|
2025-09-14 17:44:26 +00:00
|
|
|
// Add headers
|
2025-09-14 21:08:09 +00:00
|
|
|
header := fmt.Sprintf("upload=%d; download=%d; total=%d; expire=%d", traffic.Up, traffic.Down, traffic.Total, traffic.ExpiryTime/1000)
|
2025-09-14 17:44:26 +00:00
|
|
|
a.ApplyCommonHeaders(c, header, a.updateInterval, a.subTitle)
|
|
|
|
|
2024-02-21 10:47:52 +00:00
|
|
|
if a.subEncrypt {
|
2023-08-26 13:24:01 +00:00
|
|
|
c.String(200, base64.StdEncoding.EncodeToString([]byte(result)))
|
|
|
|
} else {
|
|
|
|
c.String(200, result)
|
|
|
|
}
|
2023-04-09 19:43:18 +00:00
|
|
|
}
|
|
|
|
}
|
2024-02-21 10:47:52 +00:00
|
|
|
|
|
|
|
func (a *SUBController) subJsons(c *gin.Context) {
|
|
|
|
subId := c.Param("subid")
|
2025-09-13 23:22:42 +00:00
|
|
|
_, host, _, _ := a.subService.ResolveRequest(c)
|
2024-02-21 10:47:52 +00:00
|
|
|
jsonSub, header, err := a.subJsonService.GetJson(subId, host)
|
|
|
|
if err != nil || len(jsonSub) == 0 {
|
|
|
|
c.String(400, "Error!")
|
|
|
|
} else {
|
|
|
|
|
2025-09-14 17:44:26 +00:00
|
|
|
// Add headers
|
|
|
|
a.ApplyCommonHeaders(c, header, a.updateInterval, a.subTitle)
|
2024-02-21 10:47:52 +00:00
|
|
|
|
|
|
|
c.String(200, jsonSub)
|
|
|
|
}
|
|
|
|
}
|
2024-08-11 16:26:43 +00:00
|
|
|
|
2025-09-14 17:44:26 +00:00
|
|
|
func (a *SUBController) ApplyCommonHeaders(c *gin.Context, header, updateInterval, profileTitle string) {
|
|
|
|
c.Writer.Header().Set("Subscription-Userinfo", header)
|
|
|
|
c.Writer.Header().Set("Profile-Update-Interval", updateInterval)
|
|
|
|
c.Writer.Header().Set("Profile-Title", "base64:"+base64.StdEncoding.EncodeToString([]byte(profileTitle)))
|
|
|
|
}
|