server.go 5.7 KB

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