2a13ed54263d5085c94bbfde1e67c932b4c84121
[core.git] / framework / database.php
1 <?php
2 // Import framework stuff
3 use CoreFramework\Configuration\FrameworkConfiguration;
4 use CoreFramework\Connection\Database\DatabaseConnection;
5 use CoreFramework\EntryPoint\ApplicationEntryPoint;
6 use CoreFramework\Object\BaseFrameworkSystem;
7 use CoreFramework\Middleware\Debug\DebugMiddleware;
8
9 /**
10  * Initializes the database layer
11  *
12  * @author              Roland Haeder <webmaster@shipsimu.org>
13  * @version             0.0.0
14  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
15  * @license             GNU GPL 3.0 or any newer version
16  * @link                http://www.shipsimu.org
17  * @deprecated
18  * @todo                Minimize these includes
19  *
20  * This program is free software: you can redistribute it and/or modify
21  * it under the terms of the GNU General Public License as published by
22  * the Free Software Foundation, either version 3 of the License, or
23  * (at your option) any later version.
24  *
25  * This program is distributed in the hope that it will be useful,
26  * but WITHOUT ANY WARRANTY; without even the implied warranty of
27  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
28  * GNU General Public License for more details.
29  *
30  * You should have received a copy of the GNU General Public License
31  * along with this program. If not, see <http://www.gnu.org/licenses/>.
32  */
33
34 // Initialize database layer
35 $databaseInstance = NULL;
36
37 // Generate FQFN for the database layer
38 $fqfn = sprintf(
39         '%sdatabase/lib-%s.php',
40         FrameworkConfiguration::getSelfInstance()->getConfigEntry('framework_base_path'),
41         FrameworkConfiguration::getSelfInstance()->getConfigEntry('database_type')
42 );
43
44 // Load the database layer include
45 if (BaseFrameworkSystem::isReadableFile($fqfn)) {
46         // Load the layer
47         require($fqfn);
48 } else {
49         // Layer is missing!
50         ApplicationEntryPoint::app_exit(sprintf('[Main:] Database layer is missing! (%s) -&gt; R.I.P.',
51                 FrameworkConfiguration::getSelfInstance()->getConfigEntry('database_type')
52         ));
53 }
54
55 // Clean it up
56 unset($fqfn);
57
58 // Prepare database instance
59 $connectionInstance = DatabaseConnection::createDatabaseConnection(DebugMiddleware::getSelfInstance(), $databaseInstance);
60
61 // Is the app variable there and valid?
62 // @TODO Rewrite this
63 if (is_object($app)) {
64         $app->setDatabaseInstance($connectionInstance);
65 } // END - if