mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-02-26 02:59:25 +01:00
96 lines
2.4 KiB
PHP
96 lines
2.4 KiB
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* @see https://github.com/laminas/laminas-mail for the canonical source repository
|
||
|
* @copyright https://github.com/laminas/laminas-mail/blob/master/COPYRIGHT.md
|
||
|
* @license https://github.com/laminas/laminas-mail/blob/master/LICENSE.md New BSD License
|
||
|
*/
|
||
|
|
||
|
namespace Laminas\Mail\Transport;
|
||
|
|
||
|
use Laminas\Mail\Exception;
|
||
|
use Laminas\Stdlib\AbstractOptions;
|
||
|
|
||
|
class FileOptions extends AbstractOptions
|
||
|
{
|
||
|
/**
|
||
|
* @var string Path to stored mail files
|
||
|
*/
|
||
|
protected $path;
|
||
|
|
||
|
/**
|
||
|
* @var callable
|
||
|
*/
|
||
|
protected $callback;
|
||
|
|
||
|
/**
|
||
|
* Set path to stored mail files
|
||
|
*
|
||
|
* @param string $path
|
||
|
* @throws \Laminas\Mail\Exception\InvalidArgumentException
|
||
|
* @return FileOptions
|
||
|
*/
|
||
|
public function setPath($path)
|
||
|
{
|
||
|
if (! is_dir($path) || ! is_writable($path)) {
|
||
|
throw new Exception\InvalidArgumentException(sprintf(
|
||
|
'%s expects a valid path in which to write mail files; received "%s"',
|
||
|
__METHOD__,
|
||
|
(string) $path
|
||
|
));
|
||
|
}
|
||
|
$this->path = $path;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get path
|
||
|
*
|
||
|
* If none is set, uses value from sys_get_temp_dir()
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getPath()
|
||
|
{
|
||
|
if (null === $this->path) {
|
||
|
$this->setPath(sys_get_temp_dir());
|
||
|
}
|
||
|
return $this->path;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Set callback used to generate a file name
|
||
|
*
|
||
|
* @param callable $callback
|
||
|
* @throws \Laminas\Mail\Exception\InvalidArgumentException
|
||
|
* @return FileOptions
|
||
|
*/
|
||
|
public function setCallback($callback)
|
||
|
{
|
||
|
if (! is_callable($callback)) {
|
||
|
throw new Exception\InvalidArgumentException(sprintf(
|
||
|
'%s expects a valid callback; received "%s"',
|
||
|
__METHOD__,
|
||
|
(is_object($callback) ? get_class($callback) : gettype($callback))
|
||
|
));
|
||
|
}
|
||
|
$this->callback = $callback;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get callback used to generate a file name
|
||
|
*
|
||
|
* @return callable
|
||
|
*/
|
||
|
public function getCallback()
|
||
|
{
|
||
|
if (null === $this->callback) {
|
||
|
$this->setCallback(function () {
|
||
|
return 'LaminasMail_' . time() . '_' . mt_rand() . '.eml';
|
||
|
});
|
||
|
}
|
||
|
return $this->callback;
|
||
|
}
|
||
|
}
|