75 lines
2.5 KiB
PHP
75 lines
2.5 KiB
PHP
<?php
|
|
|
|
use Spatie\LaravelSettings\Migrations\SettingsMigration;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class CreateTicketSettings extends SettingsMigration
|
|
{
|
|
public function up(): void
|
|
{
|
|
$table_exists = DB::table('settings_old')->exists();
|
|
|
|
// Get the user-set configuration values from the old table.
|
|
$this->migrator->add('ticket.enabled', $table_exists ? $this->getOldValue('SETTINGS::TICKET:ENABLED') : 'all');
|
|
$this->migrator->add('ticket.notify', $table_exists ? $this->getOldValue('SETTINGS::TICKET:NOTIFY') : 'all');
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
DB::table('settings_old')->insert([
|
|
[
|
|
'key' => 'SETTINGS::TICKET:NOTIFY',
|
|
'value' => $this->getNewValue('notify'),
|
|
'type' => 'string',
|
|
'description' => 'The notification type for tickets.',
|
|
],
|
|
[
|
|
'key' => 'SETTINGS::TICKET:ENABLED',
|
|
'value' => $this->getNewValue('enabled'),
|
|
'type' => 'boolean',
|
|
'description' => 'Enable or disable the ticket system.',
|
|
]
|
|
]);
|
|
|
|
$this->migrator->delete('ticket.enabled');
|
|
$this->migrator->delete('ticket.notify');
|
|
}
|
|
|
|
public function getNewValue(string $name)
|
|
{
|
|
$new_value = DB::table('settings')->where([['group', '=', 'ticket'], ['name', '=', $name]])->get(['payload'])->first();
|
|
|
|
// Some keys returns '""' as a value.
|
|
if ($new_value->payload === '""') {
|
|
return null;
|
|
}
|
|
|
|
return $new_value->payload;
|
|
}
|
|
|
|
public function getOldValue(string $key)
|
|
{
|
|
// Always get the first value of the key.
|
|
$old_value = DB::table('settings_old')->where('key', '=', $key)->get(['value', 'type'])->first();
|
|
|
|
// Handle the old values to return without it being a string in all cases.
|
|
if ($old_value->type === "string" || $old_value->type === "text") {
|
|
if (is_null($old_value->value)) {
|
|
return '';
|
|
}
|
|
|
|
// Some values have the type string, but their values are boolean.
|
|
if ($old_value->value === "false" || $old_value->value === "true") {
|
|
return filter_var($old_value->value, FILTER_VALIDATE_BOOL);
|
|
}
|
|
|
|
return $old_value->value;
|
|
}
|
|
|
|
if ($old_value->type === "boolean") {
|
|
return filter_var($old_value->value, FILTER_VALIDATE_BOOL);
|
|
}
|
|
|
|
return filter_var($old_value->value, FILTER_VALIDATE_INT);
|
|
}
|
|
}
|