StatServerJob.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?php
  2. namespace App\Jobs;
  3. use App\Models\StatServer;
  4. use Illuminate\Bus\Queueable;
  5. use Illuminate\Contracts\Queue\ShouldQueue;
  6. use Illuminate\Foundation\Bus\Dispatchable;
  7. use Illuminate\Queue\InteractsWithQueue;
  8. use Illuminate\Queue\SerializesModels;
  9. class StatServerJob implements ShouldQueue
  10. {
  11. use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
  12. protected $u;
  13. protected $d;
  14. protected $server;
  15. protected $protocol;
  16. protected $recordType;
  17. public $tries = 3;
  18. public $timeout = 60;
  19. /**
  20. * Create a new job instance.
  21. *
  22. * @return void
  23. */
  24. public function __construct($u, $d, $server, $protocol, $recordType = 'd')
  25. {
  26. $this->onQueue('stat');
  27. $this->u = $u;
  28. $this->d = $d;
  29. $this->server = $server;
  30. $this->protocol = $protocol;
  31. $this->recordType = $recordType;
  32. }
  33. /**
  34. * Execute the job.
  35. *
  36. * @return void
  37. */
  38. public function handle()
  39. {
  40. $recordAt = strtotime(date('Y-m-d'));
  41. if ($this->recordType === 'm') {
  42. //
  43. }
  44. $data = StatServer::where('record_at', $recordAt)
  45. ->where('server_id', $this->server->id)
  46. ->first();
  47. if ($data) {
  48. try {
  49. $data->update([
  50. 'u' => $data['u'] + $this->u,
  51. 'd' => $data['d'] + $this->d
  52. ]);
  53. } catch (\Exception $e) {
  54. abort(500, '节点统计数据更新失败');
  55. }
  56. } else {
  57. if (!StatServer::create([
  58. 'server_id' => $this->server->id,
  59. 'server_type' => $this->protocol,
  60. 'u' => $this->u,
  61. 'd' => $this->d,
  62. 'record_type' => $this->recordType,
  63. 'record_at' => $recordAt
  64. ])) {
  65. abort(500, '节点统计数据创建失败');
  66. }
  67. }
  68. }
  69. }