assets and structure job modifications

This commit is contained in:
2019-05-28 22:50:43 -05:00
parent 1e43122c3d
commit f479a7066c
4 changed files with 206 additions and 103 deletions

View File

@@ -53,6 +53,58 @@ class GetAssets extends Command
*/ */
public function handle() public function handle()
{ {
// //Create the command helper container
$task = new CommandHelper('GetAssets');
//Add the entry into the jobs table saying the job is starting
$task->SetStartStatus();
//Declare some variables
$charId = 93738849;
$corpId = 98287666;
//ESI Scope Check
$esiHelper = new Esi();
$assetScope = $esiHelper->HaveEsiScope(93738489, 'esi-assets.read_corporation_assets.v1');
if($assetScope == false) {
Log::critical("Scope check for esi failed.");
return null;
}
//Setup the esi authentication container
$config = config('esi');
//Get the refresh token from the database
$token = EsiToken::where(['character_id' => $charId])->get(['refresh_token']);
$authentication = new EsiAuthentication([
'client_id' => $config['client_id'],
'secret' => $config['secret'],
'refresh_token' => $token[0]->refresh_token,
]);
$esi = new Eseye($authentication);
//Set the current page
$currentPage = 1;
//Set our default total pages, and we will refresh this later
$totalPages = 1;
try {
$assets = $esi->page($currentPage)
->invoke('get', '/corporations/{corporation_id}/assets/', [
'corporation_id' => $corpId,
]);
} catch (RequestFailedException $e) {
//
}
$totalPages = $assets->pages;
for($i = 1; $i <= $totalPages; $i++) {
$job = new JobProcessAsset;
$job->charId = $charId;
$job->corpId = $corpId;
$job->page = $i;
ProcessAssetJob::dispatch($job)->onQueue('default');
}
} }
} }

View File

@@ -57,6 +57,10 @@ class GetStructures extends Command
//Add the entry into the jobs table saying the job is starting //Add the entry into the jobs table saying the job is starting
$task->SetStartStatus(); $task->SetStartStatus();
//Declare some variables
$charId = 93738849;
$corpId = 98287666;
//ESI Scope Check //ESI Scope Check
$esiHelper = new Esi(); $esiHelper = new Esi();
$structureScope = $esiHelper->HaveEsiScope($charId, 'esi-universe.read_structures.v1'); $structureScope = $esiHelper->HaveEsiScope($charId, 'esi-universe.read_structures.v1');
@@ -84,32 +88,26 @@ class GetStructures extends Command
//Set our default total pages, and we will refresh this later //Set our default total pages, and we will refresh this later
$totalPages = 1; $totalPages = 1;
do { try {
try { $structures = $esi->page($currentPage)
$structures = $esi->page($currentPage) ->invoke('get', '/corporations/{corporation_id}/structures/', [
->invoke('get', '/corporations/{corporation_id}/structures/', [ 'corporation_id' => $corpId,
'corporation_id' => 98287666, ]);
]); } catch (RequestFailedException $e) {
} catch (RequestFailedException $e) { Log::critical("Failed to get structure list.");
Log::critical("Failed to get structure list."); return null;
return null; }
}
//Set the total pages we need to cycle through $totalPages = $structures->pages;
if($totalPages == 1) {
$totalPages = $structures->pages;
}
//Dispatch a job to get all of the structure information from ESI for($i = 1; $i <= $totalPages; $i++) {
foreach($structures as $structure) { $job = new JobProcessStructure;
$job = new JobProcessStructure; $job->charId = $charId;
$job->charId = 93738489; $job->corpId = $corpId;
$job->corpId = 98287666; $job->page = $i;
$job->structure = $structure; $job->esi = $esi;
ProcessStructureJob::dispatch($job)->onQueue('default'); ProcessStructureJob::dispatch($job)->onQueue('default');
} }
} while ($currentPage < $totalPages);
//Mark the job as finished //Mark the job as finished
$task->SetStopStatus(); $task->SetStopStatus();

View File

@@ -39,7 +39,7 @@ class ProcessStructureJob implements ShouldQueue
*/ */
private $charId; private $charId;
private $corpId; private $corpId;
private $structure; private $page;
/** /**
@@ -52,6 +52,8 @@ class ProcessStructureJob implements ShouldQueue
$this->charId = $jps->charId; $this->charId = $jps->charId;
$this->corpId = $jps->corpId; $this->corpId = $jps->corpId;
$this->structure = $jps->structure; $this->structure = $jps->structure;
$this->page = $jps->page;
$this->esi = $jps->esi;
//Set the connection for the job //Set the connection for the job
$this->connection = 'redis'; $this->connection = 'redis';
@@ -77,96 +79,146 @@ class ProcessStructureJob implements ShouldQueue
return null; return null;
} }
//Setup the Eseye container and authenticate it. //Get the page of structures
$config = config('esi'); $structures = $this->GetListOfStructures();
$token = EsiToken::where(['character_id' => 93738489])->get(['refresh_token']);
$authentication = new EsiAuthentication([
'client_id' => $config['client_id'],
'secret' => $config['secret'],
'refresh_token' => $token[0]->refresh_token,
]);
//Declare the esi variable foreach($structures as $structure) {
$esi = new Eseye($authentication); $info = $this->GetStructureInfo($structure['structure_id']);
try { $solarName = $this->GetSolarSystemName($info['solar_system_id']);
$info = $esi->invoke('get', '/universe/structures/{structure_id}/', [
'structure_id' => $this->structure['structure_id'],
]); //Record the structure information into the database
} catch(RequestFailedException $e) { //Find if the structure exists
return null; $found = Structure::where(['structure_id' => $structure['structure_id']])->get();
if($found) {
$this->UpdateExistingStructure($structure, $info, $solarName);
} else {
$this->StoreNewStructure($structure, $info, $solarName);
}
}
}
private function UpdateExistingStructure($structure, $info, $solarName) {
//For each line see if it is part of the structure array, and attempt to modify each variable
//This will be implemented in the near future.
if(isset($structures['services'])) {
foreach($structure['service'] as $service) {
//Search for the service, and if found, update it, else add it.
$serviceFound = Service::where([
'structure_id' => $structure['structure_id'],
'name' => $service['name'],
])->get();
if($serviceFound) {
Service::where([
'structure_id' => $structure['structure_id'],
'name' => $service['name'],
])->update([
'state' => $service['state'],
]);
} else {
$newService = new Service;
$newService->structure_id = $structure['structure_id'];
$newService->name = $service['name'];
$newService->state = $service['state'];
}
}
}
}
private function StoreNewStructure($structure, $info, $solarName) {
$structure = new Structure;
$structure->structure_id = $structure['structure_id'];
$structure->structure_name = $info['name'];
$structure->corporation_id = $info['owner_id'];
$structure->solar_system_id = $info['solar_system_id'];
$structure->solary_system_name = $solarName;
if(isset($info['type_id'])) {
$structure->type_id = $info['type_id'];
}
$structure->corporation_id = $structure['corporation_id'];
if(isset($structures['services'])) {
$structure->services = true;
} else {
$structure->services = false;
}
if(isset($structure['state_timer_start'])) {
$structure->state_timer_start = $this->DecodeDate($structure['state_timer_start']);
}
if(isset($structure['state_timer_end'])) {
$structure->state_timer_end = $this->DecodeDate($structure['state_timer_end']);
}
if(isset($structure['fuel_expires'])) {
$structure->fuel_expires = $structure['fuel_expires'];
}
$structure->profile_id = $structure['profile_id'];
$structure->position_x = $info['position']['x'];
$structure->position_y = $info['position']['y'];
$structure->position_z = $info['position']['z'];
if(isset($structure['next_reinforce_apply'])) {
$structure->next_reinforce_apply = $structure['next_reinforce_apply'];
}
if(isset($structure['next_reinforce_hour'])) {
$structure->next_reinforce_hour = $structure['next_reinforce_hour'];
}
if(isset($structure['next_reinforce_weekday'])) {
$structure->next_reinforce_weekday = $structure['next_reinforce_weekday'];
}
$structure->reinforce_hour = $structure['reinforce_hour'];
if(isset($structure['reinforce_weekday'])) {
$structure->reinforce_weekday = $structure['reinforce_weekday'];
}
if(isset($structure['unanchors_at'])) {
$structure->unanchors_at = $structure['unanchors_at'];
}
//If we set the structure services to true, let's save the services
if($structure->services == true) {
$this->StorestructureServices($structure['services'], $structure['structure_id']);
} }
//Save the database record
$structure->save();
}
private function GetSolarSystemName($systemId) {
//Attempt to get the solar system name from ESI //Attempt to get the solar system name from ESI
try { try {
$solarName = $esi->invoke('get', '/universe/systems/{system_id}/', [ $solarName = $this->esi->invoke('get', '/universe/systems/{system_id}/', [
'system_id' => $info['solary_system_id'], 'system_id' => $systemId,
]); ]);
} catch(RequestFailedException $e) { } catch(RequestFailedException $e) {
$solarName = null; $solarName = null;
} }
//Record the structure information into the database return $solarName;
//Find if the structure exists }
$found = Structure::where(['structure_id' => $this->structure['structure_id']])->get();
if($found) {
} else { private function GetStructureInfo($structureId) {
$structure = new Structure; try {
$structure->structure_id = $this->structure['structure_id']; $info = $this->esi->invoke('get', '/universe/structures/{structure_id}/', [
$structure->structure_name = $info['name']; 'structure_id' => $structureId,
$structure->corporation_id = $info['owner_id']; ]);
$structure->solar_system_id = $info['solar_system_id']; } catch(RequestFailedException $e) {
$structure->solary_system_name = $solarName; $info = null;
if(isset($info['type_id'])) {
$structure->type_id = $info['type_id'];
}
$structure->corporation_id = $this->structure['corporation_id'];
if(isset($this->structures['services'])) {
$structure->services = true;
} else {
$structure->services = false;
}
if(isset($this->structure['state_timer_start'])) {
$structure->state_timer_start = $this->DecodeDate($this->structure['state_timer_start']);
}
if(isset($this->structure['state_timer_end'])) {
$structure->state_timer_end = $this->DecodeDate($this->structure['state_timer_end']);
}
if(isset($this->structure['fuel_expires'])) {
$structure->fuel_expires = $this->structure['fuel_expires'];
}
$structure->profile_id = $this->structure['profile_id'];
$structure->position_x = $info['position']['x'];
$structure->position_y = $info['position']['y'];
$structure->position_z = $info['position']['z'];
if(isset($this->structure['next_reinforce_apply'])) {
$structure->next_reinforce_apply = $this->structure['next_reinforce_apply'];
}
if(isset($this->structure['next_reinforce_hour'])) {
$structure->next_reinforce_hour = $this->structure['next_reinforce_hour'];
}
if(isset($this->structure['next_reinforce_weekday'])) {
$structure->next_reinforce_weekday = $this->structure['next_reinforce_weekday'];
}
$structure->reinforce_hour = $this->structure['reinforce_hour'];
if(isset($this->structure['reinforce_weekday'])) {
$structure->reinforce_weekday = $this->structure['reinforce_weekday'];
}
if(isset($this->structure['unanchors_at'])) {
$structure->unanchors_at = $this->structure['unanchors_at'];
}
//If we set the structure services to true, let's save the services
if($structure->services == true) {
$this->StorestructureServices($this->structure['services'], $this->structure['structure_id']);
}
//Save the database record
$structure->save();
} }
//Record the structure's services information into the database return $info;
}
private function GetListOfStructures() {
try {
$structures = $this->esi->page($this->page)
->invoke('get', '/corporations/{corporation_id}/structures/', [
'corporation_id' => $this->corpId,
]);
} catch (RequestFailedException $e) {
Log::critical("Failed to get structure list.");
$structures = null;
}
return $structures;
} }
private function StoreStructureServices($services, $structureId) { private function StoreStructureServices($services, $structureId) {

View File

@@ -19,7 +19,8 @@ class JobProcessStructure extends Model
*/ */
protected $fillable = [ protected $fillable = [
'charId', 'charId',
'corporationId', 'corpId',
'structure', 'page',
'esi',
]; ];
} }