52 lines
1.4 KiB
PHP
52 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Initialize;
|
|
|
|
use App\Initialize\Actions\ProcessRedisAction;
|
|
use App\Nami\Api\CompleteMemberToRedisJob;
|
|
use App\Setting\NamiSettings;
|
|
use Illuminate\Bus\Batch;
|
|
use Illuminate\Console\Command;
|
|
use Illuminate\Support\Facades\Bus;
|
|
use Illuminate\Support\Facades\Redis;
|
|
use Log;
|
|
use Lorisleiva\Actions\Concerns\AsAction;
|
|
use Zoomyboy\LaravelNami\Api;
|
|
use Zoomyboy\LaravelNami\Data\MemberEntry as NamiMemberEntry;
|
|
|
|
class InitializeMembers
|
|
{
|
|
use AsAction;
|
|
|
|
public string $commandSignature = 'member:pull';
|
|
public string $jobQueue = 'long';
|
|
|
|
public function handle(Api $api): void
|
|
{
|
|
$allMembers = collect([]);
|
|
Redis::delete('members');
|
|
|
|
$jobs = $api->search([])->map(function (NamiMemberEntry $member) use ($api) {
|
|
return new CompleteMemberToRedisJob($api, $member->groupId, $member->id);
|
|
})->toArray();
|
|
|
|
$batch = Bus::batch($jobs)
|
|
->finally(function (Batch $batch) {
|
|
Log::debug('Complete Member count: '.count(Redis::lrange('members', 0, -1)));
|
|
foreach (Redis::lrange('members', 0, -1) as $data) {
|
|
ProcessRedisAction::dispatch(json_decode($data, true));
|
|
}
|
|
})
|
|
->onQueue('long')
|
|
->allowFailures()
|
|
->dispatch();
|
|
}
|
|
|
|
public function asCommand(Command $command): int
|
|
{
|
|
$this->handle(app(NamiSettings::class)->login());
|
|
|
|
return 0;
|
|
}
|
|
}
|