1
0

entity.go 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. package entity
  2. import (
  3. "crypto/tls"
  4. "net"
  5. "strings"
  6. "time"
  7. "x-ui/util/common"
  8. )
  9. type Msg struct {
  10. Success bool `json:"success"`
  11. Msg string `json:"msg"`
  12. Obj any `json:"obj"`
  13. }
  14. type AllSetting struct {
  15. WebListen string `json:"webListen" form:"webListen"`
  16. WebDomain string `json:"webDomain" form:"webDomain"`
  17. WebPort int `json:"webPort" form:"webPort"`
  18. WebCertFile string `json:"webCertFile" form:"webCertFile"`
  19. WebKeyFile string `json:"webKeyFile" form:"webKeyFile"`
  20. WebBasePath string `json:"webBasePath" form:"webBasePath"`
  21. SessionMaxAge int `json:"sessionMaxAge" form:"sessionMaxAge"`
  22. PageSize int `json:"pageSize" form:"pageSize"`
  23. ExpireDiff int `json:"expireDiff" form:"expireDiff"`
  24. TrafficDiff int `json:"trafficDiff" form:"trafficDiff"`
  25. RemarkModel string `json:"remarkModel" form:"remarkModel"`
  26. TgBotEnable bool `json:"tgBotEnable" form:"tgBotEnable"`
  27. TgBotToken string `json:"tgBotToken" form:"tgBotToken"`
  28. TgBotProxy string `json:"tgBotProxy" form:"tgBotProxy"`
  29. TgBotAPIServer string `json:"tgBotAPIServer" form:"tgBotAPIServer"`
  30. TgBotChatId string `json:"tgBotChatId" form:"tgBotChatId"`
  31. TgRunTime string `json:"tgRunTime" form:"tgRunTime"`
  32. TgBotBackup bool `json:"tgBotBackup" form:"tgBotBackup"`
  33. TgBotLoginNotify bool `json:"tgBotLoginNotify" form:"tgBotLoginNotify"`
  34. TgCpu int `json:"tgCpu" form:"tgCpu"`
  35. TgLang string `json:"tgLang" form:"tgLang"`
  36. TimeLocation string `json:"timeLocation" form:"timeLocation"`
  37. TwoFactorEnable bool `json:"twoFactorEnable" form:"twoFactorEnable"`
  38. TwoFactorToken string `json:"twoFactorToken" form:"twoFactorToken"`
  39. SubEnable bool `json:"subEnable" form:"subEnable"`
  40. SubTitle string `json:"subTitle" form:"subTitle"`
  41. SubListen string `json:"subListen" form:"subListen"`
  42. SubPort int `json:"subPort" form:"subPort"`
  43. SubPath string `json:"subPath" form:"subPath"`
  44. SubDomain string `json:"subDomain" form:"subDomain"`
  45. SubCertFile string `json:"subCertFile" form:"subCertFile"`
  46. SubKeyFile string `json:"subKeyFile" form:"subKeyFile"`
  47. SubUpdates int `json:"subUpdates" form:"subUpdates"`
  48. ExternalTrafficInformEnable bool `json:"externalTrafficInformEnable" form:"externalTrafficInformEnable"`
  49. ExternalTrafficInformURI string `json:"externalTrafficInformURI" form:"externalTrafficInformURI"`
  50. SubEncrypt bool `json:"subEncrypt" form:"subEncrypt"`
  51. SubShowInfo bool `json:"subShowInfo" form:"subShowInfo"`
  52. SubURI string `json:"subURI" form:"subURI"`
  53. SubJsonPath string `json:"subJsonPath" form:"subJsonPath"`
  54. SubJsonURI string `json:"subJsonURI" form:"subJsonURI"`
  55. SubJsonFragment string `json:"subJsonFragment" form:"subJsonFragment"`
  56. SubJsonNoises string `json:"subJsonNoises" form:"subJsonNoises"`
  57. SubJsonMux string `json:"subJsonMux" form:"subJsonMux"`
  58. SubJsonRules string `json:"subJsonRules" form:"subJsonRules"`
  59. Datepicker string `json:"datepicker" form:"datepicker"`
  60. }
  61. func (s *AllSetting) CheckValid() error {
  62. if s.WebListen != "" {
  63. ip := net.ParseIP(s.WebListen)
  64. if ip == nil {
  65. return common.NewError("web listen is not valid ip:", s.WebListen)
  66. }
  67. }
  68. if s.SubListen != "" {
  69. ip := net.ParseIP(s.SubListen)
  70. if ip == nil {
  71. return common.NewError("Sub listen is not valid ip:", s.SubListen)
  72. }
  73. }
  74. if s.WebPort <= 0 || s.WebPort > 65535 {
  75. return common.NewError("web port is not a valid port:", s.WebPort)
  76. }
  77. if s.SubPort <= 0 || s.SubPort > 65535 {
  78. return common.NewError("Sub port is not a valid port:", s.SubPort)
  79. }
  80. if (s.SubPort == s.WebPort) && (s.WebListen == s.SubListen) {
  81. return common.NewError("Sub and Web could not use same ip:port, ", s.SubListen, ":", s.SubPort, " & ", s.WebListen, ":", s.WebPort)
  82. }
  83. if s.WebCertFile != "" || s.WebKeyFile != "" {
  84. _, err := tls.LoadX509KeyPair(s.WebCertFile, s.WebKeyFile)
  85. if err != nil {
  86. return common.NewErrorf("cert file <%v> or key file <%v> invalid: %v", s.WebCertFile, s.WebKeyFile, err)
  87. }
  88. }
  89. if s.SubCertFile != "" || s.SubKeyFile != "" {
  90. _, err := tls.LoadX509KeyPair(s.SubCertFile, s.SubKeyFile)
  91. if err != nil {
  92. return common.NewErrorf("cert file <%v> or key file <%v> invalid: %v", s.SubCertFile, s.SubKeyFile, err)
  93. }
  94. }
  95. if !strings.HasPrefix(s.WebBasePath, "/") {
  96. s.WebBasePath = "/" + s.WebBasePath
  97. }
  98. if !strings.HasSuffix(s.WebBasePath, "/") {
  99. s.WebBasePath += "/"
  100. }
  101. if !strings.HasPrefix(s.SubPath, "/") {
  102. s.SubPath = "/" + s.SubPath
  103. }
  104. if !strings.HasSuffix(s.SubPath, "/") {
  105. s.SubPath += "/"
  106. }
  107. if !strings.HasPrefix(s.SubJsonPath, "/") {
  108. s.SubJsonPath = "/" + s.SubJsonPath
  109. }
  110. if !strings.HasSuffix(s.SubJsonPath, "/") {
  111. s.SubJsonPath += "/"
  112. }
  113. _, err := time.LoadLocation(s.TimeLocation)
  114. if err != nil {
  115. return common.NewError("time location not exist:", s.TimeLocation)
  116. }
  117. return nil
  118. }