Skip to content

Commit 6b383be

Browse files
committed
Added config to disable automatic database schema update.
1 parent d609f98 commit 6b383be

File tree

4 files changed

+22
-9
lines changed

4 files changed

+22
-9
lines changed

config/lotgd.yml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ database:
33
name: daenerys
44
user: root
55
password:
6+
disableAutoSchemaUpdate: false
67
game:
78
epoch: 2016-07-01 00:00:00.0 -8
89
offsetSeconds: 0

src/Bootstrap.php

+7-5
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public function getGame(string $cwd): Game
6666

6767
list($dsn, $user, $password) = $config->getDatabaseConnectionDetails($cwd);
6868
$pdo = $this->connectToDatabase($dsn, $user, $password);
69-
$entityManager = $this->createEntityManager($pdo);
69+
$entityManager = $this->createEntityManager($pdo, $config);
7070

7171
$this->game = (new GameBuilder())
7272
->withConfiguration($config)
@@ -159,7 +159,7 @@ protected function createLogger(Configuration $config, string $name): LoggerInte
159159
* @param \PDO $pdo
160160
* @return EntityManagerInterface
161161
*/
162-
protected function createEntityManager(\PDO $pdo): EntityManagerInterface
162+
protected function createEntityManager(\PDO $pdo, Configuration $config): EntityManagerInterface
163163
{
164164
$this->annotationDirectories = $this->generateAnnotationDirectories();
165165
$this->logger->addDebug("Adding annotation directories:");
@@ -180,9 +180,11 @@ protected function createEntityManager(\PDO $pdo): EntityManagerInterface
180180
} catch (DBALException $e) {}
181181

182182
// Create Schema and update database if needed
183-
$metaData = $entityManager->getMetadataFactory()->getAllMetadata();
184-
$schemaTool = new SchemaTool($entityManager);
185-
$schemaTool->updateSchema($metaData);
183+
if ($config->getDatabaseAutoSchemaUpdate()) {
184+
$metaData = $entityManager->getMetadataFactory()->getAllMetadata();
185+
$schemaTool = new SchemaTool($entityManager);
186+
$schemaTool->updateSchema($metaData);
187+
}
186188

187189
return $entityManager;
188190
}

src/Configuration.php

+12
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ class Configuration
2020
private $databaseName;
2121
private $databaseUser;
2222
private $databasePassword;
23+
private $databaseAutoSchemaUpdate;
2324
private $logPath;
2425
private $gameEpoch;
2526
private $gameOffsetSeconds;
@@ -70,6 +71,12 @@ public function __construct(string $configFilePath)
7071
$this->databasePassword = $passwd;
7172
$this->databaseName = $name;
7273

74+
if (empty($rawConfig['database']['disableAutoSchemaUpdate'])) {
75+
$this->databaseAutoSchemaUpdate = true;
76+
} else {
77+
$this->databaseAutoSchemaUpdate = false;
78+
}
79+
7380
$gameEpoch = $rawConfig['game']['epoch'];
7481
$gameOffsetSeconds = $rawConfig['game']['offsetSeconds'];
7582
$gameDaysPerDay = $rawConfig['game']['daysPerDay'];
@@ -157,6 +164,11 @@ public function getDatabasePassword(): string
157164
return $this->databasePassword;
158165
}
159166

167+
public function getDatabaseAutoSchemaUpdate(): bool
168+
{
169+
return $this->databaseAutoSchemaUpdate;
170+
}
171+
160172
/**
161173
* Return the path to the directory to store log files.
162174
* @return string The configured log directory path.

src/Console/Main.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@
88
use LotGD\Core\Bootstrap;
99
use LotGD\Core\Game;
1010
use LotGD\Core\Console\Command\{
11-
DatabaseInitCommand,
12-
ModuleValidateCommand,
13-
ModuleRegisterCommand,
14-
ConsoleCommand
11+
DatabaseInitCommand, DatabaseSchemaUpdateCommand, ModuleValidateCommand, ModuleRegisterCommand, ConsoleCommand
1512
};
1613

1714
/**
@@ -42,6 +39,7 @@ protected function addCommands()
4239
$this->application->add(new ModuleValidateCommand($this->game));
4340
$this->application->add(new ModuleRegisterCommand($this->game));
4441
$this->application->add(new DatabaseInitCommand($this->game));
42+
$this->application->add(new DatabaseSchemaUpdateCommand($this->game));
4543
$this->application->add(new ConsoleCommand($this->game));
4644

4745
// Add additional ones

0 commit comments

Comments
 (0)