1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- namespace App\Controllers;
- use App\Database\DB;
- use App\Web\Session;
- use League\Flysystem\FileNotFoundException;
- use Monolog\Logger;
- use Slim\Container;
- /**
- * @property Session|null session
- * @property mixed|null view
- * @property DB|null database
- * @property Logger|null logger
- */
- 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)->fetchAll();
- $totalSize = 0;
- $filesystem = storage();
- foreach ($medias as $media) {
- try {
- $totalSize += $filesystem->getSize($media->storage_path);
- } catch (FileNotFoundException $e) {
- $this->logger->error('Error calculating file size', [$e->getTraceAsString()]);
- }
- }
- return $totalSize;
- }
- }
|