mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
137 lines
2.6 KiB
PHP
137 lines
2.6 KiB
PHP
<?php
|
|
/**
|
|
*
|
|
* This file is part of the phpBB Forum Software package.
|
|
*
|
|
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
|
* @license GNU General Public License, version 2 (GPL-2.0)
|
|
*
|
|
* For full copyright and license information, please see
|
|
* the docs/CREDITS.txt file.
|
|
*
|
|
*/
|
|
|
|
namespace phpbb\storage\adapter;
|
|
|
|
use phpbb\storage\exception\storage_exception;
|
|
use phpbb\filesystem\exception\filesystem_exception;
|
|
use phpbb\filesystem\filesystem;
|
|
use phpbb\filesystem\helper as filesystem_helper;
|
|
|
|
/**
|
|
* Experimental
|
|
*/
|
|
class local implements adapter_interface
|
|
{
|
|
/**
|
|
* Filesystem component
|
|
*
|
|
* @var filesystem
|
|
*/
|
|
protected $filesystem;
|
|
|
|
/**
|
|
* @var string path
|
|
*/
|
|
protected $phpbb_root_path;
|
|
|
|
/**
|
|
* Absolute path to the storage folder
|
|
* Always finish with DIRECTORY_SEPARATOR
|
|
* Example:
|
|
* - /var/www/phpBB/images/avatar/upload/
|
|
* - C:\phpBB\images\avatars\upload\
|
|
*
|
|
* @var string path
|
|
*/
|
|
protected $root_path;
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param filesystem $filesystem
|
|
* @param string $phpbb_root_path
|
|
*/
|
|
public function __construct(filesystem $filesystem, string $phpbb_root_path)
|
|
{
|
|
$this->filesystem = $filesystem;
|
|
$this->phpbb_root_path = $phpbb_root_path;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*
|
|
*
|
|
*/
|
|
public function configure(array $options): void
|
|
{
|
|
$this->root_path = filesystem_helper::realpath($this->phpbb_root_path . $options['path']) . DIRECTORY_SEPARATOR;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function read(string $path)
|
|
{
|
|
$stream = @fopen($this->root_path . $path, 'rb');
|
|
|
|
if (!$stream)
|
|
{
|
|
throw new storage_exception('STORAGE_CANNOT_OPEN_FILE', $path);
|
|
}
|
|
|
|
return $stream;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function write(string $path, $resource): int
|
|
{
|
|
$stream = @fopen($this->root_path . $path, 'w+b');
|
|
|
|
if (!$stream)
|
|
{
|
|
throw new storage_exception('STORAGE_CANNOT_CREATE_FILE', $path);
|
|
}
|
|
|
|
if (($size = stream_copy_to_stream($resource, $stream)) === false)
|
|
{
|
|
fclose($stream);
|
|
throw new storage_exception('STORAGE_CANNOT_COPY_RESOURCE');
|
|
}
|
|
|
|
fclose($stream);
|
|
|
|
return $size;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function delete(string $path): void
|
|
{
|
|
try
|
|
{
|
|
$this->filesystem->remove($this->root_path . $path);
|
|
}
|
|
catch (filesystem_exception $e)
|
|
{
|
|
throw new storage_exception('STORAGE_CANNOT_DELETE', $path, array(), $e);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function free_space(): float
|
|
{
|
|
if (!function_exists('disk_free_space') || ($free_space = @disk_free_space($this->root_path)) === false)
|
|
{
|
|
throw new storage_exception('STORAGE_CANNOT_GET_FREE_SPACE');
|
|
}
|
|
|
|
return $free_space;
|
|
}
|
|
|
|
}
|