phpOMS/System/File/Ftp/FtpStorage.php

146 lines
3.0 KiB
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.2
*
* @package phpOMS\System\File\Ftp
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link http://website.orange-management.de
*/
declare(strict_types=1);
namespace phpOMS\System\File\Ftp;
use phpOMS\System\File\StorageAbstract;
use phpOMS\System\File\PathException;
/**
* Filesystem class.
*
* Performing operations on the file system
*
* @package phpOMS\System\File\Ftp
* @license OMS License 1.0
* @link http://website.orange-management.de
* @since 1.0.0
* @codeCoverageIgnore
*/
class FtpStorage extends StorageAbstract
{
private static $instance = null;
public function __construct()
{
}
public static function getInstance() : StorageAbstract
{
if (self::$instance === null) {
self::$instance = new self();
}
return self::$instance;
}
protected static function getClassType(string $path) : string
{
return \is_dir($path) || (!is_file($path) && \stripos($path, '.') === false) ? Directory::class : File::class;
}
/**
* {@inheritdoc}
*/
public static function put(string $path, string $content, int $mode = 0) : bool
{
if (\is_dir($path)) {
throw new PathException($path);
}
return File::put($path, $content, $mode);
}
/**
* {@inheritdoc}
*/
public static function get(string $path) : string
{
if (\is_dir($path)) {
throw new PathException($path);
}
return File::get($path);
}
/**
* {@inheritdoc}
*/
public static function create(string $path) : bool
{
return \stripos($path, '.') === false ? Directory::create($path, 0755, true) : File::create($path);
}
/**
* {@inheritdoc}
*/
public static function list(string $path, string $filter = '*') : array
{
if (\is_file($path)) {
throw new PathException($path);
}
return Directory::list($path, $filter);
}
/**
* {@inheritdoc}
*/
public static function set(string $path, string $content) : bool
{
if (\is_dir($path)) {
throw new PathException($path);
}
return File::set($path, $content);
}
/**
* {@inheritdoc}
*/
public static function append(string $path, string $content) : bool
{
if (\is_dir($path)) {
throw new PathException($path);
}
return File::append($path, $content);
}
/**
* {@inheritdoc}
*/
public static function prepend(string $path, string $content) : bool
{
if (\is_dir($path)) {
throw new PathException($path);
}
return File::prepend($path, $content);
}
/**
* {@inheritdoc}
*/
public static function extension(string $path) : string
{
if (\is_dir($path)) {
throw new PathException($path);
}
return File::extension($path);
}
}