Skip to content

Commit b4b351a

Browse files
committed
add castable types
1 parent ff2de93 commit b4b351a

File tree

2 files changed

+65
-22
lines changed

2 files changed

+65
-22
lines changed

config/settings.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,15 @@
5959

6060
/*
6161
|--------------------------------------------------------------------------
62-
| Keys to cast as an JSON object
62+
| Keys to cast
6363
|--------------------------------------------------------------------------
6464
|
65-
| This option controls the settings that are cast as JSON objects when
66-
| being retrieved or saved in the database. Use this setting to
67-
| ensure your JSON is being shown as an array.
65+
| This option controls the settings that are cast to native types
66+
| by default. Currently you can choose 'json' or 'boolean' -
67+
| in future, other types will be made available.
6868
|
6969
*/
7070

71-
'castJson' => [],
71+
'cast' => [],
7272

7373
];

src/Settings.php

+60-17
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ private function upsert(string $key, $value)
109109
],
110110
[
111111
'key' => $key,
112-
'value' => is_array($value) ? json_encode($value) : $value,
112+
'value' => $value,
113113
'tenant' => $this->tenant
114114
]
115115
);
@@ -123,42 +123,33 @@ private function upsert(string $key, $value)
123123
*/
124124
public function get(string|array $key = NULL, string|array $default = NULL)
125125
{
126-
$settings = $this->decryptHandler($this->resolveCache());
126+
$settings = $this->getCasts($this->decryptHandler($this->resolveCache()));
127127

128128
// no key passed, assuming get all settings
129129
if (is_null($key)) {
130130
// are we hiding everything?
131-
$result = (config('settings.hidden', []) == ['*'])
131+
return (config('settings.hidden', []) == ['*'])
132132
? [] // then return nothing.
133133
: array_merge(
134134
$default ?? [],
135135
Arr::except($settings, config('settings.hidden', []))
136136
);
137-
138-
// should we cast this value
139-
foreach ($result as $key => $val) {
140-
if (in_array($key, config('settings.castJson', []))) $result[$key] = json_decode($val);
141-
}
142-
143-
return $result;
144137
}
145138

146139
// array of keys passed, return those settings only
147140
if (is_array($key)) {
148141
foreach ($key as $key) {
149-
$result[$key] = (in_array($key, config('settings.castJson', [])))
150-
? json_decode($settings[$key] ?? $default[$key] ?? NULL)
151-
: $settings[$key] ?? $default[$key] ?? NULL;
142+
$result[$key] = $settings[$key] ?? $default[$key] ?? NULL;
152143
}
153144
return $result;
154145
}
155146

156147
// single key passed, return that setting only
157148
if (array_key_exists($key, $settings)) {
158-
159-
return (in_array($key, config('settings.castJson', []))) ? json_decode($settings[$key], true) : $settings[$key];
149+
return $settings[$key];
160150
}
161151

152+
// else return only default
162153
return $default;
163154
}
164155

@@ -187,7 +178,7 @@ public function has(mixed $needle)
187178
*/
188179
public function set(array $changes)
189180
{
190-
$changes = $this->encryptHandler($changes);
181+
$changes = $this->setCasts($this->encryptHandler($changes));
191182

192183
// Extracts only fillable key/values from array using fillable config
193184
if (config('settings.fillable', []) != ['*'] && !$this->force) {
@@ -205,4 +196,56 @@ public function set(array $changes)
205196

206197
return true;
207198
}
208-
}
199+
200+
/**
201+
* Casts database values to type
202+
* @param array $settings
203+
* @return array
204+
*/
205+
public function getCasts(array $settings)
206+
{
207+
foreach(config('settings.cast') as $castable => $cast_to) {
208+
if (!isset($settings[$castable])) {
209+
continue;
210+
}
211+
212+
// cast JSON
213+
if ($cast_to == 'json') {
214+
$settings[$castable] = json_decode($settings[$castable], true);
215+
}
216+
217+
// // cast BOOLEAN
218+
if ($cast_to == 'boolean') {
219+
$settings[$castable] = $settings[$castable] == 1 ? true : false;
220+
}
221+
}
222+
223+
return $settings;
224+
}
225+
226+
/**
227+
* Casts native values to string
228+
* @param array $settings
229+
* @return array
230+
*/
231+
public function setCasts(array $settings)
232+
{
233+
foreach(config('settings.cast') as $castable => $cast_to) {
234+
if (!isset($settings[$castable])) {
235+
continue;
236+
}
237+
238+
// cast JSON
239+
if ($cast_to == 'json') {
240+
$settings[$castable] = json_encode($settings[$castable]);
241+
}
242+
243+
// // cast BOOLEAN
244+
if ($cast_to == 'boolean') {
245+
$settings[$castable] = $settings[$castable] == true ? 1 : 0;
246+
}
247+
}
248+
249+
return $settings;
250+
}
251+
}

0 commit comments

Comments
 (0)