server.go 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. package server
  2. import (
  3. "be-vpn/internal/dto"
  4. "be-vpn/internal/model"
  5. "be-vpn/internal/storage"
  6. "fmt"
  7. "github.com/gin-gonic/gin"
  8. "log"
  9. "math/rand"
  10. "net/http"
  11. "sort"
  12. "strconv"
  13. "sync"
  14. "time"
  15. )
  16. var nodes = make([]*model.Node, 0)
  17. var locker = sync.RWMutex{}
  18. var totalFreeDuration = uint64((time.Hour * 1).Milliseconds() / 1000)
  19. func Config(c *gin.Context) {
  20. deviceId := c.Query("deviceId")
  21. usedDuration, err := storage.GetUsedDuration(deviceId)
  22. if err != nil {
  23. dto.Error(c, err)
  24. return
  25. }
  26. var node *model.Node
  27. if len(healthNodes()) > 0 {
  28. node = healthNodes()[0]
  29. }
  30. freeTrialDuration := uint64(0)
  31. if usedDuration <= totalFreeDuration {
  32. freeTrialDuration = totalFreeDuration - usedDuration
  33. }
  34. c.JSON(http.StatusOK, dto.ConfigResponse{
  35. Response: dto.NewOkResponse(),
  36. Data: dto.ConfigResult{
  37. FreeTrialDuration: freeTrialDuration,
  38. Timestamp: time.Now().Unix(),
  39. Node: convert2DtoNode(node, 0),
  40. },
  41. })
  42. }
  43. func AddUsedDuration(c *gin.Context) {
  44. deviceId := c.Query("deviceId")
  45. usedDurationStr := c.Query("usedDuration")
  46. log.Printf("deviceId: %s, usedDuration: %s", deviceId, usedDurationStr)
  47. usedDuration, err := strconv.ParseUint(usedDurationStr, 10, 64)
  48. if err != nil {
  49. dto.Error(c, err)
  50. return
  51. }
  52. if existed, err := storage.AddUsedDuration(deviceId, usedDuration); err != nil {
  53. dto.Error(c, err)
  54. return
  55. } else {
  56. freeTrialDuration := totalFreeDuration - existed
  57. if freeTrialDuration > totalFreeDuration || freeTrialDuration < 0 {
  58. freeTrialDuration = 0
  59. }
  60. c.JSON(http.StatusOK, dto.ConfigResponse{
  61. Response: dto.NewOkResponse(),
  62. Data: dto.ConfigResult{
  63. FreeTrialDuration: freeTrialDuration,
  64. Timestamp: time.Now().Unix(),
  65. Node: convert2DtoNode(healthNodes()[0], 0),
  66. },
  67. })
  68. }
  69. }
  70. func Register(c *gin.Context) {
  71. locker.Lock()
  72. defer locker.Unlock()
  73. var request dto.RegisterRequest
  74. if err := c.ShouldBindJSON(&request); err != nil {
  75. dto.BadRequest(c, err)
  76. return
  77. }
  78. for _, node := range nodes {
  79. if node.Ip == request.Ip {
  80. node.Ip = request.Ip
  81. node.Secret = request.Secret
  82. node.CountryCode = request.CountryCode
  83. node.CountryName = request.CountryName
  84. node.City = request.City
  85. node.Vip = request.Vip
  86. node.LastUpdateTime = time.Now()
  87. c.JSON(http.StatusOK, dto.RegisterResponse{
  88. Response: dto.NewOkResponse(),
  89. Data: dto.RegisterResult{
  90. Success: true,
  91. },
  92. })
  93. return
  94. }
  95. }
  96. node := &model.Node{
  97. Ip: request.Ip,
  98. Secret: request.Secret,
  99. LastUpdateTime: time.Now(),
  100. }
  101. nodes = append(nodes, node)
  102. log.Printf("update nodes: %+v", nodes)
  103. }
  104. func List(c *gin.Context) {
  105. locker.RLock()
  106. defer locker.RUnlock()
  107. nodes := healthNodes()
  108. sort.SliceStable(nodes, func(i, j int) bool {
  109. return nodes[i].CountryCode > nodes[j].CountryCode
  110. })
  111. countryLabelSeqs := make(map[string]int)
  112. dtoNodes := make([]*dto.Node, 0)
  113. for _, node := range nodes {
  114. seq, ok := countryLabelSeqs[node.CountryCode]
  115. if !ok {
  116. countryLabelSeqs[node.CountryCode] = 0
  117. } else {
  118. countryLabelSeqs[node.CountryCode] = seq + 1
  119. }
  120. dtoNodes = append(dtoNodes, convert2DtoNode(node, countryLabelSeqs[node.CountryCode]))
  121. }
  122. c.JSON(http.StatusOK, dto.ListResponse{
  123. Response: dto.NewOkResponse(),
  124. Data: dtoNodes,
  125. })
  126. }
  127. func Group(c *gin.Context) {
  128. locker.RLock()
  129. defer locker.RUnlock()
  130. nodes := healthNodes()
  131. sort.SliceStable(nodes, func(i, j int) bool {
  132. return nodes[i].CountryCode > nodes[j].CountryCode
  133. })
  134. countryLabelSeqs := make(map[string]int)
  135. dtoNodes := make([]*dto.Node, 0)
  136. for _, node := range nodes {
  137. seq, ok := countryLabelSeqs[node.CountryCode]
  138. if !ok {
  139. countryLabelSeqs[node.CountryCode] = 0
  140. } else {
  141. countryLabelSeqs[node.CountryCode] = seq + 1
  142. }
  143. dtoNodes = append(dtoNodes, convert2DtoNode(node, countryLabelSeqs[node.CountryCode]))
  144. }
  145. continentMaps := make(map[string]bool)
  146. for _, node := range dtoNodes {
  147. continentMaps[node.Continent] = true
  148. }
  149. continents := make([]string, 0)
  150. for continent := range continentMaps {
  151. continents = append(continents, continent)
  152. }
  153. sort.SliceStable(continents, func(i, j int) bool {
  154. return continents[i] <= continents[j]
  155. })
  156. groupDtos := make([]*dto.Group, 0)
  157. for _, continent := range continents {
  158. groupDto := &dto.Group{
  159. Continent: continent,
  160. Nodes: make([]*dto.Node, 0),
  161. }
  162. for _, dtoNode := range dtoNodes {
  163. if dtoNode.Continent == continent {
  164. groupDto.Nodes = append(groupDto.Nodes, dtoNode)
  165. }
  166. }
  167. groupDtos = append(groupDtos, groupDto)
  168. }
  169. c.JSON(http.StatusOK, dto.GroupResponse{
  170. Response: dto.NewOkResponse(),
  171. Data: groupDtos,
  172. })
  173. }
  174. func SecretRandom(c *gin.Context) {
  175. locker.RLock()
  176. defer locker.RUnlock()
  177. random := rand.Intn(len(nodes))
  178. for i, node := range nodes {
  179. if i == random {
  180. c.Header("Content-Disposition", "attachment; filename=client.ovpn")
  181. c.Data(http.StatusOK, "plain/text", []byte(node.Secret))
  182. return
  183. }
  184. }
  185. c.JSON(http.StatusNotFound, gin.H{
  186. "message": "not found",
  187. })
  188. }
  189. func Secret(c *gin.Context) {
  190. locker.RLock()
  191. defer locker.RUnlock()
  192. var request dto.DetailRequest
  193. if err := c.ShouldBindQuery(&request); err != nil {
  194. dto.BadRequest(c, err)
  195. return
  196. }
  197. for _, node := range nodes {
  198. if node.Ip == request.Ip {
  199. //secret, err := util.AesEncrypt([]byte(node.Secret))
  200. //if err != nil {
  201. // dto.Error(c, err)
  202. // return
  203. //}
  204. c.Header("Content-Disposition", "attachment; filename=client.ovpn")
  205. c.Data(http.StatusOK, "plain/text", []byte(node.Secret))
  206. return
  207. }
  208. }
  209. c.JSON(http.StatusNotFound, gin.H{
  210. "message": "not found ip",
  211. })
  212. }
  213. func Health(c *gin.Context) {
  214. c.JSON(http.StatusOK, gin.H{"status": "up"})
  215. }
  216. func healthNodes() []*model.Node {
  217. healthNodes := make([]*model.Node, 0)
  218. for _, node := range nodes {
  219. if node.LastUpdateTime.Add(10 * time.Second).After(time.Now()) {
  220. healthNodes = append(healthNodes, node)
  221. }
  222. }
  223. return healthNodes
  224. }
  225. func convert2DtoNode(node *model.Node, seq int) *dto.Node {
  226. if node == nil {
  227. return nil
  228. }
  229. icons := map[string]string{
  230. "AE": "http://v.starttransfernow.com/static/AE.png",
  231. "AU": "http://v.starttransfernow.com/static/AU.png",
  232. "BH": "http://v.starttransfernow.com/static/BH.png",
  233. "BR": "http://v.starttransfernow.com/static/BR.png",
  234. "CA": "http://v.starttransfernow.com/static/CA.png",
  235. "CH": "http://v.starttransfernow.com/static/CH.png",
  236. "DE": "http://v.starttransfernow.com/static/DE.png",
  237. "ES": "http://v.starttransfernow.com/static/ES.png",
  238. "FR": "http://v.starttransfernow.com/static/FR.png",
  239. "GB": "http://v.starttransfernow.com/static/GB.png",
  240. "HK": "http://v.starttransfernow.com/static/HK.png",
  241. "ID": "http://v.starttransfernow.com/static/ID.png",
  242. "IL": "http://v.starttransfernow.com/static/IL.png",
  243. "IN": "http://v.starttransfernow.com/static/IN.png",
  244. "IT": "http://v.starttransfernow.com/static/IT.png",
  245. "JP": "http://v.starttransfernow.com/static/JP.png",
  246. "KR": "http://v.starttransfernow.com/static/KR.png",
  247. "SE": "http://v.starttransfernow.com/static/SE.png",
  248. "SG": "http://v.starttransfernow.com/static/SG.png",
  249. "US": "http://v.starttransfernow.com/static/US.png",
  250. "ZA": "http://v.starttransfernow.com/static/ZA.png",
  251. }
  252. countryLabels := map[string]string{
  253. "AE": "United Arab Emirates",
  254. "AU": "Australia",
  255. "BH": "Bahrain",
  256. "BR": "Brazil",
  257. "CA": "Canada",
  258. "CH": "Switzerland",
  259. "DE": "Germany",
  260. "ES": "Spain",
  261. "FR": "France",
  262. "GB": "United Kingdom",
  263. "HK": "Hong Kong",
  264. "ID": "Indonesia",
  265. "IL": "Israel",
  266. "IN": "India",
  267. "IT": "Italy",
  268. "JP": "Japan",
  269. "KR": "South Korea",
  270. "SE": "Sweden",
  271. "SG": "Singapore",
  272. "US": "United States",
  273. "ZA": "South Africa",
  274. }
  275. countryContinents := map[string]string{
  276. "AE": "asia",
  277. "AU": "oce",
  278. "BH": "asia",
  279. "BR": "southam",
  280. "CA": "northam",
  281. "CH": "eu",
  282. "DE": "eu",
  283. "ES": "eu",
  284. "FR": "eu",
  285. "GB": "eu",
  286. "HK": "asia",
  287. "ID": "asia",
  288. "IL": "asia",
  289. "IN": "asia",
  290. "IT": "eu",
  291. "JP": "asia",
  292. "KR": "asia",
  293. "SE": "eu",
  294. "SG": "asia",
  295. "US": "northam",
  296. "ZA": "southam",
  297. }
  298. countryLabel := fmt.Sprintf("%s", countryLabels[node.CountryCode])
  299. return &dto.Node{
  300. Ip: node.Ip,
  301. CountryCode: node.CountryCode,
  302. CountryName: node.CountryName,
  303. City: node.City,
  304. CountryLabel: countryLabel,
  305. Icon: icons[node.CountryCode],
  306. SecretUrl: fmt.Sprintf("http://v.starttransfernow.com/secret?ip=%s", node.Ip),
  307. Continent: countryContinents[node.CountryCode],
  308. Vip: node.Vip,
  309. }
  310. }