2013-02-18 03:48:21 +01:00
|
|
|
<?php
|
|
|
|
|
2013-03-20 05:20:52 +01:00
|
|
|
require 'check_setup.php';
|
|
|
|
require 'vendor/password.php';
|
2013-02-18 03:48:21 +01:00
|
|
|
require 'vendor/PicoTools/Dependency_Injection.php';
|
2013-04-13 03:08:55 +02:00
|
|
|
require 'vendor/PicoTools/Translator.php';
|
2013-02-18 03:48:21 +01:00
|
|
|
require 'vendor/PicoDb/Database.php';
|
|
|
|
require 'vendor/PicoDb/Table.php';
|
|
|
|
require 'schema.php';
|
|
|
|
require 'model.php';
|
|
|
|
|
|
|
|
|
2013-04-23 04:41:20 +02:00
|
|
|
const DB_VERSION = 4;
|
2013-04-03 04:49:14 +02:00
|
|
|
const APP_VERSION = 'master';
|
2013-04-06 15:19:29 +02:00
|
|
|
const APP_USERAGENT = 'Miniflux - http://miniflux.net';
|
|
|
|
const HTTP_TIMEOUT = 5;
|
2013-04-03 04:49:14 +02:00
|
|
|
|
|
|
|
|
2013-03-27 02:55:35 +01:00
|
|
|
function get_db_filename()
|
|
|
|
{
|
|
|
|
return 'data/db.sqlite';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-02-18 03:48:21 +01:00
|
|
|
PicoTools\container('db', function() {
|
|
|
|
|
|
|
|
$db = new PicoDb\Database(array(
|
|
|
|
'driver' => 'sqlite',
|
2013-03-27 02:55:35 +01:00
|
|
|
'filename' => get_db_filename()
|
2013-02-18 03:48:21 +01:00
|
|
|
));
|
|
|
|
|
2013-04-03 04:49:14 +02:00
|
|
|
if ($db->schema()->check(DB_VERSION)) {
|
2013-02-18 03:48:21 +01:00
|
|
|
|
|
|
|
return $db;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
|
|
|
|
die('Unable to migrate database schema.');
|
|
|
|
}
|
|
|
|
});
|