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:
<?php
namespace Net\Bazzline\Component\Locator\FileExistsStrategy;
class SuffixWithCurrentTimestampStrategy extends AbstractStrategy
{
public function __construct()
{
$this->currentTimeStamp = time();
}
private $currentTimeStamp;
public function setCurrentTimeStamp($currentTimeStamp)
{
$this->currentTimeStamp = (int) $currentTimeStamp;
}
public function getCurrentTimeStamp()
{
if (is_null($this->currentTimeStamp)) {
throw new RuntimeException(
'current timestamp is mandatory'
);
}
return $this->currentTimeStamp;
}
public function execute()
{
$name = $this->getFileName();
$path = $this->getFilePath();
$newName = $path . DIRECTORY_SEPARATOR . $name . '.' . $this->getCurrentTimeStamp();
$oldName = $path . DIRECTORY_SEPARATOR . $name;
$fileCouldNotBeMoved = ((rename($oldName, $newName)) === false);
if ($fileCouldNotBeMoved) {
throw new RuntimeException(
'could not move file from "' . $oldName . '" to "' . $newName . '"'
);
}
}
}