]> git.mxchange.org Git - friendica.git/blob - src/Core/PConfig/Capability/IManagePersonalConfigValues.php
New function to exit the program
[friendica.git] / src / Core / PConfig / Capability / IManagePersonalConfigValues.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Core\PConfig\Capability;
23
24 use Friendica\Core\PConfig\ValueObject;
25
26 /**
27  * Interface for accessing user specific configurations
28  */
29 interface IManagePersonalConfigValues
30 {
31         /**
32          * Loads all configuration values of a user's config family into a cached storage.
33          *
34          * All configuration values of the given user are stored with the $uid in the cache
35          *
36          * @param int    $uid The user_id
37          * @param string $cat The category of the configuration value
38          *
39          * @return array The loaded config array
40          */
41         public function load(int $uid, string $cat = 'config'): array;
42
43         /**
44          * Get a particular user's config variable given the category name
45          * ($cat) and a key.
46          *
47          * Get a particular user's config value from the given category ($cat)
48          * and the $key with the $uid from a cached storage either from the database
49          * or from the configCache
50          *
51          * @param int     $uid           The user_id
52          * @param string  $cat           The category of the configuration value
53          * @param string  $key           The configuration key to query
54          * @param mixed   $default_value optional, The value to return if key is not set (default: null)
55          * @param boolean $refresh       optional, If true the config is loaded from the db and not from the cache (default: false)
56          *
57          * @return mixed Stored value or null if it does not exist
58          *
59          */
60         public function get(int $uid, string $cat, string $key, $default_value = null, bool $refresh = false);
61
62         /**
63          * Sets a configuration value for a user
64          *
65          * Stores a config value ($value) in the category ($family) under the key ($key)
66          * for the user_id $uid.
67          *
68          * @note  Please do not store booleans - convert to 0/1 integer values!
69          *
70          * @param int    $uid   The user_id
71          * @param string $cat   The category of the configuration value
72          * @param string $key   The configuration key to set
73          * @param mixed  $value The value to store
74          *
75          * @return bool Operation success
76          */
77         public function set(int $uid, string $cat, string $key, $value): bool;
78
79         /**
80          * Deletes the given key from the users configuration.
81          *
82          * Removes the configured value from the stored cache and removes it from the database with the given $uid.
83          *
84          * @param int    $uid The user_id
85          * @param string $cat The category of the configuration value
86          * @param string $key The configuration key to delete
87          *
88          * @return bool
89          */
90         public function delete(int $uid, string $cat, string $key): bool;
91
92
93         /**
94          * Returns the Config Cache
95          *
96          * @return ValueObject\Cache
97          */
98         public function getCache(): ValueObject\Cache;
99 }