server.go 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. package server
  2. import (
  3. "be-vpn/internal/dto"
  4. "be-vpn/internal/model"
  5. "fmt"
  6. "github.com/gin-gonic/gin"
  7. "log"
  8. "net/http"
  9. "sort"
  10. "sync"
  11. "time"
  12. )
  13. var nodes = make([]*model.Node, 0)
  14. var locker = sync.RWMutex{}
  15. func Register(c *gin.Context) {
  16. locker.Lock()
  17. defer locker.Unlock()
  18. var request dto.RegisterRequest
  19. if err := c.ShouldBindJSON(&request); err != nil {
  20. dto.BadRequest(c, err)
  21. return
  22. }
  23. for _, node := range nodes {
  24. if node.Ip == request.Ip {
  25. node.Ip = request.Ip
  26. node.Secret = request.Secret
  27. node.CountryCode = request.CountryCode
  28. node.CountryName = request.CountryName
  29. node.City = request.City
  30. node.Vip = request.Vip
  31. node.LastUpdateTime = time.Now()
  32. c.JSON(http.StatusOK, dto.RegisterResponse{
  33. Response: dto.NewOkResponse(),
  34. Data: dto.RegisterResult{
  35. Success: true,
  36. },
  37. })
  38. return
  39. }
  40. }
  41. node := &model.Node{
  42. Ip: request.Ip,
  43. Secret: request.Secret,
  44. LastUpdateTime: time.Now(),
  45. }
  46. nodes = append(nodes, node)
  47. log.Printf("update nodes: %+v", nodes)
  48. }
  49. func Group(c *gin.Context) {
  50. group(c, "v.starttransfernow.com", func(node *model.Node) bool {
  51. return true
  52. })
  53. }
  54. func V2Group(c *gin.Context) {
  55. vip := c.Query("vip")
  56. group(c, "v.sweeterlife.net", func(node *model.Node) bool {
  57. return (vip == "true" && node.Vip) || (vip == "false" && !node.Vip)
  58. })
  59. }
  60. func group(c *gin.Context, host string, predicate func(*model.Node) bool) {
  61. locker.RLock()
  62. defer locker.RUnlock()
  63. nodes := healthNodes()
  64. sort.SliceStable(nodes, func(i, j int) bool {
  65. return nodes[i].CountryCode > nodes[j].CountryCode
  66. })
  67. countryLabelSeqs := make(map[string]int)
  68. dtoNodes := make([]*dto.Node, 0)
  69. for _, node := range nodes {
  70. if predicate(node) {
  71. seq, ok := countryLabelSeqs[node.CountryCode]
  72. if !ok {
  73. countryLabelSeqs[node.CountryCode] = 0
  74. } else {
  75. countryLabelSeqs[node.CountryCode] = seq + 1
  76. }
  77. dtoNodes = append(dtoNodes, convert2DtoNode(node, host))
  78. }
  79. }
  80. continentMaps := make(map[string]bool)
  81. for _, node := range dtoNodes {
  82. continentMaps[node.Continent] = true
  83. }
  84. continents := make([]string, 0)
  85. for continent := range continentMaps {
  86. continents = append(continents, continent)
  87. }
  88. sort.SliceStable(continents, func(i, j int) bool {
  89. return continents[i] <= continents[j]
  90. })
  91. groupDtos := make([]*dto.Group, 0)
  92. for _, continent := range continents {
  93. groupDto := &dto.Group{
  94. Continent: continent,
  95. Nodes: make([]*dto.Node, 0),
  96. }
  97. for _, dtoNode := range dtoNodes {
  98. if dtoNode.Continent == continent {
  99. groupDto.Nodes = append(groupDto.Nodes, dtoNode)
  100. }
  101. }
  102. groupDtos = append(groupDtos, groupDto)
  103. }
  104. c.JSON(http.StatusOK, dto.GroupResponse{
  105. Response: dto.NewOkResponse(),
  106. Data: groupDtos,
  107. })
  108. }
  109. func Secret(c *gin.Context) {
  110. locker.RLock()
  111. defer locker.RUnlock()
  112. var request dto.DetailRequest
  113. if err := c.ShouldBindQuery(&request); err != nil {
  114. dto.BadRequest(c, err)
  115. return
  116. }
  117. for _, node := range nodes {
  118. if node.Ip == request.Ip {
  119. c.Header("Content-Disposition", "attachment; filename=client.ovpn")
  120. c.Data(http.StatusOK, "plain/text", []byte(node.Secret))
  121. return
  122. }
  123. }
  124. c.JSON(http.StatusNotFound, gin.H{
  125. "message": "not found ip",
  126. })
  127. }
  128. func Health(c *gin.Context) {
  129. c.JSON(http.StatusOK, gin.H{"status": "up"})
  130. }
  131. func healthNodes() []*model.Node {
  132. healthNodes := make([]*model.Node, 0)
  133. for _, node := range nodes {
  134. if node.LastUpdateTime.Add(10 * time.Second).After(time.Now()) {
  135. healthNodes = append(healthNodes, node)
  136. }
  137. }
  138. return healthNodes
  139. }
  140. func convert2DtoNode(node *model.Node, host string) *dto.Node {
  141. if node == nil {
  142. return nil
  143. }
  144. icons := map[string]string{
  145. "AE": "http://v.starttransfernow.com/static/AE.png",
  146. "AU": "http://v.starttransfernow.com/static/AU.png",
  147. "BH": "http://v.starttransfernow.com/static/BH.png",
  148. "BR": "http://v.starttransfernow.com/static/BR.png",
  149. "CA": "http://v.starttransfernow.com/static/CA.png",
  150. "CH": "http://v.starttransfernow.com/static/CH.png",
  151. "DE": "http://v.starttransfernow.com/static/DE.png",
  152. "ES": "http://v.starttransfernow.com/static/ES.png",
  153. "FR": "http://v.starttransfernow.com/static/FR.png",
  154. "GB": "http://v.starttransfernow.com/static/GB.png",
  155. "HK": "http://v.starttransfernow.com/static/HK.png",
  156. "ID": "http://v.starttransfernow.com/static/ID.png",
  157. "IL": "http://v.starttransfernow.com/static/IL.png",
  158. "IN": "http://v.starttransfernow.com/static/IN.png",
  159. "IT": "http://v.starttransfernow.com/static/IT.png",
  160. "JP": "http://v.starttransfernow.com/static/JP.png",
  161. "KR": "http://v.starttransfernow.com/static/KR.png",
  162. "SE": "http://v.starttransfernow.com/static/SE.png",
  163. "SG": "http://v.starttransfernow.com/static/SG.png",
  164. "US": "http://v.starttransfernow.com/static/US.png",
  165. "ZA": "http://v.starttransfernow.com/static/ZA.png",
  166. }
  167. countryLabels := map[string]string{
  168. "AE": "United Arab Emirates",
  169. "AU": "Australia",
  170. "BH": "Bahrain",
  171. "BR": "Brazil",
  172. "CA": "Canada",
  173. "CH": "Switzerland",
  174. "DE": "Germany",
  175. "ES": "Spain",
  176. "FR": "France",
  177. "GB": "United Kingdom",
  178. "HK": "Hong Kong",
  179. "ID": "Indonesia",
  180. "IL": "Israel",
  181. "IN": "India",
  182. "IT": "Italy",
  183. "JP": "Japan",
  184. "KR": "South Korea",
  185. "SE": "Sweden",
  186. "SG": "Singapore",
  187. "US": "United States",
  188. "ZA": "South Africa",
  189. }
  190. countryContinents := map[string]string{
  191. "AE": "asia",
  192. "AU": "oce",
  193. "BH": "asia",
  194. "BR": "southam",
  195. "CA": "northam",
  196. "CH": "eu",
  197. "DE": "eu",
  198. "ES": "eu",
  199. "FR": "eu",
  200. "GB": "eu",
  201. "HK": "asia",
  202. "ID": "asia",
  203. "IL": "asia",
  204. "IN": "asia",
  205. "IT": "eu",
  206. "JP": "asia",
  207. "KR": "asia",
  208. "SE": "eu",
  209. "SG": "asia",
  210. "US": "northam",
  211. "ZA": "southam",
  212. }
  213. countryLabel := fmt.Sprintf("%s", countryLabels[node.CountryCode])
  214. return &dto.Node{
  215. Ip: node.Ip,
  216. CountryCode: node.CountryCode,
  217. CountryName: node.CountryName,
  218. City: node.City,
  219. CountryLabel: countryLabel,
  220. Icon: icons[node.CountryCode],
  221. SecretUrl: fmt.Sprintf("http://%s/secret?ip=%s", host, node.Ip),
  222. Continent: countryContinents[node.CountryCode],
  223. Vip: node.Vip,
  224. }
  225. }