src/Jobs/Character/Affiliation.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\Character;
use Illuminate\Bus\Batchable;
use Seat\Eveapi\Jobs\EsiBase;
use Seat\Eveapi\Models\Character\CharacterAffiliation;
/**
* Class Affiliation.
*
* @package Seat\Eveapi\Jobs\Character
*/
class Affiliation extends EsiBase
{
use Batchable;
/**
* The maximum number of entities we can request affiliation information for.
*/
const REQUEST_ID_LIMIT = 1000;
/**
* @var string
*/
protected $method = 'post';
/**
* @var string
*/
protected $endpoint = '/characters/affiliation/';
/**
* @var int
*/
protected $version = 'v2';
/**
* @var array
*/
protected $tags = ['character'];
/**
* @var array
*/
protected $character_ids;
/**
* Affiliation constructor.
*
* @param array $character_ids
*/
public function __construct(array $character_ids)
{
parent::__construct();
$this->character_ids = $character_ids;
}
/**
* Execute the job.
*
* @return void
*
* @throws \Exception
*/
public function handle()
{
logger()->debug(
sprintf('[Jobs][%s] Retrieving affiliation for the following characters list.', $this->job->getJobId()),
[
'limit' => self::REQUEST_ID_LIMIT,
'batch' => $this->character_ids,
]);
collect($this->character_ids)->chunk(self::REQUEST_ID_LIMIT)->each(function ($chunk) {
$this->request_body = $chunk->values()->all();
$response = $this->retrieve();
$affiliations = collect($response->getBody());
$affiliations->each(function ($affiliation) {
CharacterAffiliation::updateOrCreate(
['character_id' => $affiliation->character_id],
['corporation_id' => $affiliation->corporation_id, 'alliance_id' => $affiliation->alliance_id ?? null, 'faction_id' => $affiliation->faction_id ?? null]
);
});
});
}
}