123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340 |
- package server
- import (
- "be-vpn/internal/dto"
- "be-vpn/internal/model"
- "be-vpn/internal/storage"
- "fmt"
- "github.com/gin-gonic/gin"
- "log"
- "math/rand"
- "net/http"
- "sort"
- "strconv"
- "sync"
- "time"
- )
- var nodes = make([]*model.Node, 0)
- var locker = sync.RWMutex{}
- var totalFreeDuration = uint64((time.Hour * 1).Milliseconds() / 1000)
- func Config(c *gin.Context) {
- deviceId := c.Query("deviceId")
- usedDuration, err := storage.GetUsedDuration(deviceId)
- if err != nil {
- dto.Error(c, err)
- return
- }
- var node *model.Node
- if len(healthNodes()) > 0 {
- node = healthNodes()[0]
- }
- freeTrialDuration := uint64(0)
- if usedDuration <= totalFreeDuration {
- freeTrialDuration = totalFreeDuration - usedDuration
- }
- c.JSON(http.StatusOK, dto.ConfigResponse{
- Response: dto.NewOkResponse(),
- Data: dto.ConfigResult{
- FreeTrialDuration: freeTrialDuration,
- Timestamp: time.Now().Unix(),
- Node: convert2DtoNode(node, 0),
- },
- })
- }
- func AddUsedDuration(c *gin.Context) {
- deviceId := c.Query("deviceId")
- usedDurationStr := c.Query("usedDuration")
- log.Printf("deviceId: %s, usedDuration: %s", deviceId, usedDurationStr)
- usedDuration, err := strconv.ParseUint(usedDurationStr, 10, 64)
- if err != nil {
- dto.Error(c, err)
- return
- }
- if existed, err := storage.AddUsedDuration(deviceId, usedDuration); err != nil {
- dto.Error(c, err)
- return
- } else {
- freeTrialDuration := totalFreeDuration - existed
- if freeTrialDuration > totalFreeDuration || freeTrialDuration < 0 {
- freeTrialDuration = 0
- }
- c.JSON(http.StatusOK, dto.ConfigResponse{
- Response: dto.NewOkResponse(),
- Data: dto.ConfigResult{
- FreeTrialDuration: freeTrialDuration,
- Timestamp: time.Now().Unix(),
- Node: convert2DtoNode(healthNodes()[0], 0),
- },
- })
- }
- }
- func Register(c *gin.Context) {
- locker.Lock()
- defer locker.Unlock()
- var request dto.RegisterRequest
- if err := c.ShouldBindJSON(&request); err != nil {
- dto.BadRequest(c, err)
- return
- }
- for _, node := range nodes {
- if node.Ip == request.Ip {
- node.Ip = request.Ip
- node.Secret = request.Secret
- node.CountryCode = request.CountryCode
- node.CountryName = request.CountryName
- node.City = request.City
- node.Vip = request.Vip
- node.LastUpdateTime = time.Now()
- c.JSON(http.StatusOK, dto.RegisterResponse{
- Response: dto.NewOkResponse(),
- Data: dto.RegisterResult{
- Success: true,
- },
- })
- return
- }
- }
- node := &model.Node{
- Ip: request.Ip,
- Secret: request.Secret,
- LastUpdateTime: time.Now(),
- }
- nodes = append(nodes, node)
- log.Printf("update nodes: %+v", nodes)
- }
- func List(c *gin.Context) {
- locker.RLock()
- defer locker.RUnlock()
- nodes := healthNodes()
- sort.SliceStable(nodes, func(i, j int) bool {
- return nodes[i].CountryCode > nodes[j].CountryCode
- })
- countryLabelSeqs := make(map[string]int)
- dtoNodes := make([]*dto.Node, 0)
- for _, node := range nodes {
- seq, ok := countryLabelSeqs[node.CountryCode]
- if !ok {
- countryLabelSeqs[node.CountryCode] = 0
- } else {
- countryLabelSeqs[node.CountryCode] = seq + 1
- }
- dtoNodes = append(dtoNodes, convert2DtoNode(node, countryLabelSeqs[node.CountryCode]))
- }
- c.JSON(http.StatusOK, dto.ListResponse{
- Response: dto.NewOkResponse(),
- Data: dtoNodes,
- })
- }
- func Group(c *gin.Context) {
- locker.RLock()
- defer locker.RUnlock()
- nodes := healthNodes()
- sort.SliceStable(nodes, func(i, j int) bool {
- return nodes[i].CountryCode > nodes[j].CountryCode
- })
- countryLabelSeqs := make(map[string]int)
- dtoNodes := make([]*dto.Node, 0)
- for _, node := range nodes {
- seq, ok := countryLabelSeqs[node.CountryCode]
- if !ok {
- countryLabelSeqs[node.CountryCode] = 0
- } else {
- countryLabelSeqs[node.CountryCode] = seq + 1
- }
- dtoNodes = append(dtoNodes, convert2DtoNode(node, countryLabelSeqs[node.CountryCode]))
- }
- continentMaps := make(map[string]bool)
- for _, node := range dtoNodes {
- continentMaps[node.Continent] = true
- }
- continents := make([]string, 0)
- for continent := range continentMaps {
- continents = append(continents, continent)
- }
- sort.SliceStable(continents, func(i, j int) bool {
- return continents[i] <= continents[j]
- })
- groupDtos := make([]*dto.Group, 0)
- for _, continent := range continents {
- groupDto := &dto.Group{
- Continent: continent,
- Nodes: make([]*dto.Node, 0),
- }
- for _, dtoNode := range dtoNodes {
- if dtoNode.Continent == continent {
- groupDto.Nodes = append(groupDto.Nodes, dtoNode)
- }
- }
- groupDtos = append(groupDtos, groupDto)
- }
- c.JSON(http.StatusOK, dto.GroupResponse{
- Response: dto.NewOkResponse(),
- Data: groupDtos,
- })
- }
- func SecretRandom(c *gin.Context) {
- locker.RLock()
- defer locker.RUnlock()
- random := rand.Intn(len(nodes))
- for i, node := range nodes {
- if i == random {
- c.Header("Content-Disposition", "attachment; filename=client.ovpn")
- c.Data(http.StatusOK, "plain/text", []byte(node.Secret))
- return
- }
- }
- c.JSON(http.StatusNotFound, gin.H{
- "message": "not found",
- })
- }
- func Secret(c *gin.Context) {
- locker.RLock()
- defer locker.RUnlock()
- var request dto.DetailRequest
- if err := c.ShouldBindQuery(&request); err != nil {
- dto.BadRequest(c, err)
- return
- }
- for _, node := range nodes {
- if node.Ip == request.Ip {
- //secret, err := util.AesEncrypt([]byte(node.Secret))
- //if err != nil {
- // dto.Error(c, err)
- // return
- //}
- c.Header("Content-Disposition", "attachment; filename=client.ovpn")
- c.Data(http.StatusOK, "plain/text", []byte(node.Secret))
- return
- }
- }
- c.JSON(http.StatusNotFound, gin.H{
- "message": "not found ip",
- })
- }
- func Health(c *gin.Context) {
- c.JSON(http.StatusOK, gin.H{"status": "up"})
- }
- func healthNodes() []*model.Node {
- healthNodes := make([]*model.Node, 0)
- for _, node := range nodes {
- if node.LastUpdateTime.Add(10 * time.Second).After(time.Now()) {
- healthNodes = append(healthNodes, node)
- }
- }
- return healthNodes
- }
- func convert2DtoNode(node *model.Node, seq int) *dto.Node {
- if node == nil {
- return nil
- }
- icons := map[string]string{
- "AE": "http://v.starttransfernow.com/static/AE.png",
- "AU": "http://v.starttransfernow.com/static/AU.png",
- "BH": "http://v.starttransfernow.com/static/BH.png",
- "BR": "http://v.starttransfernow.com/static/BR.png",
- "CA": "http://v.starttransfernow.com/static/CA.png",
- "CH": "http://v.starttransfernow.com/static/CH.png",
- "DE": "http://v.starttransfernow.com/static/DE.png",
- "ES": "http://v.starttransfernow.com/static/ES.png",
- "FR": "http://v.starttransfernow.com/static/FR.png",
- "GB": "http://v.starttransfernow.com/static/GB.png",
- "HK": "http://v.starttransfernow.com/static/HK.png",
- "ID": "http://v.starttransfernow.com/static/ID.png",
- "IL": "http://v.starttransfernow.com/static/IL.png",
- "IN": "http://v.starttransfernow.com/static/IN.png",
- "IT": "http://v.starttransfernow.com/static/IT.png",
- "JP": "http://v.starttransfernow.com/static/JP.png",
- "KR": "http://v.starttransfernow.com/static/KR.png",
- "SE": "http://v.starttransfernow.com/static/SE.png",
- "SG": "http://v.starttransfernow.com/static/SG.png",
- "US": "http://v.starttransfernow.com/static/US.png",
- "ZA": "http://v.starttransfernow.com/static/ZA.png",
- }
- countryLabels := map[string]string{
- "AE": "United Arab Emirates",
- "AU": "Australia",
- "BH": "Bahrain",
- "BR": "Brazil",
- "CA": "Canada",
- "CH": "Switzerland",
- "DE": "Germany",
- "ES": "Spain",
- "FR": "France",
- "GB": "United Kingdom",
- "HK": "Hong Kong",
- "ID": "Indonesia",
- "IL": "Israel",
- "IN": "India",
- "IT": "Italy",
- "JP": "Japan",
- "KR": "South Korea",
- "SE": "Sweden",
- "SG": "Singapore",
- "US": "United States",
- "ZA": "South Africa",
- }
- countryContinents := map[string]string{
- "AE": "asia",
- "AU": "oce",
- "BH": "asia",
- "BR": "southam",
- "CA": "northam",
- "CH": "eu",
- "DE": "eu",
- "ES": "eu",
- "FR": "eu",
- "GB": "eu",
- "HK": "asia",
- "ID": "asia",
- "IL": "asia",
- "IN": "asia",
- "IT": "eu",
- "JP": "asia",
- "KR": "asia",
- "SE": "eu",
- "SG": "asia",
- "US": "northam",
- "ZA": "southam",
- }
- countryLabel := fmt.Sprintf("%s", countryLabels[node.CountryCode])
- return &dto.Node{
- Ip: node.Ip,
- CountryCode: node.CountryCode,
- CountryName: node.CountryName,
- City: node.City,
- CountryLabel: countryLabel,
- Icon: icons[node.CountryCode],
- SecretUrl: fmt.Sprintf("http://v.starttransfernow.com/secret?ip=%s", node.Ip),
- Continent: countryContinents[node.CountryCode],
- Vip: node.Vip,
- }
- }
|