Move KeyValuePairStorage to strategies

This commit is contained in:
Philipp Holzer 2023-07-23 03:15:59 +02:00
parent f2c02a79b9
commit 58f56c7d7d
Signed by: nupplaPhil
GPG key ID: 24A7501396EB5432
4 changed files with 44 additions and 3 deletions

View file

@ -0,0 +1,34 @@
<?php
/**
* @copyright Copyright (C) 2010-2023, the Friendica project
*
* @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 <https://www.gnu.org/licenses/>.
*
*/
namespace Friendica\Core\KeyValueStorage\Factory;
use Friendica\Core\Hooks\Capabilities\ICanCreateInstances;
use Friendica\Core\KeyValueStorage\Capabilities\IManageKeyValuePairs;
class KeyValueStorage
{
public function create(ICanCreateInstances $instanceCreator): IManageKeyValuePairs
{
/** @var IManageKeyValuePairs */
return $instanceCreator->create(IManageKeyValuePairs::class, '');
}
}

View file

@ -36,7 +36,7 @@ abstract class AbstractLock implements ICanLock
/** /**
* Check if we've locally acquired a lock * Check if we've locally acquired a lock
* *
* @param string key The Name of the lock * @param string $key The Name of the lock
* *
* @return bool Returns true if the lock is set * @return bool Returns true if the lock is set
*/ */

View file

@ -291,7 +291,10 @@ return [
], ],
], ],
\Friendica\Core\KeyValueStorage\Capabilities\IManageKeyValuePairs::class => [ \Friendica\Core\KeyValueStorage\Capabilities\IManageKeyValuePairs::class => [
'instanceOf' => \Friendica\Core\KeyValueStorage\Type\DBKeyValueStorage::class, 'instanceOf' => \Friendica\Core\KeyValueStorage\Factory\KeyValueStorage::class,
'call' => [
['create', [], Dice::CHAIN_CALL],
],
], ],
Network\HTTPClient\Capability\ICanSendHttpRequests::class => [ Network\HTTPClient\Capability\ICanSendHttpRequests::class => [
'instanceOf' => Network\HTTPClient\Factory\HttpClient::class, 'instanceOf' => Network\HTTPClient\Factory\HttpClient::class,

View file

@ -21,6 +21,7 @@
use Friendica\Core\Cache; use Friendica\Core\Cache;
use Friendica\Core\Logger\Type; use Friendica\Core\Logger\Type;
use Friendica\Core\KeyValueStorage;
use Psr\Log; use Psr\Log;
return [ return [
@ -35,5 +36,8 @@ return [
Cache\Type\MemcacheCache::class => ['memcache'], Cache\Type\MemcacheCache::class => ['memcache'],
Cache\Type\MemcachedCache::class => ['memcached'], Cache\Type\MemcachedCache::class => ['memcached'],
Cache\Type\RedisCache::class => ['redis'], Cache\Type\RedisCache::class => ['redis'],
] ],
KeyValueStorage\Capabilities\IManageKeyValuePairs::class => [
KeyValueStorage\Type\DBKeyValueStorage::class => ['database', ''],
],
]; ];