Migrate cache purge function to a proper class
And update dependencies and tests. Note that SESSION['tags'] has been removed a log ago
This commit is contained in:
parent
485b168a96
commit
b0428aa9b0
9 changed files with 76 additions and 68 deletions
|
@ -12,6 +12,7 @@
|
||||||
use Shaarli\History;
|
use Shaarli\History;
|
||||||
use Shaarli\Legacy\LegacyLinkDB;
|
use Shaarli\Legacy\LegacyLinkDB;
|
||||||
use Shaarli\Legacy\LegacyUpdater;
|
use Shaarli\Legacy\LegacyUpdater;
|
||||||
|
use Shaarli\Render\PageCacheManager;
|
||||||
use Shaarli\Updater\UpdaterUtils;
|
use Shaarli\Updater\UpdaterUtils;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -39,6 +40,9 @@ class BookmarkFileService implements BookmarkServiceInterface
|
||||||
/** @var History instance */
|
/** @var History instance */
|
||||||
protected $history;
|
protected $history;
|
||||||
|
|
||||||
|
/** @var PageCacheManager instance */
|
||||||
|
protected $pageCacheManager;
|
||||||
|
|
||||||
/** @var bool true for logged in users. Default value to retrieve private bookmarks. */
|
/** @var bool true for logged in users. Default value to retrieve private bookmarks. */
|
||||||
protected $isLoggedIn;
|
protected $isLoggedIn;
|
||||||
|
|
||||||
|
@ -49,6 +53,7 @@ public function __construct(ConfigManager $conf, History $history, $isLoggedIn)
|
||||||
{
|
{
|
||||||
$this->conf = $conf;
|
$this->conf = $conf;
|
||||||
$this->history = $history;
|
$this->history = $history;
|
||||||
|
$this->pageCacheManager = new PageCacheManager($this->conf->get('resource.page_cache'));
|
||||||
$this->bookmarksIO = new BookmarkIO($this->conf);
|
$this->bookmarksIO = new BookmarkIO($this->conf);
|
||||||
$this->isLoggedIn = $isLoggedIn;
|
$this->isLoggedIn = $isLoggedIn;
|
||||||
|
|
||||||
|
@ -275,7 +280,7 @@ public function save()
|
||||||
}
|
}
|
||||||
$this->bookmarks->reorder();
|
$this->bookmarks->reorder();
|
||||||
$this->bookmarksIO->write($this->bookmarks);
|
$this->bookmarksIO->write($this->bookmarks);
|
||||||
invalidateCaches($this->conf->get('resource.page_cache'));
|
$this->pageCacheManager->invalidateCaches();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -102,7 +102,5 @@ public function write($links)
|
||||||
$this->datastore,
|
$this->datastore,
|
||||||
self::$phpPrefix.base64_encode(gzdeflate(serialize($links))).self::$phpSuffix
|
self::$phpPrefix.base64_encode(gzdeflate(serialize($links))).self::$phpSuffix
|
||||||
);
|
);
|
||||||
|
|
||||||
invalidateCaches($this->conf->get('resource.page_cache'));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,38 +0,0 @@
|
||||||
<?php
|
|
||||||
/**
|
|
||||||
* Cache utilities
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Purges all cached pages
|
|
||||||
*
|
|
||||||
* @param string $pageCacheDir page cache directory
|
|
||||||
*
|
|
||||||
* @return mixed an error string if the directory is missing
|
|
||||||
*/
|
|
||||||
function purgeCachedPages($pageCacheDir)
|
|
||||||
{
|
|
||||||
if (! is_dir($pageCacheDir)) {
|
|
||||||
$error = sprintf(t('Cannot purge %s: no directory'), $pageCacheDir);
|
|
||||||
error_log($error);
|
|
||||||
return $error;
|
|
||||||
}
|
|
||||||
|
|
||||||
array_map('unlink', glob($pageCacheDir.'/*.cache'));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Invalidates caches when the database is changed or the user logs out.
|
|
||||||
*
|
|
||||||
* @param string $pageCacheDir page cache directory
|
|
||||||
*/
|
|
||||||
function invalidateCaches($pageCacheDir)
|
|
||||||
{
|
|
||||||
// Purge cache attached to session.
|
|
||||||
if (isset($_SESSION['tags'])) {
|
|
||||||
unset($_SESSION['tags']);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Purge page cache shared by sessions.
|
|
||||||
purgeCachedPages($pageCacheDir);
|
|
||||||
}
|
|
|
@ -9,6 +9,7 @@
|
||||||
use Shaarli\Bookmark\Exception\BookmarkNotFoundException;
|
use Shaarli\Bookmark\Exception\BookmarkNotFoundException;
|
||||||
use Shaarli\Exceptions\IOException;
|
use Shaarli\Exceptions\IOException;
|
||||||
use Shaarli\FileUtils;
|
use Shaarli\FileUtils;
|
||||||
|
use Shaarli\Render\PageCacheManager;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Data storage for bookmarks.
|
* Data storage for bookmarks.
|
||||||
|
@ -352,7 +353,8 @@ public function save($pageCacheDir)
|
||||||
|
|
||||||
$this->write();
|
$this->write();
|
||||||
|
|
||||||
invalidateCaches($pageCacheDir);
|
$pageCacheManager = new PageCacheManager($pageCacheDir);
|
||||||
|
$pageCacheManager->invalidateCaches();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
45
application/render/PageCacheManager.php
Normal file
45
application/render/PageCacheManager.php
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Shaarli\Render;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Cache utilities
|
||||||
|
*/
|
||||||
|
class PageCacheManager
|
||||||
|
{
|
||||||
|
/** @var string Cache directory */
|
||||||
|
protected $pageCacheDir;
|
||||||
|
|
||||||
|
public function __construct(string $pageCacheDir)
|
||||||
|
{
|
||||||
|
$this->pageCacheDir = $pageCacheDir;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Purges all cached pages
|
||||||
|
*
|
||||||
|
* @return string|null an error string if the directory is missing
|
||||||
|
*/
|
||||||
|
public function purgeCachedPages(): ?string
|
||||||
|
{
|
||||||
|
if (!is_dir($this->pageCacheDir)) {
|
||||||
|
$error = sprintf(t('Cannot purge %s: no directory'), $this->pageCacheDir);
|
||||||
|
error_log($error);
|
||||||
|
|
||||||
|
return $error;
|
||||||
|
}
|
||||||
|
|
||||||
|
array_map('unlink', glob($this->pageCacheDir . '/*.cache'));
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Invalidates caches when the database is changed or the user logs out.
|
||||||
|
*/
|
||||||
|
public function invalidateCaches(): void
|
||||||
|
{
|
||||||
|
// Purge page cache shared by sessions.
|
||||||
|
$this->purgeCachedPages();
|
||||||
|
}
|
||||||
|
}
|
|
@ -53,7 +53,6 @@
|
||||||
// Shaarli library
|
// Shaarli library
|
||||||
require_once 'application/bookmark/LinkUtils.php';
|
require_once 'application/bookmark/LinkUtils.php';
|
||||||
require_once 'application/config/ConfigPlugin.php';
|
require_once 'application/config/ConfigPlugin.php';
|
||||||
require_once 'application/feed/Cache.php';
|
|
||||||
require_once 'application/http/HttpUtils.php';
|
require_once 'application/http/HttpUtils.php';
|
||||||
require_once 'application/http/UrlUtils.php';
|
require_once 'application/http/UrlUtils.php';
|
||||||
require_once 'application/updater/UpdaterUtils.php';
|
require_once 'application/updater/UpdaterUtils.php';
|
||||||
|
@ -78,6 +77,7 @@
|
||||||
use Shaarli\Netscape\NetscapeBookmarkUtils;
|
use Shaarli\Netscape\NetscapeBookmarkUtils;
|
||||||
use Shaarli\Plugin\PluginManager;
|
use Shaarli\Plugin\PluginManager;
|
||||||
use Shaarli\Render\PageBuilder;
|
use Shaarli\Render\PageBuilder;
|
||||||
|
use Shaarli\Render\PageCacheManager;
|
||||||
use Shaarli\Render\ThemeUtils;
|
use Shaarli\Render\ThemeUtils;
|
||||||
use Shaarli\Router;
|
use Shaarli\Router;
|
||||||
use Shaarli\Security\LoginManager;
|
use Shaarli\Security\LoginManager;
|
||||||
|
@ -530,6 +530,7 @@ function showLinkList($PAGE, $linkDb, $conf, $pluginManager, $loginManager)
|
||||||
*/
|
*/
|
||||||
function renderPage($conf, $pluginManager, $bookmarkService, $history, $sessionManager, $loginManager)
|
function renderPage($conf, $pluginManager, $bookmarkService, $history, $sessionManager, $loginManager)
|
||||||
{
|
{
|
||||||
|
$pageCacheManager = new PageCacheManager($conf->get('resource.page_cache'));
|
||||||
$updater = new Updater(
|
$updater = new Updater(
|
||||||
UpdaterUtils::read_updates_file($conf->get('resource.updates')),
|
UpdaterUtils::read_updates_file($conf->get('resource.updates')),
|
||||||
$bookmarkService,
|
$bookmarkService,
|
||||||
|
@ -543,6 +544,8 @@ function renderPage($conf, $pluginManager, $bookmarkService, $history, $sessionM
|
||||||
$conf->get('resource.updates'),
|
$conf->get('resource.updates'),
|
||||||
$updater->getDoneUpdates()
|
$updater->getDoneUpdates()
|
||||||
);
|
);
|
||||||
|
|
||||||
|
$pageCacheManager->invalidateCaches();
|
||||||
}
|
}
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
die($e->getMessage());
|
die($e->getMessage());
|
||||||
|
@ -1029,7 +1032,7 @@ function renderPage($conf, $pluginManager, $bookmarkService, $history, $sessionM
|
||||||
try {
|
try {
|
||||||
$conf->write($loginManager->isLoggedIn());
|
$conf->write($loginManager->isLoggedIn());
|
||||||
$history->updateSettings();
|
$history->updateSettings();
|
||||||
invalidateCaches($conf->get('resource.page_cache'));
|
$pageCacheManager->invalidateCaches();
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
error_log(
|
error_log(
|
||||||
'ERROR while writing config file after configuration update.' . PHP_EOL .
|
'ERROR while writing config file after configuration update.' . PHP_EOL .
|
||||||
|
@ -1914,6 +1917,7 @@ function install($conf, $sessionManager, $loginManager)
|
||||||
|
|
||||||
$app->group('', function () {
|
$app->group('', function () {
|
||||||
$this->get('/login', '\Shaarli\Front\Controller\LoginController:index')->setName('login');
|
$this->get('/login', '\Shaarli\Front\Controller\LoginController:index')->setName('login');
|
||||||
|
$this->get('/logout', '\Shaarli\Front\Controller\LogoutController:index')->setName('logout');
|
||||||
$this->get('/picture-wall', '\Shaarli\Front\Controller\PictureWallController:index')->setName('picwall');
|
$this->get('/picture-wall', '\Shaarli\Front\Controller\PictureWallController:index')->setName('picwall');
|
||||||
})->add('\Shaarli\Front\ShaarliMiddleware');
|
})->add('\Shaarli\Front\ShaarliMiddleware');
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,6 @@ function is_iterable($var)
|
||||||
require_once 'application/Utils.php';
|
require_once 'application/Utils.php';
|
||||||
require_once 'application/http/UrlUtils.php';
|
require_once 'application/http/UrlUtils.php';
|
||||||
require_once 'application/http/HttpUtils.php';
|
require_once 'application/http/HttpUtils.php';
|
||||||
require_once 'application/feed/Cache.php';
|
|
||||||
require_once 'tests/utils/ReferenceLinkDB.php';
|
require_once 'tests/utils/ReferenceLinkDB.php';
|
||||||
require_once 'tests/utils/ReferenceHistory.php';
|
require_once 'tests/utils/ReferenceHistory.php';
|
||||||
require_once 'tests/utils/FakeBookmarkService.php';
|
require_once 'tests/utils/FakeBookmarkService.php';
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
use Shaarli;
|
use Shaarli;
|
||||||
use Shaarli\Bookmark\Bookmark;
|
use Shaarli\Bookmark\Bookmark;
|
||||||
|
|
||||||
require_once 'application/feed/Cache.php';
|
|
||||||
require_once 'application/Utils.php';
|
require_once 'application/Utils.php';
|
||||||
require_once 'tests/utils/ReferenceLinkDB.php';
|
require_once 'tests/utils/ReferenceLinkDB.php';
|
||||||
|
|
||||||
|
|
|
@ -2,17 +2,18 @@
|
||||||
/**
|
/**
|
||||||
* Cache tests
|
* Cache tests
|
||||||
*/
|
*/
|
||||||
namespace Shaarli\Feed;
|
namespace Shaarli\Render;
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
|
use Shaarli\Security\SessionManager;
|
||||||
|
|
||||||
// required to access $_SESSION array
|
// required to access $_SESSION array
|
||||||
session_start();
|
session_start();
|
||||||
|
|
||||||
require_once 'application/feed/Cache.php';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Unitary tests for cached pages
|
* Unitary tests for cached pages
|
||||||
*/
|
*/
|
||||||
class CacheTest extends \PHPUnit\Framework\TestCase
|
class PageCacheManagerTest extends TestCase
|
||||||
{
|
{
|
||||||
// test cache directory
|
// test cache directory
|
||||||
protected static $testCacheDir = 'sandbox/dummycache';
|
protected static $testCacheDir = 'sandbox/dummycache';
|
||||||
|
@ -20,12 +21,19 @@ class CacheTest extends \PHPUnit\Framework\TestCase
|
||||||
// dummy cached file names / content
|
// dummy cached file names / content
|
||||||
protected static $pages = array('a', 'toto', 'd7b59c');
|
protected static $pages = array('a', 'toto', 'd7b59c');
|
||||||
|
|
||||||
|
/** @var PageCacheManager */
|
||||||
|
protected $cacheManager;
|
||||||
|
|
||||||
|
/** @var SessionManager */
|
||||||
|
protected $sessionManager;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Populate the cache with dummy files
|
* Populate the cache with dummy files
|
||||||
*/
|
*/
|
||||||
public function setUp()
|
public function setUp()
|
||||||
{
|
{
|
||||||
|
$this->cacheManager = new PageCacheManager(static::$testCacheDir);
|
||||||
|
|
||||||
if (!is_dir(self::$testCacheDir)) {
|
if (!is_dir(self::$testCacheDir)) {
|
||||||
mkdir(self::$testCacheDir);
|
mkdir(self::$testCacheDir);
|
||||||
} else {
|
} else {
|
||||||
|
@ -52,7 +60,7 @@ public function tearDown()
|
||||||
*/
|
*/
|
||||||
public function testPurgeCachedPages()
|
public function testPurgeCachedPages()
|
||||||
{
|
{
|
||||||
purgeCachedPages(self::$testCacheDir);
|
$this->cacheManager->purgeCachedPages();
|
||||||
foreach (self::$pages as $page) {
|
foreach (self::$pages as $page) {
|
||||||
$this->assertFileNotExists(self::$testCacheDir . '/' . $page . '.cache');
|
$this->assertFileNotExists(self::$testCacheDir . '/' . $page . '.cache');
|
||||||
}
|
}
|
||||||
|
@ -65,28 +73,14 @@ public function testPurgeCachedPages()
|
||||||
*/
|
*/
|
||||||
public function testPurgeCachedPagesMissingDir()
|
public function testPurgeCachedPagesMissingDir()
|
||||||
{
|
{
|
||||||
|
$this->cacheManager = new PageCacheManager(self::$testCacheDir . '_missing');
|
||||||
|
|
||||||
$oldlog = ini_get('error_log');
|
$oldlog = ini_get('error_log');
|
||||||
ini_set('error_log', '/dev/null');
|
ini_set('error_log', '/dev/null');
|
||||||
$this->assertEquals(
|
$this->assertEquals(
|
||||||
'Cannot purge sandbox/dummycache_missing: no directory',
|
'Cannot purge sandbox/dummycache_missing: no directory',
|
||||||
purgeCachedPages(self::$testCacheDir . '_missing')
|
$this->cacheManager->purgeCachedPages()
|
||||||
);
|
);
|
||||||
ini_set('error_log', $oldlog);
|
ini_set('error_log', $oldlog);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Purge cached pages and session cache
|
|
||||||
*/
|
|
||||||
public function testInvalidateCaches()
|
|
||||||
{
|
|
||||||
$this->assertArrayNotHasKey('tags', $_SESSION);
|
|
||||||
$_SESSION['tags'] = array('goodbye', 'cruel', 'world');
|
|
||||||
|
|
||||||
invalidateCaches(self::$testCacheDir);
|
|
||||||
foreach (self::$pages as $page) {
|
|
||||||
$this->assertFileNotExists(self::$testCacheDir . '/' . $page . '.cache');
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->assertArrayNotHasKey('tags', $_SESSION);
|
|
||||||
}
|
|
||||||
}
|
}
|
Loading…
Reference in a new issue