Node.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. use Illuminate\Database\Eloquent\Relations\HasMany;
  5. use Illuminate\Database\Eloquent\Relations\HasOne;
  6. /**
  7. * 节点配置信息.
  8. */
  9. class Node extends Model
  10. {
  11. protected $table = 'ss_node';
  12. protected $guarded = ['id', 'created_at'];
  13. public function labels(): HasMany
  14. {
  15. return $this->hasMany(NodeLabel::class);
  16. }
  17. public function heartBeats(): HasMany
  18. {
  19. return $this->hasMany(NodeHeartBeat::class);
  20. }
  21. public function onlineLogs(): HasMany
  22. {
  23. return $this->hasMany(NodeOnlineLog::class);
  24. }
  25. public function pingLogs(): HasMany
  26. {
  27. return $this->hasMany(NodePing::class);
  28. }
  29. public function dailyDataFlows(): HasMany
  30. {
  31. return $this->hasMany(NodeDailyDataFlow::class);
  32. }
  33. public function hourlyDataFlows(): HasMany
  34. {
  35. return $this->hasMany(NodeHourlyDataFlow::class);
  36. }
  37. public function rules(): hasMany
  38. {
  39. return $this->hasMany(NodeRule::class);
  40. }
  41. public function ruleGroup(): hasOne
  42. {
  43. return $this->hasOne(RuleGroupNode::class);
  44. }
  45. public function auth(): HasOne
  46. {
  47. return $this->hasOne(NodeAuth::class);
  48. }
  49. public function level_table(): HasOne
  50. {
  51. return $this->hasOne(Level::class, 'level', 'level');
  52. }
  53. public function scopeUserAllowNodes($query, $user_group_id, $user_level)
  54. {
  55. $userGroup = UserGroup::find($user_group_id);
  56. if ($userGroup) {
  57. $query->whereIn('id', $userGroup->nodes);
  58. }
  59. return $query->whereStatus(1)->where('level', '<=', $user_level ?: 0);
  60. }
  61. public function config($user)
  62. {
  63. $config = [
  64. 'id' => $this->id,
  65. 'name' => $this->name,
  66. 'host' => $this->is_relay ? $this->relay_server : ($this->server ?: $this->ip),
  67. 'group' => sysConfig('website_name'),
  68. ];
  69. switch ($this->type) {
  70. case 2:
  71. $config = array_merge($config, [
  72. 'type' => 'v2ray',
  73. 'port' => $this->is_relay ? $this->relay_port : $this->v2_port,
  74. 'uuid' => $user->vmess_id,
  75. 'method' => $this->v2_method,
  76. 'v2_alter_id' => $this->v2_alter_id,
  77. 'v2_net' => $this->v2_net,
  78. 'v2_type' => $this->v2_type,
  79. 'v2_host' => $this->v2_host,
  80. 'v2_path' => $this->v2_path,
  81. 'v2_tls' => $this->v2_tls ? 'tls' : '',
  82. 'udp' => $this->is_udp,
  83. ]);
  84. break;
  85. case 3:
  86. $config = array_merge($config, [
  87. 'type' => 'trojan',
  88. 'port' => $this->is_relay ? $this->relay_port : $this->v2_port,
  89. 'passwd' => $user->passwd,
  90. 'sni' => $this->is_relay ? $this->server : '',
  91. 'udp' => $this->is_udp,
  92. ]);
  93. break;
  94. case 1:
  95. case 4:
  96. $config = array_merge($config, [
  97. 'type' => $this->compatible ? 'shadowsocks' : 'shadowsocksr',
  98. 'method' => $this->method,
  99. 'protocol' => $this->protocol,
  100. 'obfs' => $this->obfs,
  101. 'obfs_param' => $this->obfs_param,
  102. 'udp' => $this->is_udp,
  103. ]);
  104. if ($this->single) {
  105. //单端口使用中转的端口
  106. $config['port'] = $this->is_relay ? $this->relay_port : $this->port;
  107. $config['passwd'] = $this->passwd;
  108. $config['protocol_param'] = $user->port.':'.$user->passwd;
  109. } else {
  110. $config['port'] = $user->port;
  111. $config['passwd'] = $user->passwd;
  112. $config['protocol_param'] = $this->protocol_param;
  113. if ($this->type === 1) {
  114. $config['method'] = $user->method;
  115. $config['protocol'] = $user->protocol;
  116. $config['obfs'] = $user->obfs;
  117. }
  118. }
  119. break;
  120. }
  121. return $config;
  122. }
  123. public function getSpeedLimitAttribute($value)
  124. {
  125. return $value / Mbps;
  126. }
  127. public function setSpeedLimitAttribute($value)
  128. {
  129. return $this->attributes['speed_limit'] = $value * Mbps;
  130. }
  131. public function getNodeAccessUsersAttribute()
  132. {
  133. return User::nodeAllowUsers($this->attributes['id'], $this->attributes['level'])->get();
  134. }
  135. public function getTypeLabelAttribute(): string
  136. {
  137. switch ($this->attributes['type']) {
  138. case 1:
  139. $type_label = 'ShadowsocksR';
  140. break;
  141. case 2:
  142. $type_label = 'V2Ray';
  143. break;
  144. case 3:
  145. $type_label = 'Trojan';
  146. break;
  147. case 4:
  148. $type_label = 'VNet';
  149. break;
  150. default:
  151. $type_label = 'UnKnown';
  152. }
  153. return $type_label;
  154. }
  155. }