2022-01-03 10:33:48 +01:00
|
|
|
<?php
|
2020-04-12 00:26:44 +02:00
|
|
|
|
|
|
|
namespace App\Initialize;
|
|
|
|
|
2023-02-13 15:56:20 +01:00
|
|
|
use App\Initialize\Actions\ProcessRedisAction;
|
2023-02-13 00:14:51 +01:00
|
|
|
use App\Nami\Api\CompleteMemberToRedisJob;
|
2023-02-07 23:55:46 +01:00
|
|
|
use App\Setting\NamiSettings;
|
2023-02-13 00:14:51 +01:00
|
|
|
use Illuminate\Support\Facades\Bus;
|
|
|
|
use Illuminate\Support\Facades\Redis;
|
2023-02-07 23:55:46 +01:00
|
|
|
use Lorisleiva\Actions\Concerns\AsAction;
|
2022-02-12 16:16:56 +01:00
|
|
|
use Zoomyboy\LaravelNami\Api;
|
2023-02-13 01:06:04 +01:00
|
|
|
use Zoomyboy\LaravelNami\Data\MemberEntry as NamiMemberEntry;
|
2021-04-10 01:39:39 +02:00
|
|
|
|
2022-03-11 20:19:17 +01:00
|
|
|
class InitializeMembers
|
|
|
|
{
|
2023-02-07 23:55:46 +01:00
|
|
|
use AsAction;
|
2022-01-03 10:33:48 +01:00
|
|
|
|
2023-02-08 00:14:59 +01:00
|
|
|
public string $commandSignature = 'member:pull';
|
2023-02-13 01:33:55 +01:00
|
|
|
public string $jobQueue = 'long';
|
2020-04-12 00:26:44 +02:00
|
|
|
|
2023-02-07 23:55:46 +01:00
|
|
|
public function handle(Api $api): void
|
2022-02-12 16:16:56 +01:00
|
|
|
{
|
2023-02-13 00:14:51 +01:00
|
|
|
Redis::delete('members');
|
2020-04-12 00:26:44 +02:00
|
|
|
|
2023-02-13 01:06:04 +01:00
|
|
|
$jobs = $api->search([])->map(function (NamiMemberEntry $member) use ($api) {
|
2023-02-13 00:14:51 +01:00
|
|
|
return new CompleteMemberToRedisJob($api, $member->groupId, $member->id);
|
|
|
|
})->toArray();
|
2023-02-07 23:23:15 +01:00
|
|
|
|
2023-02-22 22:38:48 +01:00
|
|
|
Bus::batch($jobs)
|
|
|
|
->finally(function () {
|
2023-02-13 01:06:04 +01:00
|
|
|
foreach (Redis::lrange('members', 0, -1) as $data) {
|
2023-02-13 15:56:20 +01:00
|
|
|
ProcessRedisAction::dispatch(json_decode($data, true));
|
2023-02-13 01:06:04 +01:00
|
|
|
}
|
2023-02-13 00:14:51 +01:00
|
|
|
})
|
2023-02-13 01:33:55 +01:00
|
|
|
->onQueue('long')
|
2023-02-13 15:56:20 +01:00
|
|
|
->allowFailures()
|
2023-02-13 00:14:51 +01:00
|
|
|
->dispatch();
|
2022-01-03 10:33:48 +01:00
|
|
|
}
|
2022-09-02 00:45:39 +02:00
|
|
|
|
2023-02-22 22:38:48 +01:00
|
|
|
public function asCommand(): int
|
2023-02-07 23:55:46 +01:00
|
|
|
{
|
|
|
|
$this->handle(app(NamiSettings::class)->login());
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2020-04-12 00:26:44 +02:00
|
|
|
}
|