123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694 |
- <?php
- declare(strict_types=1);
- /**
- * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- namespace NCU\Config;
- use Generator;
- use NCU\Config\Exceptions\IncorrectTypeException;
- use NCU\Config\Exceptions\UnknownKeyException;
- /**
- * This class provides an easy way for apps to store user config in the
- * database.
- * Supports **lazy loading**
- *
- * ### What is lazy loading ?
- * In order to avoid loading useless user config into memory for each request,
- * only non-lazy values are now loaded.
- *
- * Once a value that is lazy is requested, all lazy values will be loaded.
- *
- * Similarly, some methods from this class are marked with a warning about ignoring
- * lazy loading. Use them wisely and only on parts of the code that are called
- * during specific requests or actions to avoid loading the lazy values all the time.
- *
- * @experimental 31.0.0
- * @since 31.0.0
- */
- interface IUserConfig {
- /** @since 31.0.0 */
- public const FLAG_SENSITIVE = 1; // value is sensitive
- /** @since 31.0.0 */
- public const FLAG_INDEXED = 2; // value should be indexed
- /**
- * Get list of all userIds with config stored in database.
- * If $appId is specified, will only limit the search to this value
- *
- * **WARNING:** ignore any cache and get data directly from database.
- *
- * @param string $appId optional id of app
- *
- * @return list<string> list of userIds
- * @since 31.0.0
- */
- public function getUserIds(string $appId = ''): array;
- /**
- * Get list of all apps that have at least one config
- * value related to $userId stored in database
- *
- * **WARNING:** ignore lazy filtering, all user config are loaded from database
- *
- * @param string $userId id of the user
- *
- * @return list<string> list of app ids
- * @since 31.0.0
- */
- public function getApps(string $userId): array;
- /**
- * Returns all keys stored in database, related to user+app.
- * Please note that the values are not returned.
- *
- * **WARNING:** ignore lazy filtering, all user config are loaded from database
- *
- * @param string $userId id of the user
- * @param string $app id of the app
- *
- * @return list<string> list of stored config keys
- * @since 31.0.0
- */
- public function getKeys(string $userId, string $app): array;
- /**
- * Check if a key exists in the list of stored config values.
- *
- * @param string $userId id of the user
- * @param string $app id of the app
- * @param string $key config key
- * @param bool $lazy search within lazy loaded config
- *
- * @return bool TRUE if key exists
- * @since 31.0.0
- */
- public function hasKey(string $userId, string $app, string $key, ?bool $lazy = false): bool;
- /**
- * best way to see if a value is set as sensitive (not displayed in report)
- *
- * @param string $userId id of the user
- * @param string $app id of the app
- * @param string $key config key
- * @param bool|null $lazy search within lazy loaded config
- *
- * @return bool TRUE if value is sensitive
- * @throws UnknownKeyException if config key is not known
- * @since 31.0.0
- */
- public function isSensitive(string $userId, string $app, string $key, ?bool $lazy = false): bool;
- /**
- * best way to see if a value is set as indexed (so it can be search)
- *
- * @see self::searchUsersByValueString()
- * @see self::searchUsersByValueInt()
- * @see self::searchUsersByValueBool()
- * @see self::searchUsersByValues()
- *
- * @param string $userId id of the user
- * @param string $app id of the app
- * @param string $key config key
- * @param bool|null $lazy search within lazy loaded config
- *
- * @return bool TRUE if value is sensitive
- * @throws UnknownKeyException if config key is not known
- * @since 31.0.0
- */
- public function isIndexed(string $userId, string $app, string $key, ?bool $lazy = false): bool;
- /**
- * Returns if the config key stored in database is lazy loaded
- *
- * **WARNING:** ignore lazy filtering, all config values are loaded from database
- *
- * @param string $userId id of the user
- * @param string $app id of the app
- * @param string $key config key
- *
- * @return bool TRUE if config is lazy loaded
- * @throws UnknownKeyException if config key is not known
- * @see IUserConfig for details about lazy loading
- * @since 31.0.0
- */
- public function isLazy(string $userId, string $app, string $key): bool;
- /**
- * List all config values from an app with config key starting with $key.
- * Returns an array with config key as key, stored value as value.
- *
- * **WARNING:** ignore lazy filtering, all config values are loaded from database
- *
- * @param string $userId id of the user
- * @param string $app id of the app
- * @param string $prefix config keys prefix to search, can be empty.
- * @param bool $filtered filter sensitive config values
- *
- * @return array<string, string|int|float|bool|array> [key => value]
- * @since 31.0.0
- */
- public function getValues(string $userId, string $app, string $prefix = '', bool $filtered = false): array;
- /**
- * List all config values of a user.
- * Returns an array with config key as key, stored value as value.
- *
- * **WARNING:** ignore lazy filtering, all config values are loaded from database
- *
- * @param string $userId id of the user
- * @param bool $filtered filter sensitive config values
- *
- * @return array<string, string|int|float|bool|array> [key => value]
- * @since 31.0.0
- */
- public function getAllValues(string $userId, bool $filtered = false): array;
- /**
- * List all apps storing a specific config key and its stored value.
- * Returns an array with appId as key, stored value as value.
- *
- * @param string $userId id of the user
- * @param string $key config key
- * @param bool $lazy search within lazy loaded config
- * @param ValueType|null $typedAs enforce type for the returned values
- *
- * @return array<string, string|int|float|bool|array> [appId => value]
- * @since 31.0.0
- */
- public function getValuesByApps(string $userId, string $key, bool $lazy = false, ?ValueType $typedAs = null): array;
- /**
- * List all users storing a specific config key and its stored value.
- * Returns an array with userId as key, stored value as value.
- *
- * **WARNING:** no caching, generate a fresh request
- *
- * @param string $app id of the app
- * @param string $key config key
- * @param ValueType|null $typedAs enforce type for the returned values
- * @param array|null $userIds limit the search to a list of user ids
- *
- * @return array<string, string|int|float|bool|array> [userId => value]
- * @since 31.0.0
- */
- public function getValuesByUsers(string $app, string $key, ?ValueType $typedAs = null, ?array $userIds = null): array;
- /**
- * List all users storing a specific config key/value pair.
- * Returns a list of user ids.
- *
- * **WARNING:** no caching, generate a fresh request
- *
- * @param string $app id of the app
- * @param string $key config key
- * @param string $value config value
- * @param bool $caseInsensitive non-case-sensitive search, only works if $value is a string
- *
- * @return Generator<string>
- * @since 31.0.0
- */
- public function searchUsersByValueString(string $app, string $key, string $value, bool $caseInsensitive = false): Generator;
- /**
- * List all users storing a specific config key/value pair.
- * Returns a list of user ids.
- *
- * **WARNING:** no caching, generate a fresh request
- *
- * @param string $app id of the app
- * @param string $key config key
- * @param int $value config value
- *
- * @return Generator<string>
- * @since 31.0.0
- */
- public function searchUsersByValueInt(string $app, string $key, int $value): Generator;
- /**
- * List all users storing a specific config key/value pair.
- * Returns a list of user ids.
- *
- * **WARNING:** no caching, generate a fresh request
- *
- * @param string $app id of the app
- * @param string $key config key
- * @param array $values list of possible config values
- *
- * @return Generator<string>
- * @since 31.0.0
- */
- public function searchUsersByValues(string $app, string $key, array $values): Generator;
- /**
- * List all users storing a specific config key/value pair.
- * Returns a list of user ids.
- *
- * **WARNING:** no caching, generate a fresh request
- *
- * @param string $app id of the app
- * @param string $key config key
- * @param bool $value config value
- *
- * @return Generator<string>
- * @since 31.0.0
- */
- public function searchUsersByValueBool(string $app, string $key, bool $value): Generator;
- /**
- * Get user config assigned to a config key.
- * If config key is not found in database, default value is returned.
- * If config key is set as lazy loaded, the $lazy argument needs to be set to TRUE.
- *
- * @param string $userId id of the user
- * @param string $app id of the app
- * @param string $key config key
- * @param string $default default value
- * @param bool $lazy search within lazy loaded config
- *
- * @return string stored config value or $default if not set in database
- * @since 31.0.0
- * @see IUserConfig for explanation about lazy loading
- * @see getValueInt()
- * @see getValueFloat()
- * @see getValueBool()
- * @see getValueArray()
- */
- public function getValueString(string $userId, string $app, string $key, string $default = '', bool $lazy = false): string;
- /**
- * Get config value assigned to a config key.
- * If config key is not found in database, default value is returned.
- * If config key is set as lazy loaded, the $lazy argument needs to be set to TRUE.
- *
- * @param string $userId id of the user
- * @param string $app id of the app
- * @param string $key config key
- * @param int $default default value
- * @param bool $lazy search within lazy loaded config
- *
- * @return int stored config value or $default if not set in database
- * @since 31.0.0
- * @see IUserConfig for explanation about lazy loading
- * @see getValueString()
- * @see getValueFloat()
- * @see getValueBool()
- * @see getValueArray()
- */
- public function getValueInt(string $userId, string $app, string $key, int $default = 0, bool $lazy = false): int;
- /**
- * Get config value assigned to a config key.
- * If config key is not found in database, default value is returned.
- * If config key is set as lazy loaded, the $lazy argument needs to be set to TRUE.
- *
- * @param string $userId id of the user
- * @param string $app id of the app
- * @param string $key config key
- * @param float $default default value
- * @param bool $lazy search within lazy loaded config
- *
- * @return float stored config value or $default if not set in database
- * @since 31.0.0
- * @see IUserConfig for explanation about lazy loading
- * @see getValueString()
- * @see getValueInt()
- * @see getValueBool()
- * @see getValueArray()
- */
- public function getValueFloat(string $userId, string $app, string $key, float $default = 0, bool $lazy = false): float;
- /**
- * Get config value assigned to a config key.
- * If config key is not found in database, default value is returned.
- * If config key is set as lazy loaded, the $lazy argument needs to be set to TRUE.
- *
- * @param string $userId id of the user
- * @param string $app id of the app
- * @param string $key config key
- * @param bool $default default value
- * @param bool $lazy search within lazy loaded config
- *
- * @return bool stored config value or $default if not set in database
- * @since 31.0.0
- * @see IUserPrefences for explanation about lazy loading
- * @see getValueString()
- * @see getValueInt()
- * @see getValueFloat()
- * @see getValueArray()
- */
- public function getValueBool(string $userId, string $app, string $key, bool $default = false, bool $lazy = false): bool;
- /**
- * Get config value assigned to a config key.
- * If config key is not found in database, default value is returned.
- * If config key is set as lazy loaded, the $lazy argument needs to be set to TRUE.
- *
- * @param string $userId id of the user
- * @param string $app id of the app
- * @param string $key config key
- * @param array $default default value`
- * @param bool $lazy search within lazy loaded config
- *
- * @return array stored config value or $default if not set in database
- * @since 31.0.0
- * @see IUserConfig for explanation about lazy loading
- * @see getValueString()
- * @see getValueInt()
- * @see getValueFloat()
- * @see getValueBool()
- */
- public function getValueArray(string $userId, string $app, string $key, array $default = [], bool $lazy = false): array;
- /**
- * returns the type of config value
- *
- * **WARNING:** ignore lazy filtering, all config values are loaded from database
- * unless lazy is set to false
- *
- * @param string $userId id of the user
- * @param string $app id of the app
- * @param string $key config key
- * @param bool|null $lazy
- *
- * @return ValueType type of the value
- * @throws UnknownKeyException if config key is not known
- * @throws IncorrectTypeException if config value type is not known
- * @since 31.0.0
- */
- public function getValueType(string $userId, string $app, string $key, ?bool $lazy = null): ValueType;
- /**
- * returns a bitflag related to config value
- *
- * **WARNING:** ignore lazy filtering, all config values are loaded from database
- * unless lazy is set to false
- *
- * @param string $userId id of the user
- * @param string $app id of the app
- * @param string $key config key
- * @param bool $lazy lazy loading
- *
- * @return int a bitflag in relation to the config value
- * @throws UnknownKeyException if config key is not known
- * @throws IncorrectTypeException if config value type is not known
- * @since 31.0.0
- */
- public function getValueFlags(string $userId, string $app, string $key, bool $lazy = false): int;
- /**
- * Store a config key and its value in database
- *
- * If config key is already known with the exact same config value, the database is not updated.
- * If config key is not supposed to be read during the boot of the cloud, it is advised to set it as lazy loaded.
- *
- * If config value was previously stored as sensitive or lazy loaded, status cannot be altered without using {@see deleteKey()} first
- *
- * @param string $userId id of the user
- * @param string $app id of the app
- * @param string $key config key
- * @param string $value config value
- * @param bool $sensitive if TRUE value will be hidden when listing config values.
- * @param bool $lazy set config as lazy loaded
- *
- * @return bool TRUE if value was different, therefor updated in database
- * @since 31.0.0
- * @see IUserConfig for explanation about lazy loading
- * @see setValueInt()
- * @see setValueFloat()
- * @see setValueBool()
- * @see setValueArray()
- */
- public function setValueString(string $userId, string $app, string $key, string $value, bool $lazy = false, int $flags = 0): bool;
- /**
- * Store a config key and its value in database
- *
- * When handling huge value around and/or above 2,147,483,647, a debug log will be generated
- * on 64bits system, as php int type reach its limit (and throw an exception) on 32bits when using huge numbers.
- *
- * When using huge numbers, it is advised to use {@see \OCP\Util::numericToNumber()} and {@see setValueString()}
- *
- * If config key is already known with the exact same config value, the database is not updated.
- * If config key is not supposed to be read during the boot of the cloud, it is advised to set it as lazy loaded.
- *
- * If config value was previously stored as sensitive or lazy loaded, status cannot be altered without using {@see deleteKey()} first
- *
- * @param string $userId id of the user
- * @param string $app id of the app
- * @param string $key config key
- * @param int $value config value
- * @param bool $sensitive if TRUE value will be hidden when listing config values.
- * @param bool $lazy set config as lazy loaded
- *
- * @return bool TRUE if value was different, therefor updated in database
- * @since 31.0.0
- * @see IUserConfig for explanation about lazy loading
- * @see setValueString()
- * @see setValueFloat()
- * @see setValueBool()
- * @see setValueArray()
- */
- public function setValueInt(string $userId, string $app, string $key, int $value, bool $lazy = false, int $flags = 0): bool;
- /**
- * Store a config key and its value in database.
- *
- * If config key is already known with the exact same config value, the database is not updated.
- * If config key is not supposed to be read during the boot of the cloud, it is advised to set it as lazy loaded.
- *
- * If config value was previously stored as sensitive or lazy loaded, status cannot be altered without using {@see deleteKey()} first
- *
- * @param string $userId id of the user
- * @param string $app id of the app
- * @param string $key config key
- * @param float $value config value
- * @param bool $sensitive if TRUE value will be hidden when listing config values.
- * @param bool $lazy set config as lazy loaded
- *
- * @return bool TRUE if value was different, therefor updated in database
- * @since 31.0.0
- * @see IUserConfig for explanation about lazy loading
- * @see setValueString()
- * @see setValueInt()
- * @see setValueBool()
- * @see setValueArray()
- */
- public function setValueFloat(string $userId, string $app, string $key, float $value, bool $lazy = false, int $flags = 0): bool;
- /**
- * Store a config key and its value in database
- *
- * If config key is already known with the exact same config value, the database is not updated.
- * If config key is not supposed to be read during the boot of the cloud, it is advised to set it as lazy loaded.
- *
- * If config value was previously stored as lazy loaded, status cannot be altered without using {@see deleteKey()} first
- *
- * @param string $userId id of the user
- * @param string $app id of the app
- * @param string $key config key
- * @param bool $value config value
- * @param bool $lazy set config as lazy loaded
- *
- * @return bool TRUE if value was different, therefor updated in database
- * @since 31.0.0
- * @see IUserConfig for explanation about lazy loading
- * @see setValueString()
- * @see setValueInt()
- * @see setValueFloat()
- * @see setValueArray()
- */
- public function setValueBool(string $userId, string $app, string $key, bool $value, bool $lazy = false): bool;
- /**
- * Store a config key and its value in database
- *
- * If config key is already known with the exact same config value, the database is not updated.
- * If config key is not supposed to be read during the boot of the cloud, it is advised to set it as lazy loaded.
- *
- * If config value was previously stored as sensitive or lazy loaded, status cannot be altered without using {@see deleteKey()} first
- *
- * @param string $userId id of the user
- * @param string $app id of the app
- * @param string $key config key
- * @param array $value config value
- * @param bool $sensitive if TRUE value will be hidden when listing config values.
- * @param bool $lazy set config as lazy loaded
- *
- * @return bool TRUE if value was different, therefor updated in database
- * @since 31.0.0
- * @see IUserConfig for explanation about lazy loading
- * @see setValueString()
- * @see setValueInt()
- * @see setValueFloat()
- * @see setValueBool()
- */
- public function setValueArray(string $userId, string $app, string $key, array $value, bool $lazy = false, int $flags = 0): bool;
- /**
- * switch sensitive status of a config value
- *
- * **WARNING:** ignore lazy filtering, all config values are loaded from database
- *
- * @param string $userId id of the user
- * @param string $app id of the app
- * @param string $key config key
- * @param bool $sensitive TRUE to set as sensitive, FALSE to unset
- *
- * @return bool TRUE if database update were necessary
- * @since 31.0.0
- */
- public function updateSensitive(string $userId, string $app, string $key, bool $sensitive): bool;
- /**
- * switch sensitive loading status of a config key for all users
- *
- * **Warning:** heavy on resources, MUST only be used on occ command or migrations
- *
- * @param string $app id of the app
- * @param string $key config key
- * @param bool $sensitive TRUE to set as sensitive, FALSE to unset
- *
- * @since 31.0.0
- */
- public function updateGlobalSensitive(string $app, string $key, bool $sensitive): void;
- /**
- * switch indexed status of a config value
- *
- * **WARNING:** ignore lazy filtering, all config values are loaded from database
- *
- * @param string $userId id of the user
- * @param string $app id of the app
- * @param string $key config key
- * @param bool $indexed TRUE to set as indexed, FALSE to unset
- *
- * @return bool TRUE if database update were necessary
- * @since 31.0.0
- */
- public function updateIndexed(string $userId, string $app, string $key, bool $indexed): bool;
- /**
- * switch sensitive loading status of a config key for all users
- *
- * **Warning:** heavy on resources, MUST only be used on occ command or migrations
- *
- * @param string $app id of the app
- * @param string $key config key
- * @param bool $indexed TRUE to set as indexed, FALSE to unset
- * @since 31.0.0
- */
- public function updateGlobalIndexed(string $app, string $key, bool $indexed): void;
- /**
- * switch lazy loading status of a config value
- *
- * @param string $userId id of the user
- * @param string $app id of the app
- * @param string $key config key
- * @param bool $lazy TRUE to set as lazy loaded, FALSE to unset
- *
- * @return bool TRUE if database update was necessary
- * @since 31.0.0
- */
- public function updateLazy(string $userId, string $app, string $key, bool $lazy): bool;
- /**
- * switch lazy loading status of a config key for all users
- *
- * **Warning:** heavy on resources, MUST only be used on occ command or migrations
- *
- * @param string $app id of the app
- * @param string $key config key
- * @param bool $lazy TRUE to set as lazy loaded, FALSE to unset
- * @since 31.0.0
- */
- public function updateGlobalLazy(string $app, string $key, bool $lazy): void;
- /**
- * returns an array contains details about a config value
- *
- * ```
- * [
- * "app" => "myapp",
- * "key" => "mykey",
- * "value" => "its_value",
- * "lazy" => false,
- * "type" => 4,
- * "typeString" => "string",
- * 'sensitive' => true
- * ]
- * ```
- *
- * @param string $userId id of the user
- * @param string $app id of the app
- * @param string $key config key
- *
- * @return array
- * @throws UnknownKeyException if config key is not known in database
- * @since 31.0.0
- */
- public function getDetails(string $userId, string $app, string $key): array;
- /**
- * Delete single config key from database.
- *
- * @param string $userId id of the user
- * @param string $app id of the app
- * @param string $key config key
- *
- * @since 31.0.0
- */
- public function deleteUserConfig(string $userId, string $app, string $key): void;
- /**
- * Delete config values from all users linked to a specific config keys
- *
- * @param string $app id of the app
- * @param string $key config key
- *
- * @since 31.0.0
- */
- public function deleteKey(string $app, string $key): void;
- /**
- * delete all config keys linked to an app
- *
- * @param string $app id of the app
- * @since 31.0.0
- */
- public function deleteApp(string $app): void;
- /**
- * delete all config keys linked to a user
- *
- * @param string $userId id of the user
- * @since 31.0.0
- */
- public function deleteAllUserConfig(string $userId): void;
- /**
- * Clear the cache for a single user
- *
- * The cache will be rebuilt only the next time a user config is requested.
- *
- * @param string $userId id of the user
- * @param bool $reload set to TRUE to refill cache instantly after clearing it
- *
- * @since 31.0.0
- */
- public function clearCache(string $userId, bool $reload = false): void;
- /**
- * Clear the cache for all users.
- * The cache will be rebuilt only the next time a user config is requested.
- *
- * @since 31.0.0
- */
- public function clearCacheAll(): void;
- }
|