dfbaa1afd3
* Fix rowmapper generator, check for fields, map users #443 * Formatting * Remove value store at the end of the import * Update the notes for the importer about users * Uncomment importers disabled during testing
36 lines
929 B
PHP
36 lines
929 B
PHP
<?php
|
|
|
|
namespace Modules\Importer\Services\Importers;
|
|
|
|
use App\Models\Rank;
|
|
use Modules\Importer\Services\BaseImporter;
|
|
|
|
class RankImport extends BaseImporter
|
|
{
|
|
protected $table = 'ranks';
|
|
protected $idField = 'rankid';
|
|
|
|
public function run($start = 0)
|
|
{
|
|
$this->comment('--- RANK IMPORT ---');
|
|
|
|
$count = 0;
|
|
$rows = $this->db->readRows($this->table, $this->idField, $start);
|
|
foreach ($rows as $row) {
|
|
$rank = Rank::firstOrCreate(['name' => $row->rank], [
|
|
'image_url' => $row->rankimage,
|
|
'hours' => $row->minhours,
|
|
]);
|
|
|
|
$this->idMapper->addMapping('ranks', $row->rankid, $rank->id);
|
|
$this->idMapper->addMapping('ranks', $row->rank, $rank->id);
|
|
|
|
if ($rank->wasRecentlyCreated) {
|
|
$count++;
|
|
}
|
|
}
|
|
|
|
$this->info('Imported '.$count.' ranks');
|
|
}
|
|
}
|