67 lines
No EOL
1.3 KiB
PHP
67 lines
No EOL
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
use App\Database\DB;
|
|
use App\Web\Lang;
|
|
use App\Web\Session;
|
|
use League\Flysystem\FileNotFoundException;
|
|
use League\Flysystem\Filesystem;
|
|
use Monolog\Logger;
|
|
use Slim\Container;
|
|
|
|
/**
|
|
* @property Session|null session
|
|
* @property mixed|null view
|
|
* @property DB|null database
|
|
* @property Logger|null logger
|
|
* @property Filesystem|null storage
|
|
* @property Lang lang
|
|
* @property array settings
|
|
*/
|
|
abstract class Controller
|
|
{
|
|
|
|
/** @var Container */
|
|
protected $container;
|
|
|
|
public function __construct(Container $container)
|
|
{
|
|
$this->container = $container;
|
|
}
|
|
|
|
/**
|
|
* @param $name
|
|
* @return mixed|null
|
|
* @throws \Interop\Container\Exception\ContainerException
|
|
*/
|
|
public function __get($name)
|
|
{
|
|
if ($this->container->has($name)) {
|
|
return $this->container->get($name);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* @param $id
|
|
* @return int
|
|
*/
|
|
protected function getUsedSpaceByUser($id): int
|
|
{
|
|
$medias = $this->database->query('SELECT `uploads`.`storage_path` FROM `uploads` WHERE `user_id` = ?', $id);
|
|
|
|
$totalSize = 0;
|
|
|
|
$filesystem = $this->storage;
|
|
foreach ($medias as $media) {
|
|
try {
|
|
$totalSize += $filesystem->getSize($media->storage_path);
|
|
} catch (FileNotFoundException $e) {
|
|
$this->logger->error('Error calculating file size', ['exception' => $e]);
|
|
}
|
|
}
|
|
|
|
return $totalSize;
|
|
}
|
|
} |