User.php 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. <?php
  2. namespace App\Models;
  3. use Hash;
  4. use Illuminate\Database\Eloquent\Relations\BelongsTo;
  5. use Illuminate\Database\Eloquent\Relations\HasMany;
  6. use Illuminate\Database\Eloquent\Relations\HasManyThrough;
  7. use Illuminate\Database\Eloquent\Relations\HasOne;
  8. use Illuminate\Foundation\Auth\User as Authenticatable;
  9. use Illuminate\Notifications\Notifiable;
  10. use Spatie\Permission\Traits\HasRoles;
  11. use Tymon\JWTAuth\Contracts\JWTSubject;
  12. /**
  13. * 用户信息.
  14. */
  15. class User extends Authenticatable implements JWTSubject
  16. {
  17. use Notifiable, HasRoles;
  18. protected $table = 'user';
  19. protected $casts = ['expired_at' => 'date:Y-m-d', 'reset_time' => 'date:Y-m-d', 'ban_time' => 'date:Y-m-d'];
  20. protected $dates = ['expired_at', 'reset_time'];
  21. protected $guarded = ['id'];
  22. public function usedTrafficPercentage()
  23. {
  24. return round(($this->usedTraffic()) / $this->transfer_enable, 2);
  25. }
  26. public function usedTraffic(): int
  27. {
  28. return $this->d + $this->u;
  29. }
  30. public function onlineIpLogs(): HasMany
  31. {
  32. return $this->hasMany(NodeOnlineUserIp::class);
  33. }
  34. public function payments(): HasMany
  35. {
  36. return $this->hasMany(Payment::class);
  37. }
  38. public function commissionSettlements(): HasMany
  39. {
  40. return $this->hasMany(ReferralApply::class);
  41. }
  42. public function commissionLogs(): HasMany
  43. {
  44. return $this->hasMany(ReferralLog::class, 'inviter_id');
  45. }
  46. public function ruleLogs(): HasMany
  47. {
  48. return $this->hasMany(RuleLog::class);
  49. }
  50. public function tickets(): HasMany
  51. {
  52. return $this->hasMany(Ticket::class);
  53. }
  54. public function ticketReplies(): HasMany
  55. {
  56. return $this->hasMany(TicketReply::class);
  57. }
  58. public function banedLogs(): HasMany
  59. {
  60. return $this->hasMany(UserBanedLog::class);
  61. }
  62. public function creditLogs(): HasMany
  63. {
  64. return $this->hasMany(UserCreditLog::class);
  65. }
  66. public function dailyDataFlows(): HasMany
  67. {
  68. return $this->hasMany(UserDailyDataFlow::class);
  69. }
  70. public function dataFlowLogs(): HasMany
  71. {
  72. return $this->hasMany(UserDataFlowLog::class);
  73. }
  74. public function dataModifyLogs(): HasMany
  75. {
  76. return $this->hasMany(UserDataModifyLog::class);
  77. }
  78. public function hourlyDataFlows(): HasMany
  79. {
  80. return $this->HasMany(UserHourlyDataFlow::class);
  81. }
  82. public function loginLogs(): HasMany
  83. {
  84. return $this->HasMany(UserLoginLog::class);
  85. }
  86. public function subscribe(): HasOne
  87. {
  88. return $this->hasOne(UserSubscribe::class);
  89. }
  90. public function subUrl()
  91. {
  92. return route('sub', $this->subscribe->code);
  93. }
  94. public function subscribeLogs(): HasManyThrough
  95. {
  96. return $this->hasManyThrough(UserSubscribeLog::class, UserSubscribe::class);
  97. }
  98. public function verify(): HasMany
  99. {
  100. return $this->hasMany(Verify::class);
  101. }
  102. public function group(): BelongsTo
  103. {
  104. return $this->belongsTo(UserGroup::class);
  105. }
  106. public function inviter(): BelongsTo
  107. {
  108. return $this->belongsTo(__CLASS__);
  109. }
  110. public function invites(): HasMany
  111. {
  112. return $this->hasMany(Invite::class, 'inviter_id');
  113. }
  114. public function invitees(): HasMany
  115. {
  116. return $this->hasMany(__CLASS__, 'inviter_id');
  117. }
  118. public function getLevelNameAttribute(): string
  119. {
  120. return Level::whereLevel($this->attributes['level'])->first()->name;
  121. }
  122. public function getCreditAttribute()
  123. {
  124. return $this->attributes['credit'] / 100;
  125. }
  126. public function getTransferEnableFormattedAttribute()
  127. {
  128. return flowAutoShow($this->attributes['transfer_enable']);
  129. }
  130. public function getSpeedLimitAttribute()
  131. {
  132. return $this->attributes['speed_limit'] / Mbps;
  133. }
  134. public function getExpiredAtAttribute()
  135. {
  136. return $this->attributes['expired_at'];
  137. }
  138. public function getResetTimeAttribute()
  139. {
  140. return $this->attributes['reset_time'];
  141. }
  142. public function setPasswordAttribute($password)
  143. {
  144. return $this->attributes['password'] = Hash::make($password);
  145. }
  146. public function setCreditAttribute($value)
  147. {
  148. return $this->attributes['credit'] = $value * 100;
  149. }
  150. public function setSpeedLimitAttribute($value)
  151. {
  152. return $this->attributes['speed_limit'] = $value * Mbps;
  153. }
  154. public function scopeActiveUser($query)
  155. {
  156. return $query->where('status', '<>', -1)->whereEnable(1);
  157. }
  158. public function scopeNodeAllowUsers($query, $node_id, $node_level)
  159. {
  160. $groups = [0];
  161. if ($node_id) {
  162. foreach (UserGroup::all() as $userGroup) {
  163. $nodes = $userGroup->nodes;
  164. if ($nodes && in_array($node_id, $nodes)) {
  165. $groups[] = $userGroup->id;
  166. }
  167. }
  168. }
  169. return $query->activeUser()->whereIn('group_id', $groups)->where('level', '>=', $node_level);
  170. }
  171. public function scopeUserAccessNodes()
  172. {
  173. return Node::userAllowNodes($this->attributes['group_id'] ?? 0, $this->attributes['level'] ?? 0);
  174. }
  175. public function getIsAvailableAttribute(): bool
  176. {
  177. return ! $this->ban_time && $this->transfer_enable && $this->expired_at > time();
  178. }
  179. public function updateCredit(float $credit): bool
  180. {
  181. $this->credit += $credit;
  182. return $this->credit >= 0 && $this->save();
  183. }
  184. public function incrementData(int $data): bool
  185. {// 添加用户流量
  186. $this->transfer_enable += $data;
  187. return $this->save();
  188. }
  189. public function isNotCompleteOrderByUserId(int $userId): bool
  190. { // 添加用户余额
  191. return Order::uid($userId)->whereIn('status', [0, 1])->exists();
  192. }
  193. public function trafficFetch(int $u, int $d): bool
  194. {
  195. $this->u += $u;
  196. $this->d += $d;
  197. return $this->save();
  198. }
  199. public function expired_status(): int
  200. {
  201. $expired_status = 2; // 大于一个月过期
  202. if ($this->expired_at < date('Y-m-d')) {
  203. $expired_status = -1; // 已过期
  204. } elseif ($this->expired_at === date('Y-m-d')) {
  205. $expired_status = 0; // 今天过期
  206. } elseif ($this->expired_at > date('Y-m-d') && $this->expired_at <= date('Y-m-d', strtotime('+30 days'))) {
  207. $expired_status = 1; // 最近一个月过期
  208. }
  209. return $expired_status;
  210. }
  211. public function isTrafficWarning(): bool
  212. {// 流量异常警告
  213. return $this->recentTrafficUsed() >= (sysConfig('traffic_ban_value') * GB);
  214. }
  215. public function recentTrafficUsed()
  216. {
  217. return UserHourlyDataFlow::userRecentUsed($this->id)->sum('total');
  218. }
  219. public function activePayingUser()
  220. { //付费用户判断
  221. return $this->orders()->active()->where('origin_amount', '>', 0)->exists();
  222. }
  223. public function orders(): HasMany
  224. {
  225. return $this->hasMany(Order::class);
  226. }
  227. public function getJWTIdentifier()
  228. {
  229. return $this->getKey();
  230. }
  231. public function getJWTCustomClaims()
  232. {
  233. return [];
  234. }
  235. }