mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
91 lines
2.1 KiB
PHP
91 lines
2.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Actions\Models\Wiki;
|
|
|
|
use App\Actions\ActionResult;
|
|
use App\Actions\Models\BackfillWikiAction;
|
|
use App\Actions\Models\Wiki\Studio\ApiAction\MalStudioApiAction;
|
|
use App\Enums\Actions\ActionStatus;
|
|
use App\Models\Wiki\Studio;
|
|
use Exception;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
/**
|
|
* Class BackfillStudioAction.
|
|
*/
|
|
class BackfillStudioAction extends BackfillWikiAction
|
|
{
|
|
/**
|
|
* Create a new action instance.
|
|
*
|
|
* @param Studio $studio
|
|
* @param array $toBackfill
|
|
*/
|
|
public function __construct(protected Studio $studio, protected array $toBackfill)
|
|
{
|
|
parent::__construct($studio, $toBackfill);
|
|
}
|
|
|
|
/**
|
|
* Handle the action.
|
|
*
|
|
* @return ActionResult
|
|
*/
|
|
public function handle(): ActionResult
|
|
{
|
|
foreach ($this->getApis() as $api) {
|
|
try {
|
|
DB::beginTransaction();
|
|
|
|
if (
|
|
count($this->toBackfill[self::IMAGES]) === 0
|
|
) {
|
|
// Don't make other requests if everything is backfilled
|
|
Log::info("Backfill action finished for Studio {$this->getModel()->getName()}");
|
|
DB::rollBack();
|
|
return new ActionResult(ActionStatus::SKIPPED);
|
|
}
|
|
|
|
$response = $api->handle($this->getModel()->resources());
|
|
|
|
$this->forImages($response);
|
|
|
|
DB::commit();
|
|
} catch (Exception $e) {
|
|
Log::error($e->getMessage());
|
|
|
|
DB::rollBack();
|
|
|
|
throw $e;
|
|
}
|
|
}
|
|
|
|
return new ActionResult(ActionStatus::PASSED);
|
|
}
|
|
|
|
/**
|
|
* Get the api actions available for the backfill action.
|
|
*
|
|
* @return array<ApiAction>
|
|
*/
|
|
protected function getApis(): array
|
|
{
|
|
return [
|
|
new MalStudioApiAction(),
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Get the model for the action.
|
|
*
|
|
* @return Studio
|
|
*/
|
|
protected function getModel(): Studio
|
|
{
|
|
return $this->studio;
|
|
}
|
|
}
|