Updates to settings code for creating the ID and setting the order

This commit is contained in:
Nabeel Shahzad
2018-01-02 11:42:26 -06:00
parent 93786835af
commit b0907504b6
3 changed files with 81 additions and 21 deletions

View File

@@ -26,13 +26,21 @@ class CreateSettingsTable extends Migration
$table->timestamps();
});
$this->addCounterGroups([
'general' => 1,
'flights' => 20,
'bids' => 40,
'pireps' => 60,
'pilots' => 80,
]);
/**
* Initial default settings
*/
$settings = [
[
'id' => 'general_start_date',
'order' => 1,
'id' => $this->formatSettingId('general.start_date'),
'order' => $this->getNextOrderNumber('general'),
'name' => 'Start Date',
'group' => 'general',
'value' => '',
@@ -40,8 +48,8 @@ class CreateSettingsTable extends Migration
'description' => 'The date your VA started',
],
[
'id' => 'general_admin_email',
'order' => 2,
'id' => $this->formatSettingId('general.admin_email'),
'order' => $this->getNextOrderNumber('general'),
'name' => 'Admin Email',
'group' => 'general',
'value' => '',
@@ -49,8 +57,8 @@ class CreateSettingsTable extends Migration
'description' => 'Email where notices, etc are sent',
],
[
'id' => 'general_currency',
'order' => 3,
'id' => $this->formatSettingId('general.currency'),
'order' => $this->getNextOrderNumber('general'),
'name' => 'Currency to Use',
'group' => 'general',
'value' => 'dollar',
@@ -59,8 +67,8 @@ class CreateSettingsTable extends Migration
'description' => 'Currency to show in the interface',
],
[
'id' => 'flight_only_flights_from_current',
'order' => 10,
'id' => $this->formatSettingId('flights.only_flights_from_current'),
'order' => $this->getNextOrderNumber('flights'),
'name' => 'Flights from Current',
'group' => 'flights',
'value' => true,
@@ -68,8 +76,8 @@ class CreateSettingsTable extends Migration
'description' => 'Only allow flights from current location',
],
[
'id' => 'bids_disable_flight_on_bid',
'order' => 20,
'id' => $this->formatSettingId('bids.disable_flight_on_bid'),
'order' => $this->getNextOrderNumber('bids'),
'name' => 'Disable flight on bid',
'group' => 'bids',
'value' => true,
@@ -77,8 +85,8 @@ class CreateSettingsTable extends Migration
'description' => 'When a flight is bid on, no one else can bid on it',
],
[
'id' => 'bids_allow_multiple_bids',
'order' => 21,
'id' => $this->formatSettingId('bids.allow_multiple_bids'),
'order' => $this->getNextOrderNumber('bids'),
'name' => 'Allow multiple bids',
'group' => 'bids',
'value' => true,
@@ -86,8 +94,17 @@ class CreateSettingsTable extends Migration
'description' => 'Whether or not someone can bid on multiple flights',
],
[
'id' => 'pilots_id_length',
'order' => 30,
'id' => $this->formatSettingId('pireps.duplicate_check_time'),
'order' => $this->getNextOrderNumber('pireps'),
'name' => 'PIREP duplicate time check',
'group' => 'pireps',
'value' => 4,
'type' => 'int',
'description' => 'The time in minutes to check for a duplicate PIREP',
],
[
'id' => $this->formatSettingId('pilots.id_length'),
'order' => $this->getNextOrderNumber('pilots'),
'name' => 'Pilot ID Length',
'group' => 'pilots',
'value' => 4,
@@ -95,8 +112,8 @@ class CreateSettingsTable extends Migration
'description' => 'The length of a pilot\'s ID',
],
[
'id' => 'pilot_auto_accept',
'order' => 31,
'id' => $this->formatSettingId('pilot.auto_accept'),
'order' => $this->getNextOrderNumber('pilots'),
'name' => 'Auto Accept New Pilot',
'group' => 'pilots',
'value' => true,
@@ -104,8 +121,8 @@ class CreateSettingsTable extends Migration
'description' => 'Automatically accept a pilot when they register',
],
[
'id' => 'pilot_auto_leave_days',
'order' => 31,
'id' => $this->formatSettingId('pilot.auto_leave_days'),
'order' => $this->getNextOrderNumber('pilots'),
'name' => 'Pilot to ON LEAVE days',
'group' => 'pilots',
'value' => 30,
@@ -113,8 +130,8 @@ class CreateSettingsTable extends Migration
'description' => 'Automatically set a pilot to ON LEAVE status after N days of no activity',
],
[
'id' => 'pilots_hide_inactive',
'order' => 32,
'id' => $this->formatSettingId('pilots.hide_inactive'),
'order' => $this->getNextOrderNumber('pilots'),
'name' => 'Hide Inactive Pilots',
'group' => 'pilots',
'value' => true,

View File

@@ -42,7 +42,7 @@ class FlightController extends AppBaseController
$where = ['active' => true];
// default restrictions on the flights shown. Handle search differently
if (config('phpvms.only_flights_from_current')) {
if (setting('flights.only_flights_from_current')) {
$where['dpt_airport_id'] = Auth::user()->curr_airport_id;
}

View File

@@ -10,6 +10,49 @@ use Illuminate\Database\Migrations\Migration as MigrationBase;
class Migration extends MigrationBase
{
protected $counters;
/**
* Just make sure the dotted format converts to all underscores
*/
public function formatSettingId($id)
{
return str_replace('.', '_', $id);
}
/**
* Create a counter for groups with the start index. E.g:
* pireps: 10
* users: 30
*
* When calling getNextOrderNumber(users) 31, will be returned, then 32, and so on
* @param array $groups
*/
public function addCounterGroups(array $groups)
{
foreach($groups as $group => $start) {
$this->counters[$group] = $start;
}
}
/**
* Get the next increment number from a group
* @param $group
* @return int
*/
public function getNextOrderNumber($group)
{
if(!isset($this->counters[$group])) {
return 0;
}
$idx = $this->counters[$group];
++$this->counters[$group];
return $idx;
}
/**
* Add rows to a table
* @param $table