obj.go 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. package file
  2. import (
  3. "github.com/cnlh/nps/lib/rate"
  4. "github.com/pkg/errors"
  5. "strings"
  6. "sync"
  7. "sync/atomic"
  8. "time"
  9. )
  10. type Flow struct {
  11. ExportFlow int64
  12. InletFlow int64
  13. FlowLimit int64
  14. sync.RWMutex
  15. }
  16. func (s *Flow) Add(in, out int64) {
  17. s.Lock()
  18. defer s.Unlock()
  19. s.InletFlow += int64(in)
  20. s.ExportFlow += int64(out)
  21. }
  22. type Config struct {
  23. U string
  24. P string
  25. Compress bool
  26. Crypt bool
  27. }
  28. type Client struct {
  29. Cnf *Config
  30. Id int //id
  31. VerifyKey string //verify key
  32. Addr string //the ip of client
  33. Remark string //remark
  34. Status bool //is allow connect
  35. IsConnect bool //is the client connect
  36. RateLimit int //rate /kb
  37. Flow *Flow //flow setting
  38. Rate *rate.Rate //rate limit
  39. NoStore bool //no store to file
  40. NoDisplay bool //no display on web
  41. MaxConn int //the max connection num of client allow
  42. NowConn int32 //the connection num of now
  43. WebUserName string //the username of web login
  44. WebPassword string //the password of web login
  45. ConfigConnAllow bool //is allow connected by config file
  46. sync.RWMutex
  47. }
  48. func NewClient(vKey string, noStore bool, noDisplay bool) *Client {
  49. return &Client{
  50. Cnf: new(Config),
  51. Id: 0,
  52. VerifyKey: vKey,
  53. Addr: "",
  54. Remark: "",
  55. Status: true,
  56. IsConnect: false,
  57. RateLimit: 0,
  58. Flow: new(Flow),
  59. Rate: nil,
  60. NoStore: noStore,
  61. RWMutex: sync.RWMutex{},
  62. NoDisplay: noDisplay,
  63. }
  64. }
  65. func (s *Client) CutConn() {
  66. atomic.AddInt32(&s.NowConn, 1)
  67. }
  68. func (s *Client) AddConn() {
  69. atomic.AddInt32(&s.NowConn, -1)
  70. }
  71. func (s *Client) GetConn() bool {
  72. if s.MaxConn == 0 || int(s.NowConn) < s.MaxConn {
  73. s.CutConn()
  74. return true
  75. }
  76. return false
  77. }
  78. func (s *Client) HasTunnel(t *Tunnel) (exist bool) {
  79. GetDb().JsonDb.Tasks.Range(func(key, value interface{}) bool {
  80. v := value.(*Tunnel)
  81. if v.Client.Id == s.Id && v.Port == t.Port && t.Port != 0 {
  82. exist = true
  83. return false
  84. }
  85. return true
  86. })
  87. return
  88. }
  89. func (s *Client) HasHost(h *Host) bool {
  90. var has bool
  91. GetDb().JsonDb.Hosts.Range(func(key, value interface{}) bool {
  92. v := value.(*Host)
  93. if v.Client.Id == s.Id && v.Host == h.Host && h.Location == v.Location {
  94. has = true
  95. return false
  96. }
  97. return true
  98. })
  99. return has
  100. }
  101. type Tunnel struct {
  102. Id int
  103. Port int
  104. ServerIp string
  105. Mode string
  106. Status bool
  107. RunStatus bool
  108. Client *Client
  109. Ports string
  110. Flow *Flow
  111. Password string
  112. Remark string
  113. TargetAddr string
  114. NoStore bool
  115. LocalPath string
  116. StripPre string
  117. Target *Target
  118. Health
  119. sync.RWMutex
  120. }
  121. type Health struct {
  122. HealthCheckTimeout int
  123. HealthMaxFail int
  124. HealthCheckInterval int
  125. HealthNextTime time.Time
  126. HealthMap map[string]int
  127. HttpHealthUrl string
  128. HealthRemoveArr []string
  129. HealthCheckType string
  130. HealthCheckTarget string
  131. sync.RWMutex
  132. }
  133. type Host struct {
  134. Id int
  135. Host string //host
  136. HeaderChange string //header change
  137. HostChange string //host change
  138. Location string //url router
  139. Remark string //remark
  140. Scheme string //http https all
  141. CertFilePath string
  142. KeyFilePath string
  143. NoStore bool
  144. IsClose bool
  145. Flow *Flow
  146. Client *Client
  147. Target *Target //目标
  148. Health `json:"-"`
  149. sync.RWMutex
  150. }
  151. type Target struct {
  152. nowIndex int
  153. TargetStr string
  154. TargetArr []string
  155. sync.RWMutex
  156. }
  157. func (s *Target) GetRandomTarget() (string, error) {
  158. if s.TargetArr == nil {
  159. s.TargetArr = strings.Split(s.TargetStr, "\n")
  160. }
  161. if len(s.TargetArr) == 1 {
  162. return s.TargetArr[0], nil
  163. }
  164. if len(s.TargetArr) == 0 {
  165. return "", errors.New("all inward-bending targets are offline")
  166. }
  167. s.Lock()
  168. defer s.Unlock()
  169. if s.nowIndex >= len(s.TargetArr)-1 {
  170. s.nowIndex = -1
  171. }
  172. s.nowIndex++
  173. return s.TargetArr[s.nowIndex], nil
  174. }