phpOMS/System/File/Local/FileAbstract.php
2022-12-26 16:10:12 +01:00

255 lines
4.6 KiB
PHP
Executable File

<?php
/**
* Karaka
*
* PHP Version 8.1
*
* @package phpOMS\System\File\Local
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace phpOMS\System\File\Local;
use phpOMS\System\File\PathException;
/**
* Filesystem class.
*
* Performing operations on the file system
*
* @package phpOMS\System\File\Local
* @license OMS License 1.0
* @link https://jingga.app
* @since 1.0.0
*/
abstract class FileAbstract implements LocalContainerInterface
{
/**
* Path.
*
* @var string
* @since 1.0.0
*/
protected string $path = '';
/**
* Name.
*
* @var string
* @since 1.0.0
*/
protected string $name = 'new_directory';
/**
* Directory/File count.
*
* @var int
* @since 1.0.0
*/
protected int $count = 0;
/**
* Directory/Filesize in bytes.
*
* @var int
* @since 1.0.0
*/
protected int $size = 0;
/**
* Created at.
*
* @var \DateTimeImmutable
* @since 1.0.0
*/
public \DateTimeImmutable $createdAt;
/**
* Last changed at.
*
* @var \DateTime
* @since 1.0.0
*/
protected \DateTime $changedAt;
/**
* Owner.
*
* @var string
* @since 1.0.0
*/
protected string $owner = '';
/**
* Permission.
*
* @var int
* @since 1.0.0
*/
protected int $permission = 0755;
/**
* Is directory initialized
*
* @var bool
* @since 1.0.0
*/
protected bool $isInitialized = false;
/**
* Constructor.
*
* @param string $path Path
*
* @since 1.0.0
*/
public function __construct(string $path)
{
$this->path = \rtrim($path, '/\\');
$this->name = \basename($path);
$this->createdAt = new \DateTimeImmutable('now');
$this->changedAt = new \DateTime('now');
}
/**
* {@inheritdoc}
*/
public static function created(string $path) : \DateTime
{
if (!\file_exists($path)) {
throw new PathException($path);
}
$time = \filectime($path);
return self::createFileTime($time === false ? 0 : $time);
}
/**
* {@inheritdoc}
*/
public static function changed(string $path) : \DateTime
{
if (!\file_exists($path)) {
throw new PathException($path);
}
$time = \filemtime($path);
return self::createFileTime($time === false ? 0 : $time);
}
/**
* Create file time.
*
* @param int $time Time of the file
*
* @return \DateTime
*
* @since 1.0.0
*/
private static function createFileTime(int $time) : \DateTime
{
$fileTime = new \DateTime();
$fileTime->setTimestamp($time);
return $fileTime;
}
/**
* {@inheritdoc}
*/
public function getCount(bool $recursive = true) : int
{
return $this->count;
}
/**
* {@inheritdoc}
*/
public function getSize(bool $recursive = true) : int
{
return $this->size;
}
/**
* {@inheritdoc}
*/
public function getName() : string
{
return $this->name;
}
/**
* {@inheritdoc}
*/
public function getBasename() : string
{
return \basename($this->path);
}
/**
* {@inheritdoc}
*/
public function getPath() : string
{
return $this->path;
}
/**
* {@inheritdoc}
*/
public function getCreatedAt() : \DateTimeImmutable
{
return $this->createdAt;
}
/**
* {@inheritdoc}
*/
public function getChangedAt() : \DateTime
{
return $this->changedAt;
}
/**
* {@inheritdoc}
*/
public function getOwner() : string
{
return $this->owner;
}
/**
* {@inheritdoc}
*/
public function getPermission() : int
{
return $this->permission;
}
/**
* {@inheritdoc}
*/
public function index() : void
{
$mtime = \filemtime($this->path);
$ctime = \filectime($this->path);
$this->createdAt = (new \DateTimeImmutable())->setTimestamp($mtime === false ? 0 : $mtime);
$this->changedAt->setTimestamp($ctime === false ? 0 : $ctime);
$owner = \fileowner($this->path);
$this->owner = $owner === false ? '' : (string) $owner;
$this->permission = (int) \substr(\sprintf('%o', \fileperms($this->path)), -4);
$this->isInitialized = true;
}
}