2017-10-07 07:43:57 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
use App\Models\Setting;
|
|
|
|
|
use App\Models\User;
|
2019-03-14 03:12:03 +00:00
|
|
|
use Illuminate\Console\Command;
|
2017-10-07 07:43:57 -07:00
|
|
|
|
|
|
|
|
class ResetDemoSettings extends Command
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* The name and signature of the console command.
|
|
|
|
|
*
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $signature = 'snipeit:demo-settings';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The console command description.
|
|
|
|
|
*
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $description = 'This will reset the Snipe-IT demo settings back to default. ';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Create a new command instance.
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public function __construct()
|
|
|
|
|
{
|
|
|
|
|
parent::__construct();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Execute the console command.
|
|
|
|
|
*
|
|
|
|
|
* @return mixed
|
|
|
|
|
*/
|
|
|
|
|
public function handle()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
$this->info('Resetting the demo settings.');
|
|
|
|
|
$settings = Setting::first();
|
|
|
|
|
$settings->per_page = 20;
|
|
|
|
|
$settings->site_name = 'Snipe-IT Asset Management Demo';
|
|
|
|
|
$settings->auto_increment_assets = 1;
|
2017-10-07 14:49:36 -07:00
|
|
|
$settings->logo = 'snipe-logo.png';
|
2017-10-07 07:43:57 -07:00
|
|
|
$settings->alert_email = 'service@snipe-it.io';
|
2022-05-15 10:20:03 -07:00
|
|
|
$settings->login_note = 'Use `admin` / `password` to login to the demo.';
|
2025-11-28 19:03:48 +00:00
|
|
|
$settings->header_color = '#3c8dbc';
|
2026-02-10 15:27:05 +00:00
|
|
|
$settings->link_dark_color = '#5fa4cc';
|
|
|
|
|
$settings->link_light_color = '#296282;';
|
2026-03-11 17:56:58 +00:00
|
|
|
$settings->nav_link_color = '#FFFFFF';
|
2024-12-19 15:18:27 -08:00
|
|
|
$settings->label2_2d_type = 'QRCODE';
|
2017-10-07 07:43:57 -07:00
|
|
|
$settings->default_currency = 'USD';
|
2020-09-24 19:13:31 -07:00
|
|
|
$settings->brand = 2;
|
2017-10-07 07:43:57 -07:00
|
|
|
$settings->ldap_enabled = 0;
|
2020-09-24 19:13:31 -07:00
|
|
|
$settings->full_multiple_companies_support = 0;
|
2024-12-19 15:18:27 -08:00
|
|
|
$settings->label2_1d_type = 'C128';
|
2017-10-07 07:43:57 -07:00
|
|
|
$settings->email_domain = 'snipeitapp.com';
|
|
|
|
|
$settings->email_format = 'filastname';
|
|
|
|
|
$settings->username_format = 'filastname';
|
|
|
|
|
$settings->date_display_format = 'D M d, Y';
|
|
|
|
|
$settings->time_display_format = 'g:iA';
|
|
|
|
|
$settings->thumbnail_max_h = '30';
|
2023-12-24 18:32:21 +00:00
|
|
|
$settings->locale = 'en-US';
|
2018-11-08 12:52:37 -08:00
|
|
|
$settings->version_footer = 'on';
|
2025-01-17 16:37:00 +00:00
|
|
|
$settings->support_footer = 'on';
|
2020-09-24 19:13:31 -07:00
|
|
|
$settings->saml_enabled = '0';
|
|
|
|
|
$settings->saml_sp_x509cert = null;
|
|
|
|
|
$settings->saml_idp_metadata = null;
|
|
|
|
|
$settings->saml_attr_mapping_username = null;
|
|
|
|
|
$settings->saml_forcelogin = '0';
|
|
|
|
|
$settings->saml_slo = null;
|
|
|
|
|
$settings->saml_custom_settings = null;
|
2024-07-20 00:59:25 +01:00
|
|
|
$settings->default_avatar = 'default.png';
|
2020-09-24 19:13:31 -07:00
|
|
|
|
|
|
|
|
|
2017-10-07 07:43:57 -07:00
|
|
|
$settings->save();
|
|
|
|
|
|
|
|
|
|
if ($user = User::where('username', '=', 'admin')->first()) {
|
2023-12-24 20:14:49 +00:00
|
|
|
$user->locale = 'en-US';
|
2025-12-02 13:29:12 +00:00
|
|
|
$user->enable_confetti = 1;
|
|
|
|
|
$user->enable_sounds = 1;
|
2017-10-07 07:43:57 -07:00
|
|
|
$user->save();
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-14 12:49:17 -07:00
|
|
|
\Storage::disk('public')->put('snipe-logo.png', file_get_contents(public_path('img/demo/snipe-logo.png')));
|
|
|
|
|
\Storage::disk('public')->put('snipe-logo-lg.png', file_get_contents(public_path('img/demo/snipe-logo-lg.png')));
|
2020-11-27 18:14:32 -08:00
|
|
|
|
2017-10-07 07:43:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|