@@ -109,7 +109,7 @@ private function upsert(string $key, $value)
109
109
],
110
110
[
111
111
'key ' => $ key ,
112
- 'value ' => is_array ( $ value ) ? json_encode ( $ value ) : $ value ,
112
+ 'value ' => $ value ,
113
113
'tenant ' => $ this ->tenant
114
114
]
115
115
);
@@ -123,42 +123,33 @@ private function upsert(string $key, $value)
123
123
*/
124
124
public function get (string |array $ key = NULL , string |array $ default = NULL )
125
125
{
126
- $ settings = $ this ->decryptHandler ($ this ->resolveCache ());
126
+ $ settings = $ this ->getCasts ( $ this -> decryptHandler ($ this ->resolveCache () ));
127
127
128
128
// no key passed, assuming get all settings
129
129
if (is_null ($ key )) {
130
130
// are we hiding everything?
131
- $ result = (config ('settings.hidden ' , []) == ['* ' ])
131
+ return (config ('settings.hidden ' , []) == ['* ' ])
132
132
? [] // then return nothing.
133
133
: array_merge (
134
134
$ default ?? [],
135
135
Arr::except ($ settings , config ('settings.hidden ' , []))
136
136
);
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 ;
144
137
}
145
138
146
139
// array of keys passed, return those settings only
147
140
if (is_array ($ key )) {
148
141
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 ;
152
143
}
153
144
return $ result ;
154
145
}
155
146
156
147
// single key passed, return that setting only
157
148
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 ];
160
150
}
161
151
152
+ // else return only default
162
153
return $ default ;
163
154
}
164
155
@@ -187,7 +178,7 @@ public function has(mixed $needle)
187
178
*/
188
179
public function set (array $ changes )
189
180
{
190
- $ changes = $ this ->encryptHandler ($ changes );
181
+ $ changes = $ this ->setCasts ( $ this -> encryptHandler ($ changes) );
191
182
192
183
// Extracts only fillable key/values from array using fillable config
193
184
if (config ('settings.fillable ' , []) != ['* ' ] && !$ this ->force ) {
@@ -205,4 +196,56 @@ public function set(array $changes)
205
196
206
197
return true ;
207
198
}
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