2014-09-04 17:52:18 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* This software is governed by the CeCILL-B license. If a copy of this license
|
|
|
|
* is not distributed with this file, you can obtain one at
|
|
|
|
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.txt
|
|
|
|
*
|
|
|
|
* Authors of STUdS (initial project): Guilhem BORGHESI (borghesi@unistra.fr) and Raphaël DROZ
|
2016-08-04 22:26:37 +02:00
|
|
|
* Authors of Framadate/OpenSondage: Framasoft (https://github.com/framasoft)
|
2014-09-04 17:52:18 +02:00
|
|
|
*
|
|
|
|
* =============================
|
|
|
|
*
|
|
|
|
* Ce logiciel est régi par la licence CeCILL-B. Si une copie de cette licence
|
|
|
|
* ne se trouve pas avec ce fichier vous pouvez l'obtenir sur
|
|
|
|
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.txt
|
|
|
|
*
|
|
|
|
* Auteurs de STUdS (projet initial) : Guilhem BORGHESI (borghesi@unistra.fr) et Raphaël DROZ
|
|
|
|
* Auteurs de Framadate/OpenSondage : Framasoft (https://github.com/framasoft)
|
|
|
|
*/
|
2018-04-18 16:16:22 +02:00
|
|
|
|
|
|
|
use Doctrine\DBAL\Configuration;
|
|
|
|
use Doctrine\DBAL\DBALException;
|
|
|
|
use Doctrine\DBAL\DriverManager;
|
2015-04-02 23:10:41 +02:00
|
|
|
use Framadate\Repositories\RepositoryFactory;
|
2018-04-18 16:16:22 +02:00
|
|
|
use Framadate\Services\LogService;
|
2014-09-04 17:52:18 +02:00
|
|
|
|
2015-01-03 17:29:57 +01:00
|
|
|
// Autoloading of dependencies with Composer
|
|
|
|
require_once __DIR__ . '/../../vendor/autoload.php';
|
2015-03-22 23:33:03 +01:00
|
|
|
require_once __DIR__ . '/../../vendor/o80/i18n/src/shortcuts.php';
|
2015-01-03 17:29:57 +01:00
|
|
|
|
2018-02-19 00:18:43 +01:00
|
|
|
if (session_id() === '') {
|
2015-01-02 00:19:56 +01:00
|
|
|
session_start();
|
|
|
|
}
|
|
|
|
|
2018-02-19 00:18:43 +01:00
|
|
|
if (ini_get('date.timezone') === '') {
|
2014-09-04 17:52:18 +02:00
|
|
|
date_default_timezone_set('Europe/Paris');
|
|
|
|
}
|
2015-01-02 00:19:56 +01:00
|
|
|
|
2015-01-07 14:01:08 +01:00
|
|
|
define('ROOT_DIR', __DIR__ . '/../../');
|
2018-04-18 16:16:22 +02:00
|
|
|
|
|
|
|
$path = '/app/inc/config.php';
|
|
|
|
if (getenv('APP_ENV') === 'test') {
|
|
|
|
$path = '/app/inc/config.test.php';
|
|
|
|
}
|
|
|
|
define('CONF_FILENAME', ROOT_DIR . $path);
|
2015-01-07 14:01:08 +01:00
|
|
|
|
2016-05-04 01:27:51 +02:00
|
|
|
require_once __DIR__ . '/constants.php';
|
2014-09-04 17:52:18 +02:00
|
|
|
|
2016-05-04 01:27:51 +02:00
|
|
|
if (is_file(CONF_FILENAME)) {
|
2018-04-18 16:16:22 +02:00
|
|
|
@include_once CONF_FILENAME;
|
2014-12-12 13:43:43 +01:00
|
|
|
|
2015-09-03 08:03:37 +02:00
|
|
|
// Connection to database
|
2018-04-18 16:16:22 +02:00
|
|
|
$doctrineConfig = new Configuration();
|
|
|
|
$connectionParams = [
|
|
|
|
'dbname' => DB_NAME,
|
|
|
|
'user' => DB_USER,
|
|
|
|
'password' => DB_PASSWORD,
|
|
|
|
'host' => DB_HOST,
|
|
|
|
'driver' => DB_DRIVER,
|
|
|
|
'charset' => DB_DRIVER === 'pdo_mysql' ? 'utf8mb4' : 'utf8',
|
|
|
|
];
|
|
|
|
|
|
|
|
if (DB_DRIVER === 'pdo_sqlite') {
|
|
|
|
$connectionParams['path'] = 'test_database.sqlite';
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
$connect = DriverManager::getConnection($connectionParams, $doctrineConfig);
|
|
|
|
RepositoryFactory::init($connect);
|
|
|
|
$err = 0;
|
|
|
|
} catch (DBALException $e) {
|
|
|
|
$logger = new LogService();
|
|
|
|
$logger->log('ERROR', $e->getMessage());
|
|
|
|
}
|
2015-09-03 08:03:37 +02:00
|
|
|
} else {
|
|
|
|
define('NOMAPPLICATION', 'Framadate');
|
|
|
|
define('DEFAULT_LANGUAGE', 'fr');
|
|
|
|
define('IMAGE_TITRE', 'images/logo-framadate.png');
|
|
|
|
define('LOG_FILE', 'admin/stdout.log');
|
|
|
|
$ALLOWED_LANGUAGES = [
|
|
|
|
'fr' => 'Français',
|
|
|
|
'en' => 'English',
|
|
|
|
'es' => 'Español',
|
|
|
|
'de' => 'Deutsch',
|
|
|
|
'it' => 'Italiano',
|
2016-08-04 17:29:10 +02:00
|
|
|
'br' => 'Brezhoneg',
|
2015-09-03 08:03:37 +02:00
|
|
|
];
|
2015-08-31 08:56:26 +02:00
|
|
|
}
|
2015-09-03 08:03:37 +02:00
|
|
|
|
|
|
|
require_once __DIR__ . '/i18n.php';
|
|
|
|
// Smarty
|
2016-08-04 17:29:10 +02:00
|
|
|
require_once __DIR__ . '/smarty.php';
|