Skip to content

Commit ea7ad7e

Browse files
Allow disabling structure cache
1 parent 55f085a commit ea7ad7e

File tree

7 files changed

+29
-2
lines changed

7 files changed

+29
-2
lines changed

config/data.php

+1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@
8080
* store should be used.
8181
*/
8282
'structure_caching' => [
83+
'enabled' => true,
8384
'directories' => [app_path('Data')],
8485
'cache' => [
8586
'store' => env('CACHE_DRIVER', 'file'),

docs/installation-setup.md

+1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ return [
9494
* store should be used.
9595
*/
9696
'structure_caching' => [
97+
'enabled' => true,
9798
'directories' => [app_path('Data')],
9899
'cache' => [
99100
'store' => env('CACHE_DRIVER', 'file'),

src/Commands/DataStructuresCacheCommand.php

+6
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ public function handle(
1919
DataStructureCache $dataStructureCache,
2020
DataClassFactory $dataClassFactory,
2121
): void {
22+
if(config('data.structure_caching.enabled') === false){
23+
$this->error('Data structure caching is not enabled');
24+
25+
return;
26+
}
27+
2228
$this->components->info('Caching data structures...');
2329

2430
$dataClasses = DataClassFinder::fromConfig(config('data.structure_caching'))->classes();

src/LaravelDataServiceProvider.php

+7-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,13 @@ public function packageRegistered(): void
3131

3232
$this->app->singleton(
3333
DataConfig::class,
34-
fn () => $this->app->make(DataStructureCache::class)->getConfig() ?? DataConfig::createFromConfig(config('data'))
34+
function () {
35+
if (! config('data.structure_caching.enabled')) {
36+
return DataConfig::createFromConfig(config('data'));
37+
}
38+
39+
return $this->app->make(DataStructureCache::class)->getConfig() ?? DataConfig::createFromConfig(config('data'));
40+
}
3541
);
3642

3743
$this->app->beforeResolving(BaseData::class, function ($class, $parameters, $app) {

src/Support/Caching/DataStructureCache.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class DataStructureCache
1515
public function __construct(
1616
protected array $cacheConfig,
1717
) {
18-
$this->store = cache()->store($this->cacheConfig['store'])->getStore();
18+
$this->store = cache()->store($this->cacheConfig['store'])?->getStore();
1919
$this->prefix = $this->cacheConfig['prefix'] ? "{$this->cacheConfig['prefix']}." : '';
2020
}
2121

tests/DataTest.php

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
use Illuminate\Contracts\Support\Responsable;
44
use Illuminate\Validation\ValidationException;
5+
use Spatie\LaravelData\Attributes\DataCollectionOf;
56
use Spatie\LaravelData\Concerns\AppendableData;
67
use Spatie\LaravelData\Concerns\BaseData;
78
use Spatie\LaravelData\Concerns\ContextableData;
@@ -20,6 +21,7 @@
2021
use Spatie\LaravelData\Contracts\ValidateableData as ValidateableDataContract;
2122
use Spatie\LaravelData\Contracts\WrappableData as WrappableDataContract;
2223
use Spatie\LaravelData\Data;
24+
use Spatie\LaravelData\DataCollection;
2325
use Spatie\LaravelData\Dto;
2426
use Spatie\LaravelData\Resource;
2527
use Spatie\LaravelData\Tests\Fakes\SimpleData;

tests/Support/Caching/CachedDataConfigTest.php

+11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?php
22

33
use Illuminate\Support\Facades\App;
4+
use Illuminate\Support\Facades\Cache;
45
use Mockery\MockInterface;
56
use Spatie\LaravelData\Support\Caching\CachedDataConfig;
67
use Spatie\LaravelData\Support\Caching\DataStructureCache;
@@ -66,3 +67,13 @@ function (MockInterface $spy) use ($dataClass) {
6667
->toBeInstanceOf(DataClass::class)
6768
->name->toBe(SimpleData::class);
6869
});
70+
71+
it('can disable caching', function (){
72+
config()->set('data.structure_caching.enabled', false);
73+
74+
Cache::expects('get')->once();
75+
76+
$data = SimpleData::from('Hello world');
77+
78+
cache()->get('something-just-to-test-the-mock');
79+
});

0 commit comments

Comments
 (0)