bludit/install.php

714 lines
19 KiB
PHP
Raw Normal View History

2015-03-08 18:02:59 +01:00
<?php
2015-07-15 02:07:07 +02:00
/*
2016-01-21 02:46:13 +01:00
* Bludit
2016-02-14 17:45:33 +01:00
* https://www.bludit.com
2015-07-15 02:07:07 +02:00
* Author Diego Najar
* Bludit is opensource software licensed under the MIT license.
*/
2015-08-17 02:24:22 +02:00
2015-11-09 00:26:19 +01:00
// Check PHP version
if(version_compare(phpversion(), '5.3', '<')) {
exit('Current PHP version '.phpversion().', you need > 5.3. (ERR_202)');
}
2015-05-05 03:00:01 +02:00
// Security constant
2015-03-08 18:02:59 +01:00
define('BLUDIT', true);
2015-08-17 02:24:22 +02:00
2015-06-22 00:01:07 +02:00
// Directory separator
define('DS', DIRECTORY_SEPARATOR);
2015-08-17 02:24:22 +02:00
// PHP paths
2015-08-04 05:10:12 +02:00
define('PATH_ROOT', __DIR__.DS);
2016-01-21 01:29:01 +01:00
define('PATH_CONTENT', PATH_ROOT.'bl-content'.DS);
define('PATH_KERNEL', PATH_ROOT.'bl-kernel'.DS);
define('PATH_LANGUAGES', PATH_ROOT.'bl-languages'.DS);
2015-08-04 05:10:12 +02:00
define('PATH_POSTS', PATH_CONTENT.'posts'.DS);
define('PATH_UPLOADS', PATH_CONTENT.'uploads'.DS);
define('PATH_PAGES', PATH_CONTENT.'pages'.DS);
define('PATH_DATABASES', PATH_CONTENT.'databases'.DS);
define('PATH_PLUGINS_DATABASES',PATH_CONTENT.'databases'.DS.'plugins'.DS);
2016-01-21 01:29:01 +01:00
define('PATH_UPLOADS_PROFILES', PATH_UPLOADS.'profiles'.DS);
define('PATH_UPLOADS_THUMBNAILS',PATH_UPLOADS.'thumbnails'.DS);
2015-08-04 05:10:12 +02:00
define('PATH_HELPERS', PATH_KERNEL.'helpers'.DS);
define('PATH_ABSTRACT', PATH_KERNEL.'abstract'.DS);
2015-05-05 03:00:01 +02:00
2016-01-17 22:11:20 +01:00
// Domain and protocol
define('DOMAIN', $_SERVER['HTTP_HOST']);
if(!empty($_SERVER['HTTPS'])) {
define('PROTOCOL', 'https://');
}
else {
define('PROTOCOL', 'http://');
}
2016-01-21 01:29:01 +01:00
// Base URL
2016-01-17 22:11:20 +01:00
// The user can define the base URL.
// Left empty if you want to Bludit try to detect the base URL.
$base = '';
if( !empty($_SERVER['DOCUMENT_ROOT']) && !empty($_SERVER['SCRIPT_NAME']) && empty($base) ) {
$base = str_replace($_SERVER['DOCUMENT_ROOT'], '', $_SERVER['SCRIPT_NAME']);
$base = dirname($base);
}
elseif( empty($base) ) {
$base = empty( $_SERVER['SCRIPT_NAME'] ) ? $_SERVER['PHP_SELF'] : $_SERVER['SCRIPT_NAME'];
$base = dirname($base);
}
2015-11-16 05:20:58 +01:00
if($base!=DS) {
2016-01-17 22:11:20 +01:00
$base = trim($base, '/');
$base = '/'.$base.'/';
2015-11-16 05:20:58 +01:00
}
else {
// Workaround for Windows Web Servers
$base = '/';
}
2015-05-15 00:07:45 +02:00
define('HTML_PATH_ROOT', $base);
2015-05-05 03:00:01 +02:00
2015-08-17 02:24:22 +02:00
// Log separator
define('LOG_SEP', ' | ');
2015-08-04 05:10:12 +02:00
// JSON
2015-05-15 00:07:45 +02:00
if(!defined('JSON_PRETTY_PRINT')) {
define('JSON_PRETTY_PRINT', 128);
}
2015-05-05 03:00:01 +02:00
2015-08-26 05:42:32 +02:00
// Database format date
2016-01-08 00:43:09 +01:00
define('DB_DATE_FORMAT', 'Y-m-d H:i:s');
2015-08-26 05:42:32 +02:00
2015-08-17 02:24:22 +02:00
// Charset, default UTF-8.
2015-08-07 04:13:55 +02:00
define('CHARSET', 'UTF-8');
2015-08-17 02:24:22 +02:00
// Multibyte string extension loaded.
define('MB_STRING', extension_loaded('mbstring'));
2015-08-07 04:13:55 +02:00
if(MB_STRING)
{
2015-08-17 02:24:22 +02:00
// Set internal character encoding.
2015-08-07 04:13:55 +02:00
mb_internal_encoding(CHARSET);
2015-08-17 02:24:22 +02:00
// Set HTTP output character encoding.
2015-08-07 04:13:55 +02:00
mb_http_output(CHARSET);
}
// --- PHP Classes ---
2016-01-21 01:29:01 +01:00
include(PATH_ABSTRACT.'dbjson.class.php');
2015-08-04 05:10:12 +02:00
include(PATH_HELPERS.'sanitize.class.php');
include(PATH_HELPERS.'valid.class.php');
2015-08-07 04:13:55 +02:00
include(PATH_HELPERS.'text.class.php');
2015-08-17 02:24:22 +02:00
include(PATH_HELPERS.'log.class.php');
2015-08-26 05:42:32 +02:00
include(PATH_HELPERS.'date.class.php');
2016-01-21 01:29:01 +01:00
include(PATH_KERNEL.'dblanguage.class.php');
2015-08-04 05:10:12 +02:00
// --- LANGUAGE and LOCALE ---
2015-08-17 02:24:22 +02:00
// Language from the URI
2015-08-17 02:24:22 +02:00
if(isset($_GET['language'])) {
$localeFromHTTP = Sanitize::html($_GET['language']);
2015-08-16 14:33:33 +02:00
}
else {
// Try to detect the locale
if( function_exists('locale_accept_from_http') ) {
$localeFromHTTP = locale_accept_from_http($_SERVER['HTTP_ACCEPT_LANGUAGE']);
}
else {
$explodeLocale = explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']);
$localeFromHTTP = empty($explodeLocale[0])?'en_US':str_replace('-', '_', $explodeLocale[0]);
}
}
2015-08-17 02:24:22 +02:00
// Check if the dictionary exists, otherwise the default language is English.
if( !file_exists(PATH_LANGUAGES.$localeFromHTTP.'.json') ) {
2016-01-17 01:11:58 +01:00
$localeFromHTTP = 'en_US';
}
// Get language file
2015-08-17 02:24:22 +02:00
$Language = new dbLanguage($localeFromHTTP);
2015-08-16 12:34:53 +02:00
// Set locale
setlocale(LC_ALL, $localeFromHTTP);
// --- TIMEZONE ---
// Check if timezone is defined in php.ini
2015-10-24 01:23:33 +02:00
$iniDate = ini_get('date.timezone');
if(empty($iniDate)) {
// Timezone not defined in php.ini, then set UTC as default.
2015-10-24 01:23:33 +02:00
date_default_timezone_set('UTC');
}
2015-05-15 00:07:45 +02:00
// ============================================================================
// FUNCTIONS
// ============================================================================
2015-05-05 03:00:01 +02:00
// Returns an array with all languages
2015-08-04 05:10:12 +02:00
function getLanguageList()
{
$files = glob(PATH_LANGUAGES.'*.json');
$tmp = array();
foreach($files as $file)
{
$t = new dbJSON($file, false);
$native = $t->db['language-data']['native'];
$locale = basename($file, '.json');
$tmp[$locale] = $native;
}
return $tmp;
}
// Generate a random string.
2015-05-15 00:07:45 +02:00
// Thanks, http://stackoverflow.com/questions/4356289/php-random-string-generator
function getRandomString($length = 10) {
return substr(str_shuffle("0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"), 0, $length);
2015-05-05 03:00:01 +02:00
}
2015-08-04 05:10:12 +02:00
// Check if Bludit is installed.
function alreadyInstalled() {
2015-05-15 00:07:45 +02:00
return file_exists(PATH_DATABASES.'site.php');
2015-05-05 03:00:01 +02:00
}
2015-08-04 05:10:12 +02:00
// Check the system, permissions, php version, modules, etc.
// Returns an array with the problems otherwise empty array.
2015-05-15 00:07:45 +02:00
function checkSystem()
2015-05-05 03:00:01 +02:00
{
2015-08-04 05:10:12 +02:00
$stdOut = array();
$dirpermissions = 0755;
$phpModules = array();
if(function_exists('get_loaded_extensions')) {
$phpModules = get_loaded_extensions();
}
if(!file_exists(PATH_ROOT.'.htaccess'))
{
$errorText = 'Missing file, upload the file .htaccess (ERR_201)';
error_log($errorText, 0);
2015-10-24 01:23:33 +02:00
$tmp['title'] = 'File .htaccess';
$tmp['errorText'] = $errorText;
array_push($stdOut, $tmp);
2015-08-04 05:10:12 +02:00
}
if(!in_array('dom', $phpModules))
{
$errorText = 'PHP module DOM is not installed. (ERR_203)';
error_log($errorText, 0);
2015-10-24 01:23:33 +02:00
$tmp['title'] = 'PHP module';
$tmp['errorText'] = $errorText;
array_push($stdOut, $tmp);
2015-08-04 05:10:12 +02:00
}
if(!in_array('json', $phpModules))
{
$errorText = 'PHP module JSON is not installed. (ERR_204)';
error_log($errorText, 0);
2015-10-24 01:23:33 +02:00
$tmp['title'] = 'PHP module';
$tmp['errorText'] = $errorText;
array_push($stdOut, $tmp);
2015-08-04 05:10:12 +02:00
}
2016-01-17 01:11:58 +01:00
// Try to create the directory content
@mkdir(PATH_CONTENT, $dirpermissions, true);
// Check if the directory content is writeable.
2015-08-04 05:10:12 +02:00
if(!is_writable(PATH_CONTENT))
{
$errorText = 'Writing test failure, check directory content permissions. (ERR_205)';
error_log($errorText, 0);
2015-10-24 01:23:33 +02:00
$tmp['title'] = 'PHP permissions';
$tmp['errorText'] = $errorText;
array_push($stdOut, $tmp);
2015-08-04 05:10:12 +02:00
}
return $stdOut;
2015-05-05 03:00:01 +02:00
}
// Finish with the installation.
function install($adminPassword, $email, $timezone)
2015-05-15 00:07:45 +02:00
{
2015-08-17 02:24:22 +02:00
global $Language;
2015-08-07 04:13:55 +02:00
2015-08-04 05:10:12 +02:00
$stdOut = array();
if( date_default_timezone_set($timezone) ) {
date_default_timezone_set('UTC');
}
2015-10-24 22:43:50 +02:00
$currentDate = Date::current(DB_DATE_FORMAT);
2015-08-04 05:10:12 +02:00
// ============================================================================
// Create directories
// ============================================================================
// 7=read,write,execute | 5=read,execute
$dirpermissions = 0755;
$firstPostSlug = 'first-post';
if(!mkdir(PATH_POSTS.$firstPostSlug, $dirpermissions, true))
{
$errorText = 'Error when trying to created the directory=>'.PATH_POSTS.$firstPostSlug;
error_log($errorText, 0);
}
if(!mkdir(PATH_PAGES.'error', $dirpermissions, true))
{
$errorText = 'Error when trying to created the directory=>'.PATH_PAGES.'error';
error_log($errorText, 0);
}
2015-11-16 05:20:58 +01:00
if(!mkdir(PATH_PAGES.'about', $dirpermissions, true))
{
$errorText = 'Error when trying to created the directory=>'.PATH_PAGES.'about';
error_log($errorText, 0);
}
2015-08-04 05:10:12 +02:00
if(!mkdir(PATH_PLUGINS_DATABASES.'pages', $dirpermissions, true))
{
2015-08-31 03:18:06 +02:00
$errorText = 'Error when trying to created the directory=>'.PATH_PLUGINS_DATABASES.'pages';
2015-08-04 05:10:12 +02:00
error_log($errorText, 0);
}
2016-01-03 22:04:54 +01:00
if(!mkdir(PATH_PLUGINS_DATABASES.'simplemde', $dirpermissions, true))
2015-08-29 07:02:09 +02:00
{
2016-01-03 22:04:54 +01:00
$errorText = 'Error when trying to created the directory=>'.PATH_PLUGINS_DATABASES.'simplemde';
2015-08-31 03:18:06 +02:00
error_log($errorText, 0);
}
if(!mkdir(PATH_PLUGINS_DATABASES.'tags', $dirpermissions, true))
{
$errorText = 'Error when trying to created the directory=>'.PATH_PLUGINS_DATABASES.'tags';
2015-08-29 07:02:09 +02:00
error_log($errorText, 0);
}
2015-11-16 05:20:58 +01:00
if(!mkdir(PATH_PLUGINS_DATABASES.'about', $dirpermissions, true))
{
$errorText = 'Error when trying to created the directory=>'.PATH_PLUGINS_DATABASES.'about';
error_log($errorText, 0);
}
if(!mkdir(PATH_UPLOADS_PROFILES, $dirpermissions, true))
2015-08-04 05:10:12 +02:00
{
2015-11-16 05:20:58 +01:00
$errorText = 'Error when trying to created the directory=>'.PATH_UPLOADS_PROFILES;
2015-08-04 05:10:12 +02:00
error_log($errorText, 0);
}
2016-01-03 22:04:54 +01:00
if(!mkdir(PATH_UPLOADS_THUMBNAILS, $dirpermissions, true))
{
$errorText = 'Error when trying to created the directory=>'.PATH_UPLOADS_THUMBNAILS;
error_log($errorText, 0);
}
2015-08-04 05:10:12 +02:00
// ============================================================================
// Create files
// ============================================================================
$dataHead = "<?php defined('BLUDIT') or die('Bludit CMS.'); ?>".PHP_EOL;
// File pages.php
$data = array(
'error'=>array(
'description'=>'Error page',
'username'=>'admin',
2015-09-18 05:24:10 +02:00
'tags'=>array(),
2015-08-04 05:10:12 +02:00
'status'=>'published',
2015-08-26 05:42:32 +02:00
'date'=>$currentDate,
2015-08-04 05:10:12 +02:00
'position'=>0
2015-11-17 03:45:03 +01:00
),
'about'=>array(
'description'=>$Language->get('About your site or yourself'),
'username'=>'admin',
'tags'=>array(),
'status'=>'published',
'date'=>$currentDate,
'position'=>1
2015-08-04 05:10:12 +02:00
)
);
file_put_contents(PATH_DATABASES.'pages.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX);
// File posts.php
$data = array(
$firstPostSlug=>array(
2015-11-17 03:45:03 +01:00
'description'=>$Language->get('Welcome to Bludit'),
2015-08-04 05:10:12 +02:00
'username'=>'admin',
'status'=>'published',
2015-09-18 05:24:10 +02:00
'tags'=>array('bludit'=>'Bludit','cms'=>'CMS','flat-files'=>'Flat files'),
2015-10-24 01:23:33 +02:00
'allowComments'=>'false',
2015-08-26 05:42:32 +02:00
'date'=>$currentDate
2015-08-04 05:10:12 +02:00
)
);
file_put_contents(PATH_DATABASES.'posts.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX);
// File site.php
$data = array(
2015-11-16 05:20:58 +01:00
'title'=>'BLUDIT',
'slogan'=>'CMS',
2015-08-04 05:10:12 +02:00
'description'=>'',
2015-11-16 05:20:58 +01:00
'footer'=>'Copyright © '.Date::current('Y'),
2015-08-17 02:24:22 +02:00
'language'=>$Language->getCurrentLocale(),
'locale'=>$Language->getCurrentLocale(),
2015-10-24 01:23:33 +02:00
'timezone'=>$timezone,
2015-08-04 05:10:12 +02:00
'theme'=>'pure',
'adminTheme'=>'default',
'homepage'=>'',
'postsperpage'=>'6',
'uriPost'=>'/post/',
'uriPage'=>'/',
'uriTag'=>'/tag/',
2016-01-17 22:11:20 +01:00
'url'=>PROTOCOL.DOMAIN.HTML_PATH_ROOT,
'cliMode'=>false,
2015-10-24 01:23:33 +02:00
'emailFrom'=>'no-reply@'.DOMAIN
2015-08-04 05:10:12 +02:00
);
file_put_contents(PATH_DATABASES.'site.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX);
// File users.php
2015-08-04 05:10:12 +02:00
$salt = getRandomString();
$passwordHash = sha1($adminPassword.$salt);
$data = array(
'admin'=>array(
2015-11-16 05:20:58 +01:00
'firstName'=>$Language->get('Administrator'),
2015-08-04 05:10:12 +02:00
'lastName'=>'',
'twitter'=>'',
'role'=>'admin',
'password'=>$passwordHash,
'salt'=>$salt,
'email'=>$email,
2015-08-26 05:42:32 +02:00
'registered'=>$currentDate
2015-08-04 05:10:12 +02:00
)
);
file_put_contents(PATH_DATABASES.'users.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX);
2015-08-18 04:02:19 +02:00
// File security.php
$randomKey = getRandomString();
$randomKey = sha1($randomKey);
2015-08-18 04:02:19 +02:00
$data = array(
'key1'=>$randomKey,
2015-08-18 04:02:19 +02:00
'minutesBlocked'=>5,
'numberFailuresAllowed'=>10,
'blackList'=>array()
);
file_put_contents(PATH_DATABASES.'security.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX);
2015-08-31 03:18:06 +02:00
// File tags.php
file_put_contents(
PATH_DATABASES.'tags.php',
$dataHead.json_encode(
array(
'postsIndex'=>array(
'bludit'=>array('name'=>'Bludit', 'posts'=>array('first-post')),
2015-09-18 05:24:10 +02:00
'cms'=>array('name'=>'CMS', 'posts'=>array('first-post')),
'flat-files'=>array('name'=>'Flat files', 'posts'=>array('first-post'))
2015-08-31 03:18:06 +02:00
),
'pagesIndex'=>array()
),
JSON_PRETTY_PRINT),
LOCK_EX
2015-08-04 05:10:12 +02:00
);
2015-08-31 03:18:06 +02:00
// PLUGINS
// File plugins/pages/db.php
file_put_contents(
PATH_PLUGINS_DATABASES.'pages'.DS.'db.php',
$dataHead.json_encode(
array(
'position'=>0,
'homeLink'=>true,
'label'=>$Language->get('Pages')
),
JSON_PRETTY_PRINT),
LOCK_EX
);
2015-08-04 05:10:12 +02:00
2015-11-16 05:20:58 +01:00
// File plugins/about/db.php
file_put_contents(
PATH_PLUGINS_DATABASES.'about'.DS.'db.php',
$dataHead.json_encode(
array(
'position'=>0,
'label'=>$Language->get('About'),
2015-11-17 03:45:03 +01:00
'text'=>$Language->get('this-is-a-brief-description-of-yourself-our-your-site')
2015-11-16 05:20:58 +01:00
),
JSON_PRETTY_PRINT),
LOCK_EX
);
2016-01-03 22:04:54 +01:00
// File plugins/simplemde/db.php
2015-08-29 07:02:09 +02:00
file_put_contents(
2016-01-03 22:04:54 +01:00
PATH_PLUGINS_DATABASES.'simplemde'.DS.'db.php',
2015-08-29 07:02:09 +02:00
$dataHead.json_encode(
array(
2015-09-04 02:46:17 +02:00
'position'=>0,
2016-01-03 22:04:54 +01:00
'tabSize'=>4,
'toolbar'=>'&quot;bold&quot;, &quot;italic&quot;, &quot;heading&quot;, &quot;|&quot;, &quot;quote&quot;, &quot;unordered-list&quot;, &quot;|&quot;, &quot;link&quot;, &quot;image&quot;, &quot;code&quot;, &quot;horizontal-rule&quot;, &quot;|&quot;, &quot;preview&quot;, &quot;side-by-side&quot;, &quot;fullscreen&quot;, &quot;guide&quot;'
2015-08-29 07:02:09 +02:00
),
JSON_PRETTY_PRINT),
LOCK_EX
);
2015-08-31 03:18:06 +02:00
// File plugins/tags/db.php
file_put_contents(
PATH_PLUGINS_DATABASES.'tags'.DS.'db.php',
$dataHead.json_encode(
array(
'position'=>0,
'label'=>$Language->get('Tags')
),
JSON_PRETTY_PRINT),
LOCK_EX
2015-08-29 07:02:09 +02:00
);
2015-08-04 05:10:12 +02:00
// File index.txt for error page
2015-08-07 04:13:55 +02:00
$data = 'Title: '.$Language->get('Error').'
2015-11-17 03:45:03 +01:00
Content: '.$Language->get('The page has not been found');
2015-08-04 05:10:12 +02:00
file_put_contents(PATH_PAGES.'error'.DS.'index.txt', $data, LOCK_EX);
2015-11-16 05:20:58 +01:00
// File index.txt for about page
$data = 'Title: '.$Language->get('About').'
2015-11-17 03:45:03 +01:00
Content:
'.$Language->get('the-about-page-is-very-important').'
'.$Language->get('change-this-pages-content-on-the-admin-panel');
2015-11-16 05:20:58 +01:00
file_put_contents(PATH_PAGES.'about'.DS.'index.txt', $data, LOCK_EX);
2015-08-04 05:10:12 +02:00
// File index.txt for welcome post
2016-01-17 22:11:20 +01:00
$text1 = Text::replaceAssoc(
array(
'{{ADMIN_AREA_LINK}}'=>PROTOCOL.DOMAIN.HTML_PATH_ROOT.'admin'
),
$Language->get('Manage your Bludit from the admin panel')
);
2015-08-07 04:13:55 +02:00
$data = 'Title: '.$Language->get('First post').'
2015-05-07 03:00:01 +02:00
Content:
2015-11-16 05:20:58 +01:00
## '.$Language->get('Whats next').'
2016-01-17 22:11:20 +01:00
- '.$text1.'
2015-11-01 01:50:43 +01:00
- '.$Language->get('Follow Bludit on').' [Twitter](https://twitter.com/bludit) / [Facebook](https://www.facebook.com/bluditcms) / [Google+](https://plus.google.com/+Bluditcms)
2015-11-16 05:20:58 +01:00
- '.$Language->get('Chat with developers and users on Gitter').'
2015-08-07 04:13:55 +02:00
- '.$Language->get('Visit the support forum').'
- '.$Language->get('Read the documentation for more information').'
- '.$Language->get('Share with your friends and enjoy');
2015-05-07 03:00:01 +02:00
2015-08-04 05:10:12 +02:00
file_put_contents(PATH_POSTS.$firstPostSlug.DS.'index.txt', $data, LOCK_EX);
return true;
}
// Check form's parameters and finish Bludit installation.
2015-08-07 00:56:52 +02:00
function checkPOST($args)
2015-08-04 05:10:12 +02:00
{
2015-08-17 02:24:22 +02:00
global $Language;
2015-08-04 05:10:12 +02:00
// Check empty password
if( strlen($args['password']) < 6 )
2015-08-04 05:10:12 +02:00
{
return '<div>'.$Language->g('Password must be at least 6 characters long').'</div>';
2015-08-04 05:10:12 +02:00
}
// Check invalid email
2015-08-07 00:56:52 +02:00
if( !Valid::email($args['email']) && ($args['noCheckEmail']=='0') )
2015-08-04 05:10:12 +02:00
{
2015-08-17 04:33:49 +02:00
return '<div>'.$Language->g('Your email address is invalid').'</div><div id="jscompleteEmail">'.$Language->g('Proceed anyway').'</div>';
2015-08-04 05:10:12 +02:00
}
// Sanitize email
2015-08-07 00:56:52 +02:00
$email = sanitize::email($args['email']);
2015-05-15 00:07:45 +02:00
2015-08-04 05:10:12 +02:00
// Install Bludit
2015-10-24 01:23:33 +02:00
install($args['password'], $email, $args['timezone']);
2015-08-04 05:10:12 +02:00
return true;
2015-05-15 00:07:45 +02:00
}
// ============================================================================
// MAIN
// ============================================================================
2015-08-04 05:10:12 +02:00
$error = '';
if( alreadyInstalled() ) {
exit('Bludit already installed');
2015-05-15 00:07:45 +02:00
}
if( $_SERVER['REQUEST_METHOD'] == 'POST' )
{
2015-08-04 05:10:12 +02:00
$error = checkPOST($_POST);
if($error===true)
{
if(!headers_sent())
{
header("Location:".HTML_PATH_ROOT, TRUE, 302);
exit;
}
exit('<meta http-equiv="refresh" content="0; url="'.HTML_PATH_ROOT.'">');
}
2015-05-15 00:07:45 +02:00
}
?>
2015-10-24 01:23:33 +02:00
<!DOCTYPE HTML>
<html class="uk-height-1-1 uk-notouch">
2015-05-15 00:07:45 +02:00
<head>
2016-01-21 23:13:31 +01:00
<base href="bl-kernel/admin/themes/default/">
2015-08-18 04:02:19 +02:00
<meta charset="<?php echo CHARSET ?>">
2015-08-04 05:10:12 +02:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2015-05-15 00:07:45 +02:00
2015-08-16 12:34:53 +02:00
<title><?php echo $Language->get('Bludit Installer') ?></title>
2015-05-15 00:07:45 +02:00
2015-10-24 01:23:33 +02:00
<!-- Favicon -->
<link rel="shortcut icon" type="image/x-icon" href="./img/favicon.png">
2015-05-15 00:07:45 +02:00
2015-10-24 01:23:33 +02:00
<!-- CSS -->
2015-11-27 17:03:42 +01:00
<link rel="stylesheet" type="text/css" href="./css/uikit/uikit.almost-flat.min.css?version=<?php echo time() ?>">
2015-11-01 01:50:43 +01:00
<link rel="stylesheet" type="text/css" href="./css/installer.css?version=<?php echo time() ?>">
2015-10-24 01:23:33 +02:00
<!-- Javascript -->
2015-11-01 01:50:43 +01:00
<script charset="utf-8" src="./js/jquery.min.js?version=<?php echo time() ?>"></script>
2015-11-27 17:03:42 +01:00
<script charset="utf-8" src="./js/uikit/uikit.min.js?version=<?php echo time() ?>"></script>
<script charset="utf-8" src="./js/jstz.min.js?version=<?php echo time() ?>"></script>
2015-08-04 05:10:12 +02:00
2015-10-24 01:23:33 +02:00
</head>
<body class="uk-height-1-1">
<div class="uk-vertical-align uk-text-center uk-height-1-1">
<div class="uk-vertical-align-middle">
2015-08-17 02:24:22 +02:00
<h1 class="title"><?php echo $Language->get('Bludit Installer') ?></h1>
2015-10-24 01:23:33 +02:00
<div class="content">
2015-08-04 05:10:12 +02:00
2015-08-17 02:24:22 +02:00
<?php
2015-10-24 01:23:33 +02:00
$system = checkSystem();
2015-08-17 02:24:22 +02:00
2015-10-24 01:23:33 +02:00
// Missing requirements
if(!empty($system))
{
foreach($system as $values)
{
echo '<div class="uk-panel">';
echo '<div class="uk-panel-badge uk-badge uk-badge-danger">FAIL</div>';
echo '<h3 class="uk-panel-title">'.$values['title'].'</h3>';
echo $values['errorText'];
echo '</div>';
}
2015-08-17 02:24:22 +02:00
}
2015-10-24 01:23:33 +02:00
// Second step
elseif(isset($_GET['language']))
{
2015-08-17 02:24:22 +02:00
?>
<p><?php echo $Language->get('Complete the form choose a password for the username admin') ?></p>
2015-08-04 05:10:12 +02:00
<?php
if(!empty($error)) {
2015-10-24 01:23:33 +02:00
echo '<div class="uk-alert uk-alert-danger">'.$error.'</div>';
2015-08-04 05:10:12 +02:00
}
?>
2015-10-24 01:23:33 +02:00
<form id="jsformInstaller" class="uk-form uk-form-stacked" method="post" action="" autocomplete="off">
2015-08-05 02:04:06 +02:00
<input type="hidden" name="noCheckEmail" id="jsnoCheckEmail" value="0">
2015-10-24 01:23:33 +02:00
<input type="hidden" name="timezone" id="jstimezone" value="0">
<div class="uk-form-row">
2015-10-24 17:32:26 +02:00
<input type="text" value="admin" class="uk-width-1-1 uk-form-large" disabled>
2015-10-24 01:23:33 +02:00
</div>
2015-08-05 02:04:06 +02:00
2015-10-24 01:23:33 +02:00
<div class="uk-form-row">
2015-10-24 17:32:26 +02:00
<input name="password" id="jspassword" type="password" class="uk-width-1-1 uk-form-large" value="<?php echo isset($_POST['password'])?$_POST['password']:'' ?>" placeholder="<?php echo $Language->get('Password') ?>">
2015-10-24 01:23:33 +02:00
</div>
2015-08-04 05:10:12 +02:00
2015-10-24 01:23:33 +02:00
<div class="uk-form-row">
2015-10-24 17:32:26 +02:00
<input name="email" id="jsemail" type="text" class="uk-width-1-1 uk-form-large" placeholder="<?php echo $Language->get('Email') ?>" autocomplete="off" maxlength="100">
2015-10-24 01:23:33 +02:00
</div>
2015-08-04 05:10:12 +02:00
2015-10-24 01:23:33 +02:00
<div class="uk-form-row">
<button type="submit" class="uk-width-1-1 uk-button uk-button-primary uk-button-large"><?php $Language->p('Install') ?></button>
2015-08-17 02:24:22 +02:00
</div>
2015-10-24 01:23:33 +02:00
</form>
2015-10-24 17:32:26 +02:00
<div id="jsshowPassword"><i class="uk-icon-eye"></i> <?php $Language->p('Show password') ?></div>
2015-08-17 02:24:22 +02:00
<?php
2015-10-24 01:23:33 +02:00
}
else
{
2015-08-17 02:24:22 +02:00
?>
<p><?php echo $Language->get('Choose your language') ?></p>
2015-10-24 01:23:33 +02:00
<form class="uk-form" method="get" action="" autocomplete="off">
2015-08-17 02:24:22 +02:00
2015-10-24 01:23:33 +02:00
<div class="uk-form-row">
<select id="jslanguage" name="language" class="uk-width-1-1">
2015-08-04 05:10:12 +02:00
<?php
$htmlOptions = getLanguageList();
foreach($htmlOptions as $locale=>$nativeName) {
2015-08-17 02:24:22 +02:00
echo '<option value="'.$locale.'"'.( ($localeFromHTTP===$locale)?' selected="selected"':'').'>'.$nativeName.'</option>';
2015-08-04 05:10:12 +02:00
}
?>
</select>
2015-10-24 01:23:33 +02:00
</div>
2015-08-04 05:10:12 +02:00
2015-10-24 01:23:33 +02:00
<div class="uk-form-row">
<button type="submit" class="uk-width-1-1 uk-button uk-button-primary uk-button-large"><?php $Language->p('Next') ?></button>
2015-08-04 05:10:12 +02:00
</div>
2015-10-24 01:23:33 +02:00
</form>
2015-08-17 02:24:22 +02:00
<?php
2015-10-24 01:23:33 +02:00
}
2015-08-17 02:24:22 +02:00
?>
2015-10-24 01:23:33 +02:00
</div>
2015-08-17 02:24:22 +02:00
</div>
</div>
2015-08-04 05:10:12 +02:00
2015-08-17 02:24:22 +02:00
<script>
$(document).ready(function()
{
// Timezone
var timezone = jstz.determine();
$("#jstimezone").val( timezone.name() );
2015-10-24 01:23:33 +02:00
// Proceed without email field.
$("#jscompleteEmail").on("click", function() {
$("#jsnoCheckEmail").val("1");
2015-10-24 17:32:26 +02:00
$("#jsformInstaller").submit();
2015-10-24 01:23:33 +02:00
});
// Show password
$("#jsshowPassword").on("click", function() {
var input = document.getElementById("jspassword");
if(input.getAttribute("type")=="text") {
input.setAttribute("type", "password");
}
else {
input.setAttribute("type", "text");
}
});
2015-08-17 02:24:22 +02:00
});
</script>
2015-08-04 05:10:12 +02:00
2015-05-15 00:07:45 +02:00
</body>
2015-12-02 04:00:47 +01:00
</html>