72 lines
2.5 KiB
PHP
72 lines
2.5 KiB
PHP
<?php
|
|
|
|
// connect to database
|
|
function connectDB($config, $database = '', $platform_id = '') {
|
|
|
|
// connecting ti a jilo sqlite database
|
|
if ($database === 'jilo') {
|
|
try {
|
|
$dbFile = $config['platforms'][$platform_id]['jilo_database'] ?? null;
|
|
if (!$dbFile) {
|
|
throw new Exception("Invalid platform ID \"$platform_id\", database file not found.");
|
|
}
|
|
$db = new Database([
|
|
'type' => 'sqlite',
|
|
'dbFile' => $dbFile,
|
|
]);
|
|
} catch (Exception $e) {
|
|
if ($config['environment'] === 'production') {
|
|
$error = 'There was an unexpected error. Please try again.';
|
|
} else {
|
|
$error = 'Error: ' . $e->getMessage();
|
|
}
|
|
include '../app/templates/block-message.php';
|
|
exit();
|
|
}
|
|
|
|
// connecting to a jilo-web database of the web app
|
|
} else {
|
|
|
|
// sqlite database file
|
|
if ($config['db']['db_type'] === 'sqlite') {
|
|
try {
|
|
$db = new Database([
|
|
'type' => $config['db']['db_type'],
|
|
'dbFile' => $config['db']['sqlite_file'],
|
|
]);
|
|
$pdo = $db->getConnection();
|
|
} catch (Exception $e) {
|
|
$error = 'Error: ' . $e->getMessage();
|
|
include '../app/templates/block-message.php';
|
|
exit();
|
|
}
|
|
// mysql/mariadb database
|
|
} elseif ($config['db']['db_type'] === 'mysql' || $config['db']['db_type'] === 'mariadb') {
|
|
try {
|
|
$db = new Database([
|
|
'type' => $config['db']['db_type'],
|
|
'host' => $config['db']['sql_host'] ?? 'localhost',
|
|
'port' => $config['db']['sql_port'] ?? '3306',
|
|
'dbname' => $config['db']['sql_database'],
|
|
'user' => $config['db']['sql_username'],
|
|
'password' => $config['db']['sql_password'],
|
|
]);
|
|
$pdo = $db->getConnection();
|
|
} catch (Exception $e) {
|
|
$error = 'Error: ' . $e->getMessage();
|
|
include '../app/templates/block-message.php';
|
|
exit();
|
|
}
|
|
// unknown database
|
|
} else {
|
|
$error = "Error: unknow database type \"{$config['db']['db_type']}\"";
|
|
include '../app/templates/block-message.php';
|
|
exit();
|
|
}
|
|
|
|
}
|
|
|
|
return $db;
|
|
}
|
|
?>
|