mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
86 lines
2 KiB
PHP
86 lines
2 KiB
PHP
<?php
|
|
|
|
namespace Tests\Support;
|
|
|
|
use App\Models\Setting;
|
|
|
|
class Settings
|
|
{
|
|
private Setting $setting;
|
|
|
|
private function __construct()
|
|
{
|
|
$this->setting = Setting::factory()->create();
|
|
}
|
|
|
|
public static function initialize(): Settings
|
|
{
|
|
return new self();
|
|
}
|
|
|
|
public function enableAlertEmail(string $email = 'notifications@afcrichmond.com'): Settings
|
|
{
|
|
return $this->update(['alert_email' => $email]);
|
|
}
|
|
|
|
public function disableAlertEmail(): Settings
|
|
{
|
|
return $this->update(['alert_email' => null]);
|
|
}
|
|
|
|
public function enableMultipleFullCompanySupport(): Settings
|
|
{
|
|
return $this->update(['full_multiple_companies_support' => 1]);
|
|
}
|
|
|
|
public function disableMultipleFullCompanySupport(): Settings
|
|
{
|
|
return $this->update(['full_multiple_companies_support' => 0]);
|
|
}
|
|
|
|
public function enableWebhook(): Settings
|
|
{
|
|
return $this->update([
|
|
'webhook_botname' => 'SnipeBot5000',
|
|
'webhook_endpoint' => 'https://hooks.slack.com/services/NZ59/Q446/672N',
|
|
'webhook_channel' => '#it',
|
|
]);
|
|
}
|
|
|
|
public function disableWebhook(): Settings
|
|
{
|
|
return $this->update([
|
|
'webhook_botname' => '',
|
|
'webhook_endpoint' => '',
|
|
'webhook_channel' => '',
|
|
]);
|
|
}
|
|
|
|
public function enableAutoIncrement(): Settings
|
|
{
|
|
return $this->update([
|
|
'auto_increment_assets' => 1,
|
|
'auto_increment_prefix' => 'ABCD',
|
|
'next_auto_tag_base' => '123',
|
|
'zerofill_count' => 5
|
|
]);
|
|
|
|
}
|
|
|
|
/**
|
|
* @param array $attributes Attributes to modify in the application's settings.
|
|
*/
|
|
public function set(array $attributes): Settings
|
|
{
|
|
return $this->update($attributes);
|
|
}
|
|
|
|
private function update(array $attributes): Settings
|
|
{
|
|
Setting::unguarded(fn() => $this->setting->update($attributes));
|
|
Setting::$_cache = null;
|
|
|
|
return $this;
|
|
}
|
|
}
|