grav/system/src/Grav/Framework/File/AbstractFile.php

430 lines
9.7 KiB
PHP
Raw Normal View History

<?php
declare(strict_types=1);
/**
* @package Grav\Framework\File
*
2019-01-31 09:04:57 +01:00
* @copyright Copyright (C) 2015 - 2019 Trilby Media, LLC. All rights reserved.
* @license MIT License; see LICENSE file for details.
*/
namespace Grav\Framework\File;
use Grav\Framework\File\Interfaces\FileInterface;
use Grav\Framework\Filesystem\Filesystem;
class AbstractFile implements FileInterface
{
/** @var Filesystem */
private $filesystem;
/** @var string */
private $filepath;
/** @var string|null */
private $filename;
/** @var string|null */
private $path;
/** @var string|null */
private $basename;
/** @var string|null */
private $extension;
/** @var resource|null */
private $handle;
/** @var bool */
private $locked = false;
/**
* @param string $filepath
* @param Filesystem|null $filesystem
*/
public function __construct(string $filepath, Filesystem $filesystem = null)
{
2018-12-03 12:54:40 +01:00
$this->filesystem = $filesystem ?? Filesystem::getInstance();
$this->setFilepath($filepath);
}
/**
* Unlock file when the object gets destroyed.
*/
public function __destruct()
{
if ($this->isLocked()) {
$this->unlock();
}
}
public function __clone()
{
$this->handle = null;
$this->locked = false;
}
/**
* @return string
*/
public function serialize(): string
{
return serialize($this->doSerialize());
}
/**
* @param string $serialized
*/
public function unserialize($serialized): void
{
$this->doUnserialize(unserialize($serialized, ['allowed_classes' => false]));
}
/**
* Get full path to the file.
*
* @return string
*/
public function getFilePath(): string
{
return $this->filepath;
}
/**
* Get path to the file.
*
* @return string
*/
public function getPath(): string
{
if (null === $this->path) {
$this->setPathInfo();
}
return $this->path;
}
/**
* Get filename.
*
* @return string
*/
public function getFilename(): string
{
if (null === $this->filename) {
$this->setPathInfo();
}
return $this->filename;
}
/**
* Return name of the file without extension.
*
* @return string
*/
public function getBasename(): string
{
if (null === $this->basename) {
$this->setPathInfo();
}
return $this->basename;
}
/**
* Return file extension.
*
* @param bool $withDot
* @return string
*/
public function getExtension(bool $withDot = false): string
{
if (null === $this->extension) {
$this->setPathInfo();
}
return ($withDot ? '.' : '') . $this->extension;
}
/**
* Check if file exits.
*
* @return bool
*/
public function exists(): bool
{
return is_file($this->filepath);
}
/**
* Return file modification time.
*
* @return int Unix timestamp. If file does not exist, method returns current time.
*/
public function getCreationTime(): int
{
return is_file($this->filepath) ? filectime($this->filepath) : time();
}
/**
* Return file modification time.
*
* @return int Unix timestamp. If file does not exist, method returns current time.
*/
public function getModificationTime(): int
{
return is_file($this->filepath) ? filemtime($this->filepath) : time();
}
/**
* Lock file for writing. You need to manually unlock().
*
* @param bool $block For non-blocking lock, set the parameter to false.
* @return bool
* @throws \RuntimeException
*/
public function lock(bool $block = true): bool
{
if (!$this->handle) {
if (!$this->mkdir($this->getPath())) {
throw new \RuntimeException('Creating directory failed for ' . $this->filepath);
}
$this->handle = @fopen($this->filepath, 'cb+');
if (!$this->handle) {
$error = error_get_last();
throw new \RuntimeException("Opening file for writing failed on error {$error['message']}");
}
}
$lock = $block ? LOCK_EX : LOCK_EX | LOCK_NB;
// Some filesystems do not support file locks, only fail if another process holds the lock.
$this->locked = flock($this->handle, $lock, $wouldblock) || !$wouldblock;
return $this->locked;
}
/**
* Unlock file.
*
* @return bool
*/
public function unlock(): bool
{
if (!$this->handle) {
return false;
}
if ($this->locked) {
flock($this->handle, LOCK_UN);
2018-09-13 14:21:47 +02:00
$this->locked = false;
}
fclose($this->handle);
$this->handle = null;
return true;
}
/**
* Returns true if file has been locked for writing.
*
* @return bool True = locked, false = not locked.
*/
public function isLocked(): bool
{
return $this->locked;
}
/**
* Check if file exists and can be read.
*
* @return bool
*/
public function isReadable(): bool
{
return is_readable($this->filepath) && is_file($this->filepath);
}
/**
* Check if file can be written.
*
* @return bool
*/
public function isWritable(): bool
{
if (!file_exists($this->filepath)) {
return $this->isWritablePath($this->getPath());
}
return is_writable($this->filepath) && is_file($this->filepath);
}
/**
* (Re)Load a file and return file contents.
*
* @return string|array|false
*/
public function load()
{
return file_get_contents($this->filepath);
}
/**
* Save file.
*
* @param mixed $data
* @throws \RuntimeException
*/
public function save($data): void
{
$filepath = $this->filepath;
$dir = $this->getPath();
if (!$this->mkdir($dir)) {
throw new \RuntimeException('Creating directory failed for ' . $filepath);
}
if ($this->handle) {
$tmp = true;
// As we are using non-truncating locking, make sure that the file is empty before writing.
if (@ftruncate($this->handle, 0) === false || @fwrite($this->handle, $data) === false) {
// Writing file failed, throw an error.
$tmp = false;
}
} else {
// Create file with a temporary name and rename it to make the save action atomic.
$tmp = tempnam($dir, basename($filepath));
if ($tmp && @file_put_contents($tmp, $data) && @rename($tmp, $filepath)) {
@chmod($filepath, 0666 & ~umask());
} elseif ($tmp) {
@unlink($tmp);
$tmp = false;
}
}
if ($tmp === false) {
throw new \RuntimeException('Failed to save file ' . $filepath);
}
// Touch the directory as well, thus marking it modified.
@touch($dir);
}
/**
* Rename file in the filesystem if it exists.
*
* @param string $path
* @return bool
*/
public function rename(string $path): bool
{
if ($this->exists() && !@rename($this->filepath, $path)) {
return false;
}
$this->setFilepath($path);
return true;
}
/**
* Delete file from filesystem.
*
* @return bool
*/
public function delete(): bool
{
return @unlink($this->filepath);
}
/**
* @param string $dir
* @return bool
* @throws \RuntimeException
* @internal
*/
protected function mkdir(string $dir): bool
{
// Silence error for open_basedir; should fail in mkdir instead.
2019-02-26 14:13:40 +01:00
if (@is_dir($dir)) {
return true;
}
2019-02-26 14:13:40 +01:00
$success = @mkdir($dir, 0777, true);
2019-02-26 14:13:40 +01:00
if (!$success) {
// Take yet another look, make sure that the folder doesn't exist.
clearstatcache(true, $dir);
if (!@is_dir($dir)) {
return false;
}
}
return true;
}
/**
* @return array
*/
protected function doSerialize(): array
{
return [
'filepath' => $this->filepath
];
}
/**
* @param array $serialized
*/
protected function doUnserialize(array $serialized): void
{
$this->setFilepath($serialized['filepath']);
}
/**
* @param string $filepath
*/
protected function setFilepath(string $filepath): void
{
$this->filepath = $filepath;
$this->filename = null;
$this->basename = null;
$this->path = null;
$this->extension = null;
}
protected function setPathInfo(): void
{
$pathInfo = $this->filesystem->pathinfo($this->filepath);
$this->filename = $pathInfo['filename'] ?? null;
$this->basename = $pathInfo['basename'] ?? null;
$this->path = $pathInfo['dirname'] ?? null;
$this->extension = $pathInfo['extension'] ?? null;
}
/**
* @param string $dir
* @return bool
* @internal
*/
protected function isWritablePath(string $dir): bool
{
if ($dir === '') {
return false;
}
if (!file_exists($dir)) {
// Recursively look up in the directory tree.
return $this->isWritablePath($this->filesystem->parent($dir));
}
return is_dir($dir) && is_writable($dir);
}
}