-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8144 from nextcloud/cache-update-occ
Repair step to clear frontend related caches
- Loading branch information
Showing
10 changed files
with
235 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
<?php | ||
/** | ||
* @copyright Copyright (c) 2018 Julius Härtl <[email protected]> | ||
* | ||
* @author Julius Härtl <[email protected]> | ||
* | ||
* @license GNU AGPL version 3 or any later version | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
*/ | ||
|
||
namespace OC\Repair; | ||
|
||
use OC\Template\JSCombiner; | ||
use OC\Template\SCSSCacher; | ||
use OCP\ICacheFactory; | ||
use OCP\Migration\IOutput; | ||
use OCP\Migration\IRepairStep; | ||
|
||
class ClearFrontendCaches implements IRepairStep { | ||
|
||
/** @var ICacheFactory */ | ||
protected $cacheFactory; | ||
|
||
/** @var SCSSCacher */ | ||
protected $scssCacher; | ||
|
||
/** @var JSCombiner */ | ||
protected $jsCombiner; | ||
|
||
public function __construct(ICacheFactory $cacheFactory, | ||
SCSSCacher $SCSSCacher, | ||
JSCombiner $JSCombiner) { | ||
$this->cacheFactory = $cacheFactory; | ||
$this->scssCacher = $SCSSCacher; | ||
$this->jsCombiner = $JSCombiner; | ||
} | ||
|
||
public function getName() { | ||
return 'Clear frontend caches'; | ||
} | ||
|
||
public function run(IOutput $output) { | ||
try { | ||
$c = $this->cacheFactory->createDistributed('imagePath'); | ||
$c->clear(); | ||
$output->info('Image cache cleared'); | ||
|
||
$this->scssCacher->resetCache(); | ||
$output->info('SCSS cache cleared'); | ||
|
||
$this->jsCombiner->resetCache(); | ||
$output->info('JS cache cleared'); | ||
} catch (\Exception $e) { | ||
$output->warning('Unable to clear the frontend cache'); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
<?php | ||
/** | ||
* @copyright Copyright (c) 2018 Julius Härtl <[email protected]> | ||
* | ||
* @author Julius Härtl <[email protected]> | ||
* | ||
* @license GNU AGPL version 3 or any later version | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
*/ | ||
|
||
namespace Test\Repair; | ||
use OC\Template\JSCombiner; | ||
use OC\Template\SCSSCacher; | ||
use OCP\ICache; | ||
use OCP\ICacheFactory; | ||
use OCP\Migration\IOutput; | ||
|
||
class ClearFrontendCachesTest extends \Test\TestCase { | ||
|
||
/** @var ICacheFactory */ | ||
private $cacheFactory; | ||
|
||
/** @var SCSSCacher */ | ||
private $scssCacher; | ||
|
||
/** @var JSCombiner */ | ||
private $jsCombiner; | ||
|
||
/** @var \OC\Repair\ClearFrontendCaches */ | ||
protected $repair; | ||
|
||
/** @var IOutput */ | ||
private $outputMock; | ||
|
||
protected function setUp() { | ||
parent::setUp(); | ||
|
||
$this->outputMock = $this->createMock(IOutput::class); | ||
|
||
$this->cacheFactory = $this->createMock(ICacheFactory::class); | ||
$this->scssCacher = $this->createMock(SCSSCacher::class); | ||
$this->jsCombiner = $this->createMock(JSCombiner::class); | ||
|
||
$this->repair = new \OC\Repair\ClearFrontendCaches($this->cacheFactory, $this->scssCacher, $this->jsCombiner); | ||
} | ||
|
||
|
||
public function testRun() { | ||
$imagePathCache = $this->createMock(ICache::class); | ||
$imagePathCache->expects($this->once()) | ||
->method('clear') | ||
->with(''); | ||
$this->jsCombiner->expects($this->once()) | ||
->method('resetCache'); | ||
$this->scssCacher->expects($this->once()) | ||
->method('resetCache'); | ||
$this->cacheFactory->expects($this->at(0)) | ||
->method('createDistributed') | ||
->with('imagePath') | ||
->willReturn($imagePathCache); | ||
|
||
$this->repair->run($this->outputMock); | ||
$this->assertTrue(true); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters