Fix issue that would prevent Ark servers from being added to servers.

Renamed migration file to force it to re-run on previously migrated
systems.
This commit is contained in:
Dane Everitt 2016-11-04 20:37:40 -04:00
parent b586feab2d
commit e0696900bb
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53
2 changed files with 58 additions and 1 deletions

View File

@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddArkServiceOption extends Migration
class AddArkServiceOptionFixed extends Migration
{
/**
* Run the migrations.
@ -15,10 +15,17 @@ class AddArkServiceOption extends Migration
{
DB::transaction(function () {
$service = DB::table('services')->select('id')->where('author', 'ptrdctyl-v040-11e6-8b77-86f30ca893d3')->where('name', 'Source Engine')->first();
// No SRCDS Service, Skipping
if (!$service) {
return;
}
// Already have this service option installed.
if (DB::table('service_options')->select('id')->where('name', 'Ark: Survival Evolved')->where('parent_service', $service->id)->first()) {
return;
}
$oid = DB::table('service_options')->insertGetId([
'parent_service' => $service->id,
'name' => 'Ark: Survival Evolved',

View File

@ -87,6 +87,16 @@ class SourceServiceTableSeeder extends Seeder
'startup' => '-game {{SRCDS_GAME}} -console -port {{SERVER_PORT}} +map {{SRCDS_MAP}} -strictportbind -norestart'
]);
$this->option['ark'] = Models\ServiceOptions::create([
'parent_service' => $this->service->id,
'name' => 'Ark: Survival Evolved',
'description' => 'As a man or woman stranded, naked, freezing, and starving on the unforgiving shores of a mysterious island called ARK, use your skill and cunning to kill or tame and ride the plethora of leviathan dinosaurs and other primeval creatures roaming the land. Hunt, harvest resources, craft items, grow crops, research technologies, and build shelters to withstand the elements and store valuables, all while teaming up with (or preying upon) hundreds of other players to survive, dominate... and escape! — Gamepedia: ARK',
'tag' => 'ark',
'docker_image' => 'quay.io/pterodactyl/srcds:ark',
'executable' => './ShooterGameServer',
'startup' => 'TheIsland?listen?ServerPassword={{ARK_PASSWORD}}?ServerAdminPassword={{ARK_ADMIN_PASSWORD}}?Port={{SERVER_PORT}}?MaxPlayers={{SERVER_MAX_PLAYERS}}'
]);
$this->option['custom'] = Models\ServiceOptions::create([
'parent_service' => $this->service->id,
'name' => 'Custom Source Engine Game',
@ -102,6 +112,7 @@ class SourceServiceTableSeeder extends Seeder
{
$this->addInsurgencyVariables();
$this->addTF2Variables();
$this->addArkVariables();
$this->addCustomVariables();
}
@ -183,6 +194,45 @@ class SourceServiceTableSeeder extends Seeder
]);
}
private function addArkVariables()
{
DB::table('service_variables')->insert([
'option_id' => $this->option['ark']->id,
'name' => 'Server Password',
'description' => 'If specified, players must provide this password to join the server.',
'env_variable' => 'ARK_PASSWORD',
'default_value' => '',
'user_viewable' => 1,
'user_editable' => 1,
'required' => 0,
'regex' => '/^(\w\.*)$/'
]);
DB::table('service_variables')->insert([
'option_id' => $this->option['ark']->id,
'name' => 'Admin Password',
'description' => 'If specified, players must provide this password (via the in-game console) to gain access to administrator commands on the server.',
'env_variable' => 'ARK_ADMIN_PASSWORD',
'default_value' => '',
'user_viewable' => 1,
'user_editable' => 1,
'required' => 0,
'regex' => '/^(\w\.*)$/'
]);
DB::table('service_variables')->insert([
'option_id' => $this->option['ark']->id,
'name' => 'Maximum Players',
'description' => 'Specifies the maximum number of players that can play on the server simultaneously.',
'env_variable' => 'SERVER_MAX_PLAYERS',
'default_value' => 20,
'user_viewable' => 1,
'user_editable' => 1,
'required' => 1,
'regex' => '/^(\d{1,4})$/'
]);
}
private function addCustomVariables()
{
Models\ServiceVariables::create([