phpvms/app/Services/ExportService.php

81 lines
2.0 KiB
PHP
Raw Normal View History

2018-03-22 06:07:30 +08:00
<?php
namespace App\Services;
use App\Interfaces\ImportExport;
use App\Interfaces\Service;
use App\Repositories\FlightRepository;
use App\Services\ImportExport\FlightExporter;
2018-03-22 06:07:30 +08:00
use Illuminate\Support\Collection;
use League\Csv\CharsetConverter;
use League\Csv\Writer;
use Illuminate\Support\Facades\Storage;
2018-03-22 06:07:30 +08:00
/**
* Class ExportService
2018-03-22 06:07:30 +08:00
* @package App\Services
*/
class ExportService extends Service
2018-03-22 06:07:30 +08:00
{
protected $flightRepo;
/**
* ImporterService constructor.
* @param FlightRepository $flightRepo
*/
public function __construct(FlightRepository $flightRepo) {
$this->flightRepo = $flightRepo;
}
/**
* @param string $path
2018-03-22 06:07:30 +08:00
* @return Writer
*/
public function openCsv($path): Writer
2018-03-22 06:07:30 +08:00
{
$writer = Writer::createFromPath($path, 'w+');
2018-03-22 06:07:30 +08:00
CharsetConverter::addTo($writer, 'utf-8', 'iso-8859-15');
return $writer;
}
/**
* Run the actual importer
* @param Collection $collection
* @param ImportExport $exporter
* @return string
2018-03-22 06:07:30 +08:00
* @throws \League\Csv\CannotInsertRecord
*/
protected function runExport(Collection $collection, ImportExport $exporter): string
2018-03-22 06:07:30 +08:00
{
$filename = 'export_' . $exporter->assetType . '.csv';
Storage::makeDirectory(storage_path('app/import'));
$path = storage_path('app/import/'.$filename.'.csv');
$writer = $this->openCsv($path);
// Write out the header first
2018-03-22 06:07:30 +08:00
$writer->insertOne($exporter->getColumns());
// Write the rest of the rows
2018-03-22 06:07:30 +08:00
foreach ($collection as $row) {
$writer->insertOne($exporter->export($row));
}
return $path;
2018-03-22 06:07:30 +08:00
}
/**
* Export all of the flights
* @param Collection $flights
* @param string $csv_file
* @return mixed
* @throws \League\Csv\Exception
*/
public function exportFlights($flights)
2018-03-22 06:07:30 +08:00
{
$exporter = new FlightExporter();
return $this->runExport($flights, $exporter);
2018-03-22 06:07:30 +08:00
}
}