2016-03-25 01:18:05 -07:00
|
|
|
|
<?php
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2016-12-26 15:19:04 -08:00
|
|
|
|
use Illuminate\Notifications\Notifiable;
|
2016-03-25 01:18:05 -07:00
|
|
|
|
use Watson\Validating\ValidatingTrait;
|
2016-05-14 16:09:00 -07:00
|
|
|
|
use Schema;
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
|
|
class Setting extends Model
|
|
|
|
|
{
|
2016-12-26 15:19:04 -08:00
|
|
|
|
use Notifiable;
|
2016-03-25 01:18:05 -07:00
|
|
|
|
protected $injectUniqueIdentifier = true;
|
|
|
|
|
use ValidatingTrait;
|
|
|
|
|
|
|
|
|
|
protected $rules = [
|
2016-06-01 15:45:05 -07:00
|
|
|
|
"brand" => 'required|min:1|numeric',
|
2017-08-22 10:41:59 -07:00
|
|
|
|
"qr_text" => 'max:31|nullable',
|
2016-06-01 15:45:05 -07:00
|
|
|
|
"logo_img" => 'mimes:jpeg,bmp,png,gif',
|
2017-08-22 10:41:59 -07:00
|
|
|
|
"alert_email" => 'email_array|nullable',
|
2016-06-01 15:45:05 -07:00
|
|
|
|
"default_currency" => 'required',
|
|
|
|
|
"locale" => 'required',
|
2017-08-22 10:41:59 -07:00
|
|
|
|
"slack_endpoint" => 'url|required_with:slack_channel|nullable',
|
|
|
|
|
"slack_channel" => 'regex:/(?<!\w)#\w+/|required_with:slack_endpoint|nullable',
|
2017-07-07 18:06:31 -07:00
|
|
|
|
"slack_botname" => 'string|nullable',
|
2016-06-01 15:45:05 -07:00
|
|
|
|
'labels_per_page' => 'numeric',
|
|
|
|
|
'labels_width' => 'numeric',
|
|
|
|
|
'labels_height' => 'numeric',
|
2017-08-22 10:41:59 -07:00
|
|
|
|
'labels_pmargin_left' => 'numeric|nullable',
|
|
|
|
|
'labels_pmargin_right' => 'numeric|nullable',
|
|
|
|
|
'labels_pmargin_top' => 'numeric|nullable',
|
|
|
|
|
'labels_pmargin_bottom' => 'numeric|nullable',
|
|
|
|
|
'labels_display_bgutter' => 'numeric|nullable',
|
|
|
|
|
'labels_display_sgutter' => 'numeric|nullable',
|
2016-06-01 15:45:05 -07:00
|
|
|
|
'labels_fontsize' => 'numeric|min:5',
|
2017-08-22 10:41:59 -07:00
|
|
|
|
'labels_pagewidth' => 'numeric|nullable',
|
|
|
|
|
'labels_pageheight' => 'numeric|nullable',
|
2017-07-25 19:36:38 -07:00
|
|
|
|
"thumbnail_max_h" => 'numeric|max:500|min:25',
|
2017-08-22 20:32:39 -07:00
|
|
|
|
"pwd_secure_min" => "numeric|required|min:5",
|
2017-08-25 17:59:01 -07:00
|
|
|
|
"audit_warning_days" => "numeric|nullable",
|
|
|
|
|
"audit_interval" => "numeric|nullable",
|
2017-10-19 12:22:27 -07:00
|
|
|
|
"custom_forgot_pass_url" => "url|nullable",
|
2016-03-25 01:18:05 -07:00
|
|
|
|
];
|
|
|
|
|
|
2016-06-01 15:45:05 -07:00
|
|
|
|
protected $fillable = ['site_name','email_domain','email_format','username_format'];
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
|
|
public static function getSettings()
|
|
|
|
|
{
|
|
|
|
|
static $static_cache = null;
|
2016-11-29 05:19:18 -08:00
|
|
|
|
|
2016-12-29 14:02:18 -08:00
|
|
|
|
if (!$static_cache) {
|
|
|
|
|
if (Schema::hasTable('settings')) {
|
|
|
|
|
$static_cache = Setting::first();
|
2016-11-28 22:38:11 -08:00
|
|
|
|
}
|
2016-12-29 14:02:18 -08:00
|
|
|
|
}
|
2016-11-28 22:38:11 -08:00
|
|
|
|
|
2016-11-29 05:19:18 -08:00
|
|
|
|
return $static_cache;
|
2016-11-28 22:38:11 -08:00
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-06-22 12:27:41 -07:00
|
|
|
|
public static function setupCompleted()
|
|
|
|
|
{
|
2016-12-19 11:04:28 -08:00
|
|
|
|
|
2016-07-13 05:47:32 -07:00
|
|
|
|
$users_table_exists = Schema::hasTable('users');
|
|
|
|
|
$settings_table_exists = Schema::hasTable('settings');
|
2016-12-19 11:04:28 -08:00
|
|
|
|
|
2016-06-22 12:27:41 -07:00
|
|
|
|
if ($users_table_exists && $settings_table_exists) {
|
|
|
|
|
$usercount = User::withTrashed()->count();
|
2016-12-19 11:04:28 -08:00
|
|
|
|
$settingsCount = Setting::count();
|
|
|
|
|
return ($usercount > 0 && $settingsCount > 0);
|
2016-06-22 12:27:41 -07:00
|
|
|
|
}
|
2016-05-14 16:09:00 -07:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
|
public function lar_ver()
|
|
|
|
|
{
|
|
|
|
|
$app = \App::getFacadeApplication();
|
|
|
|
|
return $app::VERSION;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function getDefaultEula()
|
|
|
|
|
{
|
|
|
|
|
$Parsedown = new \Parsedown();
|
|
|
|
|
if (Setting::getSettings()->default_eula_text) {
|
|
|
|
|
return $Parsedown->text(e(Setting::getSettings()->default_eula_text));
|
|
|
|
|
}
|
2018-01-20 08:46:19 -08:00
|
|
|
|
return null;
|
2016-03-25 01:18:05 -07:00
|
|
|
|
}
|
|
|
|
|
|
2018-01-24 10:43:46 -08:00
|
|
|
|
public function modellistCheckedValue ($element) {
|
|
|
|
|
|
|
|
|
|
// If the value is blank for some reason
|
|
|
|
|
if ($this->modellist_displays=='') {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
$values = explode(',', $this->modellist_displays);
|
|
|
|
|
|
|
|
|
|
foreach ($values as $value) {
|
|
|
|
|
if ($value == $element) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-15 14:27:21 -08:00
|
|
|
|
/**
|
|
|
|
|
* Escapes the custom CSS, and then un-escapes the greater-than symbol
|
|
|
|
|
* so it can work with direct descendant characters for bootstrap
|
|
|
|
|
* menu overrides like:
|
|
|
|
|
*
|
|
|
|
|
* .skin-blue .sidebar-menu>li.active>a, .skin-blue .sidebar-menu>li:hover>a
|
|
|
|
|
*
|
|
|
|
|
* Important: Do not remove the e() escaping here, as we output raw in the blade.
|
|
|
|
|
*
|
|
|
|
|
* @return string escaped CSS
|
|
|
|
|
* @author A. Gianotto <snipe@snipe.net>
|
|
|
|
|
*/
|
2016-03-25 01:18:05 -07:00
|
|
|
|
public function show_custom_css()
|
|
|
|
|
{
|
|
|
|
|
$custom_css = Setting::getSettings()->custom_css;
|
|
|
|
|
$custom_css = e($custom_css);
|
|
|
|
|
// Needed for modifying the bootstrap nav :(
|
|
|
|
|
$custom_css = str_ireplace('script', 'SCRIPTS-NOT-ALLOWED-HERE', $custom_css);
|
|
|
|
|
$custom_css = str_replace('>', '>', $custom_css);
|
|
|
|
|
return $custom_css;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Converts bytes into human readable file size.
|
|
|
|
|
*
|
|
|
|
|
* @param string $bytes
|
|
|
|
|
* @return string human readable file size (2,87 Мб)
|
|
|
|
|
* @author Mogilev Arseny
|
|
|
|
|
*/
|
|
|
|
|
public static function fileSizeConvert($bytes)
|
|
|
|
|
{
|
|
|
|
|
$bytes = floatval($bytes);
|
|
|
|
|
$arBytes = array(
|
|
|
|
|
0 => array(
|
|
|
|
|
"UNIT" => "TB",
|
|
|
|
|
"VALUE" => pow(1024, 4)
|
|
|
|
|
),
|
|
|
|
|
1 => array(
|
|
|
|
|
"UNIT" => "GB",
|
|
|
|
|
"VALUE" => pow(1024, 3)
|
|
|
|
|
),
|
|
|
|
|
2 => array(
|
|
|
|
|
"UNIT" => "MB",
|
|
|
|
|
"VALUE" => pow(1024, 2)
|
|
|
|
|
),
|
|
|
|
|
3 => array(
|
|
|
|
|
"UNIT" => "KB",
|
|
|
|
|
"VALUE" => 1024
|
|
|
|
|
),
|
|
|
|
|
4 => array(
|
|
|
|
|
"UNIT" => "B",
|
|
|
|
|
"VALUE" => 1
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
foreach ($arBytes as $arItem) {
|
|
|
|
|
if ($bytes >= $arItem["VALUE"]) {
|
|
|
|
|
$result = $bytes / $arItem["VALUE"];
|
|
|
|
|
$result = round($result, 2) .$arItem["UNIT"];
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return $result;
|
|
|
|
|
}
|
2016-12-26 15:19:04 -08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The url for slack notifications.
|
|
|
|
|
* Used by Notifiable trait.
|
|
|
|
|
* @return mixed
|
|
|
|
|
*/
|
|
|
|
|
public function routeNotificationForSlack()
|
|
|
|
|
{
|
|
|
|
|
// At this point the endpoint is the same for everything.
|
|
|
|
|
// In the future this may want to be adapted for individual notifications.
|
|
|
|
|
return $this->slack_endpoint;
|
|
|
|
|
}
|
2017-08-22 20:32:39 -07:00
|
|
|
|
|
2018-03-02 18:01:20 -08:00
|
|
|
|
public function routeNotificationForMail()
|
|
|
|
|
{
|
|
|
|
|
// At this point the endpoint is the same for everything.
|
|
|
|
|
// In the future this may want to be adapted for individual notifications.
|
|
|
|
|
return config('mail.reply_to.address');
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-22 21:15:35 -07:00
|
|
|
|
public static function passwordComplexityRulesSaving($action = 'update')
|
2017-08-22 20:32:39 -07:00
|
|
|
|
{
|
2017-08-22 21:15:35 -07:00
|
|
|
|
$security_rules = '';
|
|
|
|
|
$settings = Setting::getSettings();
|
2017-08-22 20:32:39 -07:00
|
|
|
|
|
2017-08-22 21:15:35 -07:00
|
|
|
|
// Check if they have uncommon password enforcement selected in settings
|
|
|
|
|
if ($settings->pwd_secure_uncommon == 1) {
|
|
|
|
|
$security_rules .= '|dumbpwd';
|
2017-08-22 20:32:39 -07:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-22 21:15:35 -07:00
|
|
|
|
// Check for any secure password complexity rules that may have been selected
|
|
|
|
|
if ($settings->pwd_secure_complexity!='') {
|
|
|
|
|
$security_rules .= '|'.$settings->pwd_secure_complexity;
|
2017-08-22 20:32:39 -07:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-22 21:15:35 -07:00
|
|
|
|
if ($action == 'update') {
|
|
|
|
|
return 'nullable|min:'.$settings->pwd_secure_min.$security_rules;
|
|
|
|
|
}
|
2017-08-22 20:32:39 -07:00
|
|
|
|
|
2017-08-22 21:15:35 -07:00
|
|
|
|
return 'required|min:'.$settings->pwd_secure_min.$security_rules;
|
2017-08-22 20:32:39 -07:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-22 21:15:35 -07:00
|
|
|
|
|
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
|
}
|