Spaces:
No application file
No application file
File size: 1,677 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
<?php
namespace Mautic\ReportBundle\Model;
use Mautic\CoreBundle\Exception\FilePathException;
use Mautic\CoreBundle\Helper\CoreParametersHelper;
use Mautic\CoreBundle\Helper\FilePathResolver;
use Mautic\ReportBundle\Exception\FileIOException;
class ExportHandler
{
/**
* @var string
*/
private $dir;
public function __construct(
CoreParametersHelper $coreParametersHelper,
private FilePathResolver $filePathResolver
) {
$this->dir = $coreParametersHelper->get('report_temp_dir');
}
/**
* @return bool|resource
*
* @throws FileIOException
*/
public function getHandler($fileName)
{
$path = $this->getPath($fileName);
if (false === ($handler = @fopen($path, 'a'))) {
throw new FileIOException('Could not open file '.$path);
}
return $handler;
}
/**
* @param resource $handler
*/
public function closeHandler($handler): void
{
fclose($handler);
}
/**
* @param string $fileName
*/
public function removeFile($fileName): void
{
try {
$path = $this->getPath($fileName);
$this->filePathResolver->delete($path);
} catch (FileIOException) {
}
}
/**
* @throws FileIOException
*/
public function getPath($fileName): string
{
try {
$this->filePathResolver->createDirectory($this->dir);
} catch (FilePathException $e) {
throw new FileIOException('Could not create directory '.$this->dir, 0, $e);
}
return $this->dir.'/'.$fileName.'.csv';
}
}
|