2022-10-28 14:17:10 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Jobs;
|
|
|
|
|
|
|
|
|
|
use App\Models\Setting;
|
|
|
|
|
use App\Models\User;
|
2023-07-12 03:17:19 +08:00
|
|
|
use App\Repositories\CleanupRepository;
|
2022-10-28 14:17:10 +08:00
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
|
use Illuminate\Contracts\Queue\ShouldBeUnique;
|
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
|
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
use Nexus\Database\NexusDB;
|
|
|
|
|
|
2022-11-05 18:43:49 +08:00
|
|
|
class CalculateUserSeedBonus implements ShouldQueue
|
2022-10-28 14:17:10 +08:00
|
|
|
{
|
|
|
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
|
|
|
|
|
|
private int $beginUid;
|
|
|
|
|
|
|
|
|
|
private int $endUid;
|
|
|
|
|
|
2022-11-05 18:43:49 +08:00
|
|
|
private string $requestId;
|
|
|
|
|
|
2022-10-28 14:17:10 +08:00
|
|
|
/**
|
|
|
|
|
* Create a new job instance.
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
2022-11-05 18:43:49 +08:00
|
|
|
public function __construct(int $beginUid, int $endUid, string $requestId = '')
|
2022-10-28 14:17:10 +08:00
|
|
|
{
|
|
|
|
|
$this->beginUid = $beginUid;
|
|
|
|
|
$this->endUid = $endUid;
|
2022-11-05 18:43:49 +08:00
|
|
|
$this->requestId = $requestId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Determine the time at which the job should timeout.
|
|
|
|
|
*
|
|
|
|
|
* @return \DateTime
|
|
|
|
|
*/
|
|
|
|
|
public function retryUntil()
|
|
|
|
|
{
|
|
|
|
|
return now()->addSeconds(Setting::get('main.autoclean_interval_one'));
|
2022-10-28 14:17:10 +08:00
|
|
|
}
|
|
|
|
|
|
2023-02-21 01:49:17 +08:00
|
|
|
public $tries = 1;
|
|
|
|
|
|
2023-07-06 03:23:28 +08:00
|
|
|
public $timeout = 3600;
|
2023-02-21 01:49:17 +08:00
|
|
|
|
2022-10-28 14:17:10 +08:00
|
|
|
/**
|
|
|
|
|
* Execute the job.
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public function handle()
|
|
|
|
|
{
|
2023-07-12 03:17:19 +08:00
|
|
|
CleanupRepository::runBatchJob(CleanupRepository::USER_SEED_BONUS_BATCH_KEY, $this->requestId);
|
2022-10-28 14:17:10 +08:00
|
|
|
}
|
2023-02-21 01:04:28 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Handle a job failure.
|
|
|
|
|
*
|
|
|
|
|
* @param \Throwable $exception
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public function failed(\Throwable $exception)
|
|
|
|
|
{
|
|
|
|
|
do_log("failed: " . $exception->getMessage() . $exception->getTraceAsString(), 'error');
|
|
|
|
|
}
|
2022-10-28 14:17:10 +08:00
|
|
|
}
|