| 1 |
<?php |
| 2 |
|
| 3 |
namespace ImportWP\Common\Importer\Parser; |
| 4 |
|
| 5 |
use ImportWP\Common\Importer\File\CSVFile; |
| 6 |
use ImportWP\Common\Importer\ParserInterface; |
| 7 |
|
| 8 |
/** |
| 9 |
* @property CSVFile $file |
| 10 |
*/ |
| 11 |
class CSVParser extends AbstractParser implements ParserInterface |
| 12 |
{ |
| 13 |
/** |
| 14 |
* CSV Record |
| 15 |
* |
| 16 |
* @var array |
| 17 |
*/ |
| 18 |
private $csv_record; |
| 19 |
|
| 20 |
public function query($query) |
| 21 |
{ |
| 22 |
return isset($this->csv_record[$query]) ? $this->csv_record[$query] : ''; |
| 23 |
} |
| 24 |
|
| 25 |
protected function onRecordLoaded() |
| 26 |
{ |
| 27 |
$this->csv_record = str_getcsv($this->record, $this->file->getDelimiter(), $this->file->getEnclosure()); |
| 28 |
} |
| 29 |
|
| 30 |
public function record() |
| 31 |
{ |
| 32 |
return $this->csv_record; |
| 33 |
} |
| 34 |
|
| 35 |
public function query_matches($matches) |
| 36 |
{ |
| 37 |
// make sure the selector is numeric {0} |
| 38 |
if (isset($matches[0]) && preg_match('/^\d+$/', $matches[1]) === 1) { |
| 39 |
return parent::query_matches($matches); |
| 40 |
} |
| 41 |
|
| 42 |
return $matches[0]; |
| 43 |
} |
| 44 |
} |
| 45 |
|