Node.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. use Illuminate\Database\Eloquent\Relations\BelongsTo;
  5. use Illuminate\Database\Eloquent\Relations\BelongsToMany;
  6. use Illuminate\Database\Eloquent\Relations\HasMany;
  7. use Illuminate\Database\Eloquent\Relations\HasOne;
  8. /**
  9. * 节点配置信息.
  10. */
  11. class Node extends Model
  12. {
  13. protected $table = 'node';
  14. protected $guarded = [];
  15. public function labels()
  16. {
  17. return $this->belongsToMany(Label::class);
  18. }
  19. public function heartBeats(): HasMany
  20. {
  21. return $this->hasMany(NodeHeartBeat::class);
  22. }
  23. public function onlineLogs(): HasMany
  24. {
  25. return $this->hasMany(NodeOnlineLog::class);
  26. }
  27. public function pingLogs(): HasMany
  28. {
  29. return $this->hasMany(NodePing::class);
  30. }
  31. public function dailyDataFlows(): HasMany
  32. {
  33. return $this->hasMany(NodeDailyDataFlow::class);
  34. }
  35. public function hourlyDataFlows(): HasMany
  36. {
  37. return $this->hasMany(NodeHourlyDataFlow::class);
  38. }
  39. public function ruleGroup(): BelongsTo
  40. {
  41. return $this->belongsTo(RuleGroup::class);
  42. }
  43. public function userGroups(): BelongsToMany
  44. {
  45. return $this->belongsToMany(UserGroup::class);
  46. }
  47. public function auth(): HasOne
  48. {
  49. return $this->hasOne(NodeAuth::class);
  50. }
  51. public function level_table(): HasOne
  52. {
  53. return $this->hasOne(Level::class, 'level', 'level');
  54. }
  55. public function users()
  56. {
  57. return User::activeUser()->whereIn('user_group_id', $this->userGroups->pluck('id')->toArray())->orwhereNull('user_group_id')->where('level', '>=',
  58. $this->attributes['level'])->get();
  59. }
  60. public function config($user)
  61. {
  62. $config = [
  63. 'id' => $this->id,
  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. 'type' => $this->compatible ? 'shadowsocks' : 'shadowsocksr',
  97. 'method' => $this->method,
  98. 'protocol' => $this->protocol,
  99. 'obfs' => $this->obfs,
  100. 'obfs_param' => $this->obfs_param,
  101. 'udp' => $this->is_udp,
  102. ]);
  103. if ($this->single) {
  104. //单端口使用中转的端口
  105. $config['port'] = $this->is_relay ? $this->relay_port : $this->port;
  106. $config['passwd'] = $this->passwd;
  107. $config['protocol_param'] = $user->port.':'.$user->passwd;
  108. } else {
  109. $config['port'] = $user->port;
  110. $config['passwd'] = $user->passwd;
  111. $config['protocol_param'] = $this->protocol_param;
  112. if ($this->type === 1) {
  113. $config['method'] = $user->method;
  114. $config['protocol'] = $user->protocol;
  115. $config['obfs'] = $user->obfs;
  116. }
  117. }
  118. break;
  119. }
  120. return $config;
  121. }
  122. public function getSpeedLimitAttribute($value)
  123. {
  124. return $value / Mbps;
  125. }
  126. public function setSpeedLimitAttribute($value)
  127. {
  128. return $this->attributes['speed_limit'] = $value * Mbps;
  129. }
  130. public function getTypeLabelAttribute(): string
  131. {
  132. switch ($this->attributes['type']) {
  133. case 1:
  134. $type_label = 'ShadowsocksR';
  135. break;
  136. case 2:
  137. $type_label = 'V2Ray';
  138. break;
  139. case 3:
  140. $type_label = 'Trojan';
  141. break;
  142. case 4:
  143. $type_label = 'VNet';
  144. break;
  145. default:
  146. $type_label = 'UnKnown';
  147. }
  148. return $type_label;
  149. }
  150. }