1
0

subController.go 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. package sub
  2. import (
  3. "encoding/base64"
  4. "net"
  5. "strings"
  6. "github.com/gin-gonic/gin"
  7. )
  8. type SUBController struct {
  9. subTitle string
  10. subPath string
  11. subJsonPath string
  12. subEncrypt bool
  13. updateInterval string
  14. subService *SubService
  15. subJsonService *SubJsonService
  16. }
  17. func NewSUBController(
  18. g *gin.RouterGroup,
  19. subPath string,
  20. jsonPath string,
  21. encrypt bool,
  22. showInfo bool,
  23. rModel string,
  24. update string,
  25. jsonFragment string,
  26. jsonNoise string,
  27. jsonMux string,
  28. jsonRules string,
  29. subTitle string,
  30. ) *SUBController {
  31. sub := NewSubService(showInfo, rModel)
  32. a := &SUBController{
  33. subTitle: subTitle,
  34. subPath: subPath,
  35. subJsonPath: jsonPath,
  36. subEncrypt: encrypt,
  37. updateInterval: update,
  38. subService: sub,
  39. subJsonService: NewSubJsonService(jsonFragment, jsonNoise, jsonMux, jsonRules, sub),
  40. }
  41. a.initRouter(g)
  42. return a
  43. }
  44. func (a *SUBController) initRouter(g *gin.RouterGroup) {
  45. gLink := g.Group(a.subPath)
  46. gJson := g.Group(a.subJsonPath)
  47. gLink.GET(":subid", a.subs)
  48. gJson.GET(":subid", a.subJsons)
  49. }
  50. func (a *SUBController) subs(c *gin.Context) {
  51. subId := c.Param("subid")
  52. var host string
  53. if h, err := getHostFromXFH(c.GetHeader("X-Forwarded-Host")); err == nil {
  54. host = h
  55. }
  56. if host == "" {
  57. host = c.GetHeader("X-Real-IP")
  58. }
  59. if host == "" {
  60. var err error
  61. host, _, err = net.SplitHostPort(c.Request.Host)
  62. if err != nil {
  63. host = c.Request.Host
  64. }
  65. }
  66. subs, header, err := a.subService.GetSubs(subId, host)
  67. if err != nil || len(subs) == 0 {
  68. c.String(400, "Error!")
  69. } else {
  70. result := ""
  71. for _, sub := range subs {
  72. result += sub + "\n"
  73. }
  74. // Add headers
  75. c.Writer.Header().Set("Subscription-Userinfo", header)
  76. c.Writer.Header().Set("Profile-Update-Interval", a.updateInterval)
  77. c.Writer.Header().Set("Profile-Title", a.subTitle)
  78. if a.subEncrypt {
  79. c.String(200, base64.StdEncoding.EncodeToString([]byte(result)))
  80. } else {
  81. c.String(200, result)
  82. }
  83. }
  84. }
  85. func (a *SUBController) subJsons(c *gin.Context) {
  86. subId := c.Param("subid")
  87. var host string
  88. if h, err := getHostFromXFH(c.GetHeader("X-Forwarded-Host")); err == nil {
  89. host = h
  90. }
  91. if host == "" {
  92. host = c.GetHeader("X-Real-IP")
  93. }
  94. if host == "" {
  95. var err error
  96. host, _, err = net.SplitHostPort(c.Request.Host)
  97. if err != nil {
  98. host = c.Request.Host
  99. }
  100. }
  101. jsonSub, header, err := a.subJsonService.GetJson(subId, host)
  102. if err != nil || len(jsonSub) == 0 {
  103. c.String(400, "Error!")
  104. } else {
  105. // Add headers
  106. c.Writer.Header().Set("Subscription-Userinfo", header)
  107. c.Writer.Header().Set("Profile-Update-Interval", a.updateInterval)
  108. c.Writer.Header().Set("Profile-Title", a.subTitle)
  109. c.String(200, jsonSub)
  110. }
  111. }
  112. func getHostFromXFH(s string) (string, error) {
  113. if strings.Contains(s, ":") {
  114. realHost, _, err := net.SplitHostPort(s)
  115. if err != nil {
  116. return "", err
  117. }
  118. return realHost, nil
  119. }
  120. return s, nil
  121. }