Node.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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. 'name' => $this->name,
  65. 'host' => $this->is_relay ? $this->relay_server : ($this->server ?: $this->ip),
  66. 'group' => sysConfig('website_name'),
  67. ];
  68. switch ($this->type) {
  69. case 2:
  70. $config = array_merge($config, [
  71. 'type' => 'v2ray',
  72. 'port' => $this->is_relay ? $this->relay_port : $this->v2_port,
  73. 'uuid' => $user->vmess_id,
  74. 'method' => $this->v2_method,
  75. 'v2_alter_id' => $this->v2_alter_id,
  76. 'v2_net' => $this->v2_net,
  77. 'v2_type' => $this->v2_type,
  78. 'v2_host' => $this->v2_host,
  79. 'v2_path' => $this->v2_path,
  80. 'v2_tls' => $this->v2_tls ? 'tls' : '',
  81. 'udp' => $this->is_udp,
  82. ]);
  83. break;
  84. case 3:
  85. $config = array_merge($config, [
  86. 'type' => 'trojan',
  87. 'port' => $this->is_relay ? $this->relay_port : $this->v2_port,
  88. 'passwd' => $user->passwd,
  89. 'sni' => $this->is_relay ? $this->server : '',
  90. 'udp' => $this->is_udp,
  91. ]);
  92. break;
  93. case 1:
  94. case 4:
  95. $config = array_merge($config, [
  96. 'method' => $this->method,
  97. 'protocol' => $this->protocol,
  98. 'obfs' => $this->obfs,
  99. 'obfs_param' => $this->obfs_param,
  100. 'udp' => $this->is_udp,
  101. ]);
  102. if ($this->single) {
  103. //单端口使用中转的端口
  104. $config['port'] = $this->is_relay ? $this->relay_port : $this->port;
  105. $config['passwd'] = $this->passwd;
  106. $config['protocol_param'] = $user->port.':'.$user->passwd;
  107. } else {
  108. $config['port'] = $user->port;
  109. $config['passwd'] = $user->passwd;
  110. $config['protocol_param'] = $this->protocol_param;
  111. if ($this->type === 1) {
  112. $config['method'] = $user->method;
  113. $config['protocol'] = $user->protocol;
  114. $config['obfs'] = $user->obfs;
  115. }
  116. }
  117. if ($this->compatible) {
  118. $config['type'] = 'shadowsocks';
  119. } else {
  120. $config['type'] = 'shadowsocksr';
  121. }
  122. break;
  123. }
  124. return $config;
  125. }
  126. public function getSpeedLimitAttribute($value)
  127. {
  128. return $value / Mbps;
  129. }
  130. public function setSpeedLimitAttribute($value)
  131. {
  132. return $this->attributes['speed_limit'] = $value * Mbps;
  133. }
  134. public function getNodeAccessUsersAttribute()
  135. {
  136. return User::nodeAllowUsers($this->attributes['id'], $this->attributes['level'])->get();
  137. }
  138. public function getTypeLabelAttribute(): string
  139. {
  140. switch ($this->attributes['type']) {
  141. case 1:
  142. $type_label = 'ShadowsocksR';
  143. break;
  144. case 2:
  145. $type_label = 'V2Ray';
  146. break;
  147. case 3:
  148. $type_label = 'Trojan';
  149. break;
  150. case 4:
  151. $type_label = 'VNet';
  152. break;
  153. default:
  154. $type_label = 'UnKnown';
  155. }
  156. return $type_label;
  157. }
  158. }