decode date in updating structures

This commit is contained in:
2021-05-18 20:59:22 +09:00
parent 8c580827b4
commit 13f3e8e8f9

View File

@@ -122,6 +122,8 @@ class ProcessAllianceStructures implements ShouldQueue
} }
private function UpdateStructure($structure) { private function UpdateStructure($structure) {
$esiHelper = new Esi;
if(isset($structure->corporation_id)) { if(isset($structure->corporation_id)) {
Structure::where([ Structure::where([
'structure_id' => $structure->structure_id, 'structure_id' => $structure->structure_id,
@@ -140,21 +142,21 @@ class ProcessAllianceStructures implements ShouldQueue
Structure::where([ Structure::where([
'structure_id' => $structure->structure_id, 'structure_id' => $structure->structure_id,
])->update([ ])->update([
'state_timer_start' => $structure->state_timer_start, 'state_timer_start' => $esiHelper->DecodeDate($structure->state_timer_start),
]); ]);
} }
if(isset($structure->state_timer_end)) { if(isset($structure->state_timer_end)) {
Structure::where([ Structure::where([
'structure_id' => $structure->structure_id, 'structure_id' => $structure->structure_id,
])->update([ ])->update([
'state_timer_end' => $structure->state_timer_end, 'state_timer_end' => $esiHelper->DecodeDate($structure->state_timer_end),
]); ]);
} }
if(isset($structure->fuel_expires)) { if(isset($structure->fuel_expires)) {
Structure::where([ Structure::where([
'structure_id' => $structure->structure_id, 'structure_id' => $structure->structure_id,
])->update([ ])->update([
'fuel_expires' => $structure->fuel_expires, 'fuel_expires' => $esiHelper->DecodeDate($structure->fuel_expires),
]); ]);
} }
if(isset($structure->profile_id)) { if(isset($structure->profile_id)) {
@@ -189,7 +191,7 @@ class ProcessAllianceStructures implements ShouldQueue
Structure::where([ Structure::where([
'structure_id' => $structure->structure_id, 'structure_id' => $structure->structure_id,
])->update([ ])->update([
'unanchors_at' => $structure->unanchors_at, 'unanchors_at' => $esiHelper->DecodeDate($structure->unanchors_at),
]); ]);
} }