]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - application/front/controller/admin/ServerController.php
Fix: soft fail if the mutex is not working
[github/shaarli/Shaarli.git] / application / front / controller / admin / ServerController.php
CommitLineData
0cf76ccb
A
1<?php
2
3declare(strict_types=1);
4
5namespace Shaarli\Front\Controller\Admin;
6
54afb1d6
A
7use Shaarli\Helper\ApplicationUtils;
8use Shaarli\Helper\FileUtils;
0cf76ccb
A
9use Slim\Http\Request;
10use Slim\Http\Response;
11
12/**
13 * Slim controller used to handle Server administration page, and actions.
14 */
15class ServerController extends ShaarliAdminController
16{
17 /** @var string Cache type - main - by default pagecache/ and tmp/ */
18 protected const CACHE_MAIN = 'main';
19
20 /** @var string Cache type - thumbnails - by default cache/ */
21 protected const CACHE_THUMB = 'thumbnails';
22
23 /**
24 * GET /admin/server - Display page Server administration
25 */
26 public function index(Request $request, Response $response): Response
27 {
80c8889b
A
28 $releaseUrl = ApplicationUtils::$GITHUB_URL . '/releases/';
29 if ($this->container->conf->get('updates.check_updates', true)) {
30 $latestVersion = 'v' . ApplicationUtils::getVersion(
31 ApplicationUtils::$GIT_RAW_URL . '/latest/' . ApplicationUtils::$VERSION_FILE
32 );
33 $releaseUrl .= 'tag/' . $latestVersion;
34 } else {
35 $latestVersion = t('Check disabled');
36 }
37
0cf76ccb
A
38 $currentVersion = ApplicationUtils::getVersion('./shaarli_version.php');
39 $currentVersion = $currentVersion === 'dev' ? $currentVersion : 'v' . $currentVersion;
40 $phpEol = new \DateTimeImmutable(ApplicationUtils::getPhpEol(PHP_VERSION));
41
8a6b7e96
A
42 $permissions = array_merge(
43 ApplicationUtils::checkResourcePermissions($this->container->conf),
44 ApplicationUtils::checkDatastoreMutex()
45 );
46
0cf76ccb
A
47 $this->assignView('php_version', PHP_VERSION);
48 $this->assignView('php_eol', format_date($phpEol, false));
49 $this->assignView('php_has_reached_eol', $phpEol < new \DateTimeImmutable());
50 $this->assignView('php_extensions', ApplicationUtils::getPhpExtensionsRequirement());
8a6b7e96 51 $this->assignView('permissions', $permissions);
80c8889b 52 $this->assignView('release_url', $releaseUrl);
0cf76ccb
A
53 $this->assignView('latest_version', $latestVersion);
54 $this->assignView('current_version', $currentVersion);
55 $this->assignView('thumbnails_mode', $this->container->conf->get('thumbnails.mode'));
56 $this->assignView('index_url', index_url($this->container->environment));
57 $this->assignView('client_ip', client_ip_id($this->container->environment));
58 $this->assignView('trusted_proxies', $this->container->conf->get('security.trusted_proxies', []));
59
60 $this->assignView(
61 'pagetitle',
62 t('Server administration') . ' - ' . $this->container->conf->get('general.title', 'Shaarli')
63 );
64
65 return $response->write($this->render('server'));
66 }
67
68 /**
69 * GET /admin/clear-cache?type={$type} - Action to trigger cache folder clearing (either main or thumbnails).
70 */
71 public function clearCache(Request $request, Response $response): Response
72 {
73 $exclude = ['.htaccess'];
74
75 if ($request->getQueryParam('type') === static::CACHE_THUMB) {
76 $folders = [$this->container->conf->get('resource.thumbnails_cache')];
77
78 $this->saveWarningMessage(
79 t('Thumbnails cache has been cleared.') . ' ' .
b99e00f7
A
80 '<a href="' . $this->container->basePath . '/admin/thumbnails">' .
81 t('Please synchronize them.') .
82 '</a>'
0cf76ccb
A
83 );
84 } else {
85 $folders = [
86 $this->container->conf->get('resource.page_cache'),
87 $this->container->conf->get('resource.raintpl_tmp'),
88 ];
89
90 $this->saveSuccessMessage(t('Shaarli\'s cache folder has been cleared!'));
91 }
92
93 // Make sure that we don't delete root cache folder
94 $folders = array_map('realpath', array_values(array_filter(array_map('trim', $folders))));
95 foreach ($folders as $folder) {
96 FileUtils::clearFolder($folder, false, $exclude);
97 }
98
99 return $this->redirect($response, '/admin/server');
100 }
101}