Node.php 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <?php
  2. namespace App\Models;
  3. use App\Components\IP;
  4. use Illuminate\Database\Eloquent\Model;
  5. use Illuminate\Database\Eloquent\Relations\BelongsTo;
  6. use Illuminate\Database\Eloquent\Relations\BelongsToMany;
  7. use Illuminate\Database\Eloquent\Relations\HasMany;
  8. use Illuminate\Database\Eloquent\Relations\HasOne;
  9. /**
  10. * 节点配置信息.
  11. */
  12. class Node extends Model
  13. {
  14. protected $table = 'node';
  15. protected $guarded = [];
  16. public function labels()
  17. {
  18. return $this->belongsToMany(Label::class);
  19. }
  20. public function heartbeats(): HasMany
  21. {
  22. return $this->hasMany(NodeHeartbeat::class);
  23. }
  24. public function onlineIps(): HasMany
  25. {
  26. return $this->hasMany(NodeOnlineIp::class);
  27. }
  28. public function onlineLogs(): HasMany
  29. {
  30. return $this->hasMany(NodeOnlineLog::class);
  31. }
  32. public function userDataFlowLogs(): HasMany
  33. {
  34. return $this->hasMany(UserDataFlowLog::class);
  35. }
  36. public function ruleLogs(): HasMany
  37. {
  38. return $this->hasMany(RuleLog::class);
  39. }
  40. public function dailyDataFlows(): HasMany
  41. {
  42. return $this->hasMany(NodeDailyDataFlow::class);
  43. }
  44. public function hourlyDataFlows(): HasMany
  45. {
  46. return $this->hasMany(NodeHourlyDataFlow::class);
  47. }
  48. public function ruleGroup(): BelongsTo
  49. {
  50. return $this->belongsTo(RuleGroup::class);
  51. }
  52. public function userGroups(): BelongsToMany
  53. {
  54. return $this->belongsToMany(UserGroup::class);
  55. }
  56. public function auth(): HasOne
  57. {
  58. return $this->hasOne(NodeAuth::class);
  59. }
  60. public function level_table(): HasOne
  61. {
  62. return $this->hasOne(Level::class, 'level', 'level');
  63. }
  64. public function users()
  65. {
  66. return User::activeUser()
  67. ->where('level', '>=', $this->attributes['level'])
  68. ->whereNull('user_group_id')
  69. ->orwhereIn('user_group_id', $this->userGroups->pluck('id')->toArray())
  70. ->get();
  71. }
  72. public function refresh_geo()
  73. {
  74. $data = IP::IPSB($this->is_ddns ? gethostbyname($this->server) : $this->ip);
  75. if ($data) {
  76. self::withoutEvents(function () use ($data) {
  77. $this->update(['geo' => $data['latitude'].','.$data['longitude']]);
  78. });
  79. return 1;
  80. }
  81. return 0;
  82. }
  83. public function config(User $user)
  84. {
  85. $config = [
  86. 'id' => $this->id,
  87. 'name' => $this->name,
  88. 'host' => $this->is_relay ? $this->relay_server : ($this->server ?: $this->ip),
  89. 'group' => sysConfig('website_name'),
  90. ];
  91. switch ($this->type) {
  92. case 0:
  93. $config = array_merge($config, [
  94. 'type' => 'shadowsocks',
  95. 'method' => $this->method,
  96. 'udp' => $this->is_udp,
  97. 'port' => $this->is_relay ? $this->relay_port : $this->port,
  98. 'passwd' => $user->passwd
  99. ]);
  100. break;
  101. case 2:
  102. $config = array_merge($config, [
  103. 'type' => 'v2ray',
  104. 'port' => $this->is_relay ? $this->relay_port : $this->port,
  105. 'uuid' => $user->vmess_id,
  106. 'method' => $this->v2_method,
  107. 'v2_alter_id' => $this->v2_alter_id,
  108. 'v2_net' => $this->v2_net,
  109. 'v2_type' => $this->v2_type,
  110. 'v2_host' => $this->v2_host == null ? '':$this->v2_host,
  111. 'v2_path' => $this->v2_path == null ? '':$this->v2_path,
  112. 'v2_tls' => $this->v2_tls ? 'tls' : '',
  113. 'v2_sni' => $this->v2_sni == null ? '':$this->v2_sni,
  114. 'udp' => $this->is_udp,
  115. 'vless' => $this->vless,
  116. 'vless_pulkey'=> $this->vless_pulkey,
  117. ]);
  118. break;
  119. case 3:
  120. $config = array_merge($config, [
  121. 'type' => 'trojan',
  122. 'port' => $this->is_relay ? $this->relay_port : 443,
  123. 'passwd' => $user->passwd,
  124. 'sni' => $this->is_relay ? $this->server : '',
  125. 'udp' => $this->is_udp,
  126. ]);
  127. break;
  128. case 1:
  129. case 4:
  130. $config = array_merge($config, [
  131. 'type' => $this->compatible ? 'shadowsocks' : 'shadowsocksr',
  132. 'method' => $this->method,
  133. 'protocol' => $this->protocol,
  134. 'obfs' => $this->obfs,
  135. 'obfs_param' => $this->obfs_param,
  136. 'udp' => $this->is_udp,
  137. ]);
  138. if ($this->single) {
  139. //单端口使用中转的端口
  140. $config['port'] = $this->is_relay ? $this->relay_port : $this->port;
  141. $config['passwd'] = $this->passwd;
  142. $config['protocol_param'] = $user->port.':'.$user->passwd;
  143. } else {
  144. $config['port'] = $user->port;
  145. $config['passwd'] = $user->passwd;
  146. $config['protocol_param'] = $this->protocol_param;
  147. if ($this->type === 1) {
  148. $config['method'] = $user->method;
  149. $config['protocol'] = $user->protocol;
  150. $config['obfs'] = $user->obfs;
  151. }
  152. }
  153. break;
  154. }
  155. return $config;
  156. }
  157. public function getSpeedLimitAttribute($value)
  158. {
  159. return $value / Mbps;
  160. }
  161. public function setSpeedLimitAttribute($value)
  162. {
  163. return $this->attributes['speed_limit'] = $value * Mbps;
  164. }
  165. public function getTypeLabelAttribute(): string
  166. {
  167. switch ($this->attributes['type']) {
  168. case 0:
  169. $type_label = 'shadowsocks';
  170. break;
  171. case 1:
  172. $type_label = 'ShadowsocksR';
  173. break;
  174. case 2:
  175. $type_label = 'V2Ray';
  176. break;
  177. case 3:
  178. $type_label = 'Trojan';
  179. break;
  180. case 4:
  181. $type_label = 'VNet';
  182. break;
  183. default:
  184. $type_label = 'UnKnown';
  185. }
  186. return $type_label;
  187. }
  188. }