aboutsummaryrefslogtreecommitdiffhomepage
path: root/main/app/sprinkles/ConfigManager/src/Util/ConfigManager.php
blob: e935487c3202872d10900878cefb0a9524135e2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
<?php
/**
 * Gaston (http://gaston.bbqsoftwares.com)
 *
 * @link      https://github.com/lcharette/GASTON
 * @copyright Copyright (c) 2016 Louis Charette
 * @license
 */
namespace UserFrosting\Sprinkle\ConfigManager\Util;

use UserFrosting\Sprinkle\Core\Facades\Debug;
use UserFrosting\Sprinkle\ConfigManager\Database\Models\Config;
use UserFrosting\Support\Exception\FileNotFoundException;
use UserFrosting\Support\Exception\JsonException;
use UserFrosting\Support\Repository\Loader\YamlFileLoader;
use Interop\Container\ContainerInterface;

/**
 * GastonServicesProvider class.
 * Registers services for the account sprinkle, such as currentUser, etc.
 */
class ConfigManager
{
    /**
     * @var ContainerInterface The global container object, which holds all your services.
     */
    protected $ci;

    /**
     * __construct function.
     *
     * @access public
     * @param ContainerInterface $ci
     * @return void
     */
    public function __construct(ContainerInterface $ci)
    {
        $this->ci = $ci;
    }

    /**
     * __invoke function.
     * Invoke the ConfigManager middleware, merging the db config with the file based one
     *
     * @access public
     * @param  \Psr\Http\Message\ServerRequestInterface $request  PSR7 request
     * @param  \Psr\Http\Message\ResponseInterface      $response PSR7 response
     * @param  callable                                 $next     Next middleware
     * @return \Psr\Http\Message\ResponseInterface
     */
    public function __invoke($request, $response, $next)
    {
        $this->ci->config->mergeItems(null, $this->fetch());
        return $next($request, $response);
    }

    /**
     * fetch function.
     * Fetch all the config from the db and uses the
     * cache container to store most of thoses setting in the cache system
     *
     * @access public
     * @return void
     */
    public function fetch() {

        $cache = $this->ci->cache;

        // Case n° 1 we don't have cached content. We load everything
        // Case n° 2 we have cached content, pull that and load the non chanched things to it
        if (($cached_settings = $cache->get('UF_config')) === null)
        {
            $settingsCollection = Config::all();
            $settings = $this->collectionToArray($settingsCollection);

            // Save in cache. The settings that are not cached are not included
            $cache->forever('UF_config', $this->collectionToArray($settingsCollection, false));
        }
        else
        {
            // We have the cached values, we need to grab the non cached ones
            $settingsCollection = Config::where('cached', 0);
            $settings = array_merge_recursive($cached_settings, $this->collectionToArray($settingsCollection));
        }

        return $settings;
    }

    /**
     * delete function.
     * Removes a configuration option
     *
     * @access public
     * @param string $key       The setting's name
     * @return bool             Success
     */
    public function delete($key) {

        // Get the desired key
        if (!$setting = Config::where('key', $key)->first()) {
            return false;
        }

        // Delete time
        $setting->delete();

        // Remove from current laod
        unset($this->ci->config[$key]);

        // Delete cache
        if ($setting->cached)
        {
            $this->ci->cache->forget('UF_config');
        }

        return true;
    }

    /**
     * set function.
     * Sets a setting's value
     *
     * @access public
     * @param string $key                       The setting's name
     * @param string $value                     The new value
     * @param bool $cached (default: true)      Whether this variable should be cached or if it
     *                                          changes too frequently to be efficiently cached.
     * @return bool                             True if the value was changed, false otherwise
     */
    public function set($key, $value, $cached = true) {
        return $this->set_atomic($key, false, $value, $cached);
    }

    /**
     * set_atomic function.
     * Sets a setting's value only if the old_value matches the
     * current value or the setting does not exist yet.
     *
     * @access public
     * @param string $key                       The setting's name
     * @param string $old_value                 Current configuration value or false to ignore
     *                                          the old value
     * @param string $new_value                 The new value
     * @param bool $cached (default: true)      Whether this variable should be cached or if it
     *                                          changes too frequently to be efficiently cached.
     * @return bool                             True if the value was changed, false otherwise
     */
    public function set_atomic($key, $old_value, $new_value, $cached = true) {

        // Get the desired key
        $setting = Config::where('key', $key)->first();

        if ($setting) {

            if ($old_value === false || $setting->value == $old_value) {

                $setting->value = $new_value;
                $setting->save();

            } else {
                return false;
            }

        } else {
            $setting = new Config([
                'key' => $key,
                'value' => $new_value,
                'cached' => $cached
            ]);
            $setting->save();
        }

        if ($cached)
        {
            $this->ci->cache->forget('UF_config');
        }

        $this->ci->config[$key] = $new_value;
        return true;
    }

    /**
     * getAllShemas function.
     * Get all the config schemas available
     *
     * @access public
     * @return void
     */
    public function getAllShemas() {

        $configSchemas = [];

        $loader = new YamlFileLoader([]);

        // Get all the location where we can find config schemas
        $paths = array_reverse($this->ci->locator->findResources('schema://config', true, false));

        // For every location...
        foreach ($paths as $path) {

            // Get a list of all the schemas file
            $files_with_path = glob($path . "/*.json");

            // Load every found files
            foreach ($files_with_path as $file) {

                // Load the file content
                $schema = $loader->loadFile($file);

                // Get file name
                $filename = basename($file, ".json");

                //inject file name
                $schema['filename'] = $filename;

                // Add to list
                $configSchemas[$filename] = $schema;
            }
        }

        return $configSchemas;
    }


    /**
     * collectionToArray function.
     * This function Expand the db dot notation single level array
     * to a multi-dimensional array
     *
     * @access private
     * @param Collection $Collection    Eloquent collection
     * @return array
     */
    private function collectionToArray($Collection, $include_noncached = true) {
        $settings_array = array();
        foreach ($Collection as $setting) {
            if ($include_noncached || $setting->cached) {
                array_set($settings_array, $setting->key, $setting->value);
            }
        }
        return $settings_array;
    }
}