src/Jobs/Universe/Structures/Citadel.php
<?php
/*
* This file is part of SeAT
*
* Copyright (C) 2015 to present Leon Jacobs
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
namespace Seat\Eveapi\Jobs\Universe\Structures;
use Seat\Eseye\Exceptions\RequestFailedException;
use Seat\Eveapi\Jobs\AbstractAuthCharacterJob;
use Seat\Eveapi\Mapping\Structures\UniverseStructureMapping;
use Seat\Eveapi\Models\RefreshToken;
use Seat\Eveapi\Models\Universe\UniverseStructure;
/**
* Class Citadels.
*
* @package Seat\Eveapi\Jobs\Universe
*/
class Citadel extends AbstractAuthCharacterJob
{
/**
* HTTP 403 is frequent for Citadel jobs. Decrease RATE_LIMIT to not starve out other jobs.
*/
const RATE_LIMIT = parent::RATE_LIMIT * 0.65;
/**
* @var string
*/
protected $method = 'get';
/**
* @var string
*/
protected $endpoint = '/universe/structures/{structure_id}/';
/**
* @var string
*/
protected $scope = 'esi-universe.read_structures.v1';
/**
* @var string
*/
protected $version = 'v2';
/**
* @var array
*/
protected $tags = ['universe', 'structure'];
private int $structure_id;
/**
* @param int $structure_id
* @param RefreshToken $token
*/
public function __construct(int $structure_id, RefreshToken $token)
{
parent::__construct($token);
$this->structure_id = $structure_id;
}
/**
* {@inheritdoc}
*
* @throws RequestFailedException
*/
public function handle()
{
parent::handle();
// it looks like we've loaded it in the meantime
if(UniverseStructure::find($this->structure_id) !== null) return;
// check if the acl cache allows refetching the structure
if(! CacheCitadelAccessCache::canAccess($this->getCharacterId(), $this->structure_id)) return;
try {
// attempt to resolve the structure
$response = $this->retrieve([
'structure_id' => $this->structure_id,
]);
$model = UniverseStructure::firstOrNew([
'structure_id' => $this->structure_id,
]);
$structure = $response->getBody();
UniverseStructureMapping::make($model, $structure, [
'structure_id' => function () {
return $this->structure_id;
},
])->save();
} catch (RequestFailedException $e) {
if($e->getEsiResponse()->getErrorCode() === 403) {
CacheCitadelAccessCache::blockAccess($this->getCharacterId(), $this->structure_id);
} else {
throw $e;
}
}
}
}