miniflux-legacy/common.php

42 lines
808 B
PHP
Raw Normal View History

2013-02-17 21:48:21 -05:00
<?php
require 'check_setup.php';
require 'vendor/password.php';
2013-02-17 21:48:21 -05:00
require 'vendor/PicoTools/Dependency_Injection.php';
2013-04-12 21:08:55 -04:00
require 'vendor/PicoTools/Translator.php';
2013-02-17 21:48:21 -05:00
require 'vendor/PicoDb/Database.php';
require 'vendor/PicoDb/Table.php';
require 'schema.php';
require 'model.php';
2013-05-26 13:09:34 -04:00
2013-06-14 23:12:08 -04:00
const DB_VERSION = 8;
2013-05-18 20:35:16 +02:00
const APP_VERSION = 'master';
const APP_USERAGENT = 'Miniflux - http://miniflux.net';
const HTTP_TIMEOUT = 10;
2013-05-18 20:35:16 +02:00
const LIMIT_ALL = -1;
2013-04-02 22:49:14 -04:00
2013-05-26 13:09:34 -04:00
function get_db_filename()
{
return 'data/db.sqlite';
}
2013-05-21 12:25:13 +02:00
2013-02-17 21:48:21 -05:00
PicoTools\container('db', function() {
$db = new PicoDb\Database(array(
'driver' => 'sqlite',
'filename' => get_db_filename()
2013-02-17 21:48:21 -05:00
));
2013-05-26 13:09:34 -04:00
2013-04-02 22:49:14 -04:00
if ($db->schema()->check(DB_VERSION)) {
2013-02-17 21:48:21 -05:00
return $db;
}
else {
2013-05-26 13:09:34 -04:00
2013-02-17 21:48:21 -05:00
die('Unable to migrate database schema.');
}
});