1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 17:44:04 +00:00

Use $addTags approach again

This commit is contained in:
lukinovec 2023-04-20 15:49:17 +02:00
parent 58e008a679
commit 8f5a4e4eb6
5 changed files with 56 additions and 45 deletions

View file

@ -10,6 +10,8 @@ use Illuminate\Cache\CacheManager as BaseCacheManager;
class CacheManager extends BaseCacheManager
{
public static bool $addTags = false;
/**
* Add tags and forward the call to the inner cache store.
*
@ -18,21 +20,25 @@ class CacheManager extends BaseCacheManager
*/
public function __call($method, $parameters)
{
$tags = [config('tenancy.cache.tag_base') . tenant()?->getTenantKey()];
if (tenancy()->initialized && static::$addTags) {
$tags = [config('tenancy.cache.tag_base') . tenant()?->getTenantKey()];
if ($method === 'tags') {
$count = count($parameters);
if ($method === 'tags') {
$count = count($parameters);
if ($count !== 1) {
throw new \Exception("Method tags() takes exactly 1 argument. $count passed.");
if ($count !== 1) {
throw new \Exception("Method tags() takes exactly 1 argument. $count passed.");
}
$names = $parameters[0];
$names = (array) $names; // cache()->tags('foo') https://laravel.com/docs/9.x/cache#removing-tagged-cache-items
return $this->store()->tags(array_merge($tags, $names));
}
$names = $parameters[0];
$names = (array) $names; // cache()->tags('foo') https://laravel.com/docs/9.x/cache#removing-tagged-cache-items
return $this->store()->tags(array_merge($tags, $names));
return $this->store()->tags($tags)->$method(...$parameters);
}
return $this->store()->tags($tags)->$method(...$parameters);
return parent::__call($method, $parameters);
}
}