forked from nabeelio/phpvms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
helpers.php
466 lines (417 loc) · 10.6 KB
/
helpers.php
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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
<?php
use App\Exceptions\SettingNotFound;
use App\Repositories\KvpRepository;
use App\Repositories\SettingRepository;
use Carbon\Carbon;
use Illuminate\Contracts\View\Factory;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Cache;
use Nwidart\Modules\Facades\Module;
/*
* array_key_first only exists in PHP 7.3+
*/
if (!function_exists('array_key_first')) {
function array_key_first(array $arr)
{
foreach ($arr as $key => $unused) {
return $key;
}
}
}
if (!function_exists('in_mask')) {
/**
* Return true/false if a value exists in a mask
*
* @param $mask
* @param $value
*
* @return bool
*/
function in_mask($mask, $value)
{
if (empty($mask)) {
$mask = 0;
}
return ($mask & $value) === $value;
}
}
if (!function_exists('get_truth_state')) {
/**
* Check if the passed state matches any of the states that
* we regard as being true or false
*
* @param $state
*
* @return bool
*/
function get_truth_state($state)
{
$enabledStates = [
'yes',
'y',
'on',
'true',
'1',
true,
];
if (is_string($state)) {
$state = strtolower($state);
}
return in_array($state, $enabledStates, false);
}
}
if (!function_exists('list_to_assoc')) {
/**
* Converts a straight list into an assoc array with
* key and value being the same. Mainly for a select box
*
* e.g.:
* [ 0 => 'item1', 1 => 'item2']
* to:
* ['item1' => 'item1', 'item2' => 'item2']
*
* @param array $list
*
* @return array
*/
function list_to_assoc(array $list)
{
$ret = [];
foreach ($list as $item) {
if (substr_count($item, '=')) {
[$item, $title] = explode('=', $item);
} else {
$title = $item;
}
$item = trim($item);
$title = trim($title);
$ret[$item] = $title;
}
return $ret;
}
}
if (!function_exists('list_to_editable')) {
/**
* Convert a list (select box) into an editable list
* https://vitalets.github.io/x-editable/docs.html#select
* Takes a list of:
* [value => text, valueN => textN, ...]
* Return:
* [{value: 1, text: "text1"}, {value: 2, text: "text2"}, ...]
*
* @param array $list
*
* @return array
*/
function list_to_editable(array $list)
{
$editable = [];
foreach ($list as $value => $key) {
$editable[] = [
'text' => $key,
'value' => $value,
];
}
return $editable;
}
}
if (!function_exists('skin_view')) {
/**
* Render a skin
*
* @param $template
* @param array $vars
* @param array $merge_data
*
* @return Factory|\Illuminate\View\View
*/
function skin_view($template, array $vars = [], array $merge_data = [])
{
// Add the current skin name so we don't need to hardcode it in the templates
// Makes it a bit easier to create a new skin by modifying an existing one
if (View::exists($template)) {
return view($template, $vars, $merge_data);
}
$tpl = 'layouts/'.setting('general.theme', 'default').'/'.$template;
return view($tpl, $vars, $merge_data);
}
}
/*
* Shortcut for retrieving a setting value
*/
if (!function_exists('setting')) {
/**
* Read a setting from the settings table
*
* @param $key
* @param mixed $default
*
* @return mixed|null
*/
function setting($key, $default = null)
{
/** @var \App\Repositories\SettingRepository $settingRepo */
$settingRepo = app(SettingRepository::class);
try {
if (app()->environment('production')) {
$cache = config('cache.keys.SETTINGS');
$value = Cache::remember($cache['key'].$key, $cache['time'], function () use ($key, $settingRepo) {
return $settingRepo->retrieve($key);
});
} else {
$value = $settingRepo->retrieve($key);
}
} catch (SettingNotFound $e) {
return $default;
} catch (Exception $e) {
return $default;
}
return $value;
}
}
/*
* Shortcut for retrieving a setting value
*/
if (!function_exists('setting_save')) {
function setting_save($key, $value)
{
/** @var \App\Repositories\SettingRepository $settingRepo */
$settingRepo = app(SettingRepository::class);
$settingRepo->save($key, $value);
return $value;
}
}
/*
* Shortcut for retrieving a KVP
*/
if (!function_exists('kvp')) {
/**
* Read a setting from the KVP repository
*
* @param string $key
* @param string|null $default
*
* @return mixed|null
*/
function kvp(string $key, $default = null)
{
/** @var KvpRepository $kvpRepo */
$kvpRepo = app(KvpRepository::class);
try {
$value = $kvpRepo->get($key, $default);
} catch (Exception $e) {
return $default;
}
return $value;
}
}
/*
* Shortcut for retrieving a KVP
*/
if (!function_exists('kvp_save')) {
/**
* Read a setting from the KVP repository
*
* @param string $key
* @param string $value
*
* @return mixed|null
*/
function kvp_save(string $key, string $value)
{
/** @var KvpRepository $kvpRepo */
$kvpRepo = app(KvpRepository::class);
$kvpRepo->save($key, $value);
}
}
/*
* Wrap the asset URL in the publicBaseUrl that's been
* set
*/
if (!function_exists('public_asset')) {
function public_asset($path, array $parameters = [])
{
$publicBaseUrl = app()->publicUrlPath();
$path = $publicBaseUrl.$path;
$path = str_replace('//', '/', $path);
return url($path, $parameters);
}
}
/*
* Call mix() and then prepend the proper public URL
*/
if (!function_exists('public_mix')) {
function public_mix($path, array $parameters = [])
{
try {
$path = mix($path);
} catch (Exception $e) {
}
return public_asset($path, $parameters);
}
}
/**
* Wrap a call to url() and append the public folder before it
*/
if (!function_exists('public_url')) {
function public_url($path, array $parameters = [])
{
$publicBaseUrl = app()->publicUrlPath();
$path = $publicBaseUrl.$path;
$path = str_replace('//', '/', $path);
return url($path, $parameters);
}
}
/*
* Show a date/time in the proper timezone for a user
*/
if (!function_exists('show_datetime')) {
/**
* Format the a Carbon date into the datetime string
* but convert it into the user's timezone
*
* @param Carbon $date
*
* @return string
*/
function show_datetime(Carbon $date = null)
{
if ($date === null) {
return '-';
}
$timezone = 'UTC';
if (Auth::check()) {
$timezone = Auth::user()->timezone ?: $timezone;
}
return $date->timezone($timezone)->toDayDateTimeString();
}
}
/*
* Show a date/time in the proper timezone for a user
*/
if (!function_exists('show_date')) {
/**
* Format the a Carbon date into the datetime string
* but convert it into the user's timezone
*
* @param \Carbon\Carbon $date
* @param string $default_timezone Default timezone to use, defaults to UTC
*
* @return string
*/
function show_date(Carbon $date, $default_timezone = 'UTC')
{
$timezone = $default_timezone;
if (Auth::check()) {
$timezone = Auth::user()->timezone ?: $timezone;
}
return $date->timezone($timezone)->toFormattedDateString();
}
}
/*
* Show a date/time in the proper timezone for a user
*/
if (!function_exists('show_datetime_format')) {
/**
* Format the a Carbon date into the datetime string
* but convert it into the user's timezone
*
* @param \Carbon\Carbon $date
* @param string $format
* @param string $default_timezone A default timezone to use (UTC by default)
*
* @return string
*/
function show_datetime_format(Carbon $date, $format, $default_timezone = 'UTC')
{
$timezone = $default_timezone;
if (Auth::check()) {
$timezone = Auth::user()->timezone ?: $timezone;
}
return $date->timezone($timezone)->format($format);
}
}
if (!function_exists('secstohhmm')) {
/**
* Convert seconds to hhmm format
*
* @param $seconds
*/
function secstohhmm($seconds)
{
$seconds = round((float) $seconds);
$hhmm = sprintf('%02d%02d', $seconds / 3600, $seconds / 60 % 60);
echo $hhmm;
}
}
if (!function_exists('_fmt')) {
/**
* Replace strings
*
* @param $line "Hi, my name is :name"
* @param array $replace ['name' => 'Nabeel']
*
* @return mixed
*/
function _fmt($line, array $replace)
{
if (empty($replace)) {
return $line;
}
foreach ($replace as $key => $value) {
$key = strtolower($key);
$line = str_replace(
[':'.$key],
[$value],
$line
);
}
return $line;
}
}
if (!function_exists('docs_link')) {
/**
* Return a link to the docs
*
* @param string $key Key from phpvms.config.docs
*
* @return string
*/
function docs_link($key)
{
return config('phpvms.docs.root').config('phpvms.docs.'.$key);
}
}
if (!function_exists('check_module')) {
/**
* Check if a module is installed and active
*
* @param string $module_name
*
* @return bool
*/
function check_module($module_name)
{
$phpvms_module = Module::find($module_name);
return filled($phpvms_module) ? $phpvms_module->isEnabled() : false;
}
}
if (!function_exists('decode_days')) {
/**
* Decode days of flights for schedule display
*
* @param int $flight_days
*
* @return string Monday, Tuesday, Friday, Sunday
*/
function decode_days($flight_days)
{
$days = [];
for ($i = 0; $i < 7; $i++) {
if ($flight_days & pow(2, $i)) {
$days[] = jddayofweek($i, 1);
}
}
return implode(', ', $days);
}
}