104 lines
3.7 KiB
PHP
104 lines
3.7 KiB
PHP
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
use App\Database\DB;
|
|
use App\Database\Migrator;
|
|
use App\Web\Media;
|
|
use League\Flysystem\FileNotFoundException;
|
|
use League\Flysystem\Filesystem;
|
|
use Psr\Http\Message\ResponseInterface as Response;
|
|
use Psr\Http\Message\ServerRequestInterface as Request;
|
|
|
|
class AdminController extends Controller
|
|
{
|
|
/**
|
|
* @param Request $request
|
|
* @param Response $response
|
|
*
|
|
* @return Response
|
|
* @throws \Twig\Error\LoaderError
|
|
* @throws \Twig\Error\RuntimeError
|
|
* @throws \Twig\Error\SyntaxError
|
|
*
|
|
* @throws FileNotFoundException
|
|
*/
|
|
public function system(Request $request, Response $response): Response
|
|
{
|
|
return view()->render($response, 'dashboard/system.twig', [
|
|
'usersCount' => $usersCount = $this->database->query('SELECT COUNT(*) AS `count` FROM `users`')->fetch()->count,
|
|
'mediasCount' => $mediasCount = $this->database->query('SELECT COUNT(*) AS `count` FROM `uploads`')->fetch()->count,
|
|
'orphanFilesCount' => $orphanFilesCount = $this->database->query('SELECT COUNT(*) AS `count` FROM `uploads` WHERE `user_id` IS NULL')->fetch()->count,
|
|
'totalSize' => humanFileSize($totalSize = $this->database->query('SELECT SUM(`current_disk_quota`) AS `sum` FROM `users`')->fetch()->sum ?? 0),
|
|
'post_max_size' => ini_get('post_max_size'),
|
|
'upload_max_filesize' => ini_get('upload_max_filesize'),
|
|
'installed_lang' => $this->lang->getList(),
|
|
'forced_lang' => $request->getAttribute('forced_lang'),
|
|
'php_version' => phpversion(),
|
|
'max_memory' => ini_get('memory_limit'),
|
|
'register_enabled' => $this->getSetting('register_enabled', 'off'),
|
|
'hide_by_default' => $this->getSetting('hide_by_default', 'off'),
|
|
'copy_url_behavior' => $this->getSetting('copy_url_behavior', 'off'),
|
|
'quota_enabled' => $this->getSetting('quota_enabled', 'off'),
|
|
'default_user_quota' => humanFileSize($this->getSetting('default_user_quota', stringToBytes('1G')), 0, true),
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @param Response $response
|
|
*
|
|
* @return Response
|
|
*/
|
|
public function deleteOrphanFiles(Response $response): Response
|
|
{
|
|
$orphans = $this->database->query('SELECT * FROM `uploads` WHERE `user_id` IS NULL')->fetchAll();
|
|
|
|
$filesystem = $this->storage;
|
|
$deleted = 0;
|
|
|
|
foreach ($orphans as $orphan) {
|
|
try {
|
|
$filesystem->delete($orphan->storage_path);
|
|
$deleted++;
|
|
} catch (FileNotFoundException $e) {
|
|
}
|
|
}
|
|
|
|
$this->database->query('DELETE FROM `uploads` WHERE `user_id` IS NULL');
|
|
|
|
$this->session->alert(lang('deleted_orphans', [$deleted]));
|
|
|
|
return redirect($response, route('system'));
|
|
}
|
|
|
|
/**
|
|
* @param Response $response
|
|
*
|
|
* @return Response
|
|
*/
|
|
public function getThemes(Response $response): Response
|
|
{
|
|
$apiJson = json_decode(file_get_contents('https://bootswatch.com/api/4.json'));
|
|
|
|
$out = [];
|
|
|
|
$out['Default - Bootstrap 4 default theme'] = 'https://bootswatch.com/_vendor/bootstrap/dist/css/bootstrap.min.css';
|
|
foreach ($apiJson->themes as $theme) {
|
|
$out["{$theme->name} - {$theme->description}"] = $theme->cssMin;
|
|
}
|
|
|
|
return json($response, $out);
|
|
}
|
|
|
|
/**
|
|
* @param Response $response
|
|
* @return Response
|
|
*/
|
|
public function recalculateUserQuota(Response $response): Response
|
|
{
|
|
$migrator = new Migrator($this->database, null);
|
|
$migrator->reSyncQuotas($this->storage);
|
|
$this->session->alert(lang('quota_recalculated'));
|
|
return redirect($response, route('system'));
|
|
}
|
|
}
|