Browse Source

add environment whitelist, move configuration example to examples folder

main
ghost 1 year ago
parent
commit
82ce328866
  1. 1
      .gitignore
  2. 0
      example/environment/env.example.php
  3. 14
      src/config/bootstrap.php

1
.gitignore vendored

@ -6,7 +6,6 @@
/src/config/*.php /src/config/*.php
!/src/config/bootstrap.php !/src/config/bootstrap.php
!/src/config/env.example.php
/src/public/api/manifest.json /src/public/api/manifest.json
/src/public/api/users.json /src/public/api/users.json

0
src/config/env.example.php → example/environment/env.example.php

14
src/config/bootstrap.php

@ -9,17 +9,23 @@ if (empty($_SERVER['PHP_ENV']))
$_SERVER['PHP_ENV'] = 'default'; $_SERVER['PHP_ENV'] = 'default';
} }
// Validate environment whitelist
if (!in_array($_SERVER['PHP_ENV'], ['default', 'mirror', 'dev', 'test', 'prod']))
{
exit (_('Environment not supported! Check /src/config/bootstrap.php to add exception.'));
}
// Generate configuration file if not exists // Generate configuration file if not exists
if (!file_exists(sprintf('%s/env.%s.php', __DIR__, $_SERVER['PHP_ENV']))) if (!file_exists(__DIR__ . '/../../env.' . $_SERVER['PHP_ENV'] . '.php'))
{ {
copy( copy(
__DIR__ . '/env.example.php', __DIR__ . '/../../example/environment/env.example.php',
sprintf('%s/env.%s.php', __DIR__, $_SERVER['PHP_ENV']) __DIR__ . '/env.' . $_SERVER['PHP_ENV'] . '.php'
); );
} }
// Load environment configuration // Load environment configuration
require_once sprintf('%s/env.%s.php', __DIR__, $_SERVER['PHP_ENV']); require_once __DIR__ . '/env.' . $_SERVER['PHP_ENV'] . '.php';
// Local internal dependencies // Local internal dependencies
require_once __DIR__ . '/../library/database.php'; require_once __DIR__ . '/../library/database.php';

Loading…
Cancel
Save