mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-04 03:35:02 +02:00
75 lines
2.4 KiB
PHP
75 lines
2.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Actions\Models\List;
|
|
|
|
use App\Actions\Models\List\External\StoreExternalProfileClaimedAction;
|
|
use App\Actions\Models\List\External\Token\BaseExternalTokenAction;
|
|
use App\Actions\Models\List\External\Token\Site\AnilistExternalTokenAction;
|
|
use App\Actions\Models\List\External\Token\Site\MalExternalTokenAction;
|
|
use App\Enums\Models\List\ExternalProfileSite;
|
|
use App\Models\List\External\ExternalToken;
|
|
use App\Models\List\ExternalProfile;
|
|
use Exception;
|
|
use Illuminate\Support\Arr;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\Support\Facades\Log;
|
|
use RuntimeException;
|
|
|
|
class ExternalTokenCallbackAction
|
|
{
|
|
/**
|
|
* We should store the token and the profile.
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function store(array $parameters): ExternalProfile
|
|
{
|
|
try {
|
|
DB::beginTransaction();
|
|
|
|
$site = ExternalProfileSite::fromLocalizedName(Arr::get($parameters, ExternalProfile::ATTRIBUTE_SITE));
|
|
|
|
$externalToken = ExternalToken::query()
|
|
->whereRelation(ExternalToken::RELATION_PROFILE, ExternalProfile::ATTRIBUTE_USER, Arr::integer($parameters, ExternalProfile::ATTRIBUTE_USER))
|
|
->whereRelation(ExternalToken::RELATION_PROFILE, ExternalProfile::ATTRIBUTE_SITE, $site->value)
|
|
->first();
|
|
|
|
if (! $externalToken instanceof ExternalToken) {
|
|
$externalToken = $this->getActionClass($site)->store($parameters);
|
|
}
|
|
|
|
$profileAction = new StoreExternalProfileClaimedAction();
|
|
|
|
$profile = $profileAction->firstOrCreate($externalToken, $parameters);
|
|
|
|
$profile->externaltoken()->save($externalToken);
|
|
|
|
DB::commit();
|
|
|
|
return $profile;
|
|
} catch (Exception $e) {
|
|
Log::error($e->getMessage());
|
|
|
|
DB::rollBack();
|
|
|
|
throw $e;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get the mapping for the token class.
|
|
*
|
|
* @throws RuntimeException
|
|
*/
|
|
protected function getActionClass(ExternalProfileSite $site): BaseExternalTokenAction
|
|
{
|
|
return match ($site) {
|
|
ExternalProfileSite::ANILIST => new AnilistExternalTokenAction(),
|
|
ExternalProfileSite::MAL => new MalExternalTokenAction(),
|
|
default => throw new RuntimeException("External token action not configured for site {$site->localize()}"),
|
|
};
|
|
}
|
|
}
|