Files
nexusphp/app/Jobs/GenerateTemporaryInvite.php

104 lines
2.7 KiB
PHP
Raw Normal View History

2022-12-13 13:51:39 +08:00
<?php
namespace App\Jobs;
use App\Models\Invite;
use App\Repositories\ToolRepository;
use Carbon\Carbon;
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 Illuminate\Support\Str;
2024-02-26 14:25:54 +08:00
use Nexus\Database\NexusDB;
2022-12-13 13:51:39 +08:00
class GenerateTemporaryInvite implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
private int $count;
2024-02-26 14:25:54 +08:00
private string $idRedisKey;
2022-12-13 13:51:39 +08:00
private int $days;
/**
* Create a new job instance.
*
* @return void
*/
2024-02-26 14:25:54 +08:00
public function __construct(string $idRedisKey, int $days, int $count)
2022-12-13 13:51:39 +08:00
{
2024-02-26 14:25:54 +08:00
$this->idRedisKey = $idRedisKey;
2022-12-13 13:51:39 +08:00
$this->days = $days;
$this->count = $count;
}
/**
* Determine the time at which the job should timeout.
*
* @return \DateTime
*/
public function retryUntil()
{
return now()->addHours(1);
}
2023-02-21 01:49:17 +08:00
public $tries = 1;
public $timeout = 1800;
2022-12-13 13:51:39 +08:00
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
$toolRep = new ToolRepository();
2024-02-26 14:25:54 +08:00
$idStr = NexusDB::cache_get($this->idRedisKey);
if (empty($idStr)) {
do_log("no idStr of idRedisKey: {$this->idRedisKey}...");
return;
}
$idArr = explode(",", $idStr);
foreach ($idArr as $uid) {
2022-12-13 13:51:39 +08:00
try {
$hashArr = $toolRep->generateUniqueInviteHash([], $this->count, $this->count);
$data = [];
foreach($hashArr as $hash) {
$data[] = [
'inviter' => $uid,
'invitee' => '',
'hash' => $hash,
'valid' => 0,
'expired_at' => Carbon::now()->addDays($this->days),
'created_at' => Carbon::now(),
];
}
if (!empty($data)) {
Invite::query()->insert($data);
}
do_log("success add $this->count temporary invite ($this->days days) to $uid");
} catch (\Exception $exception) {
do_log("fail add $this->count temporary invite ($this->days days) to $uid: " . $exception->getMessage(), 'error');
}
}
}
2023-03-04 01:13:41 +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-12-13 13:51:39 +08:00
}