bludit/install.php

743 lines
21 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
2017-09-05 23:46:45 +02:00
if (version_compare(phpversion(), '5.3', '<')) {
2015-11-09 00:26:19 +01:00
exit('Current PHP version '.phpversion().', you need > 5.3. (ERR_202)');
}
2017-01-10 17:43:38 +01:00
// Check PHP modules
2017-09-05 23:46:45 +02:00
if (!extension_loaded('mbstring')) {
exit('PHP module mbstring is not installed. <a href="https://docs.bludit.com/en/getting-started/requirements">Check the requirements</a>.');
2017-01-10 17:43:38 +01:00
}
2017-09-05 23:46:45 +02:00
if (!extension_loaded('json')) {
exit('PHP module json is not installed. <a href="https://docs.bludit.com/en/getting-started/requirements">Check the requirements</a>.');
2017-01-10 17:43:38 +01:00
}
2017-09-05 23:46:45 +02:00
if (!extension_loaded('gd')) {
exit('PHP module gd is not installed. <a href="https://docs.bludit.com/en/getting-started/requirements">Check the requirements</a>.');
2017-01-10 17:43:38 +01:00
}
2017-09-05 23:46:45 +02:00
if (!extension_loaded('dom')) {
exit('PHP module dom is not installed. <a href="https://docs.bludit.com/en/getting-started/requirements">Check the requirements</a>.');
2017-01-10 17:43:38 +01:00
}
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_UPLOADS', PATH_CONTENT.'uploads'.DS);
2016-05-26 23:48:41 +02:00
define('PATH_TMP', PATH_CONTENT.'tmp'.DS);
2015-08-04 05:10:12 +02:00
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
2017-09-05 23:46:45 +02:00
// Protecting against Symlink attacks
2016-02-20 17:16:31 +01:00
define('CHECK_SYMBOLIC_LINKS', TRUE);
2017-09-05 23:46:45 +02:00
// Filename for pages
define('FILENAME', 'index.txt');
2016-01-17 22:11:20 +01:00
// Domain and protocol
define('DOMAIN', $_SERVER['HTTP_HOST']);
2017-09-05 23:46:45 +02:00
if (!empty($_SERVER['HTTPS'])) {
2016-01-17 22:11:20 +01:00
define('PROTOCOL', 'https://');
2017-09-05 23:46:45 +02:00
} else {
2016-01-17 22:11:20 +01:00
define('PROTOCOL', 'http://');
}
2016-01-21 01:29:01 +01:00
// Base URL
2017-09-05 23:46:45 +02:00
// Change the base URL or leave it empty if you want to Bludit try to detect the base URL.
2016-01-17 22:11:20 +01:00
$base = '';
2017-09-05 23:46:45 +02:00
if (!empty($_SERVER['DOCUMENT_ROOT']) && !empty($_SERVER['SCRIPT_NAME']) && empty($base)) {
2016-01-17 22:11:20 +01:00
$base = str_replace($_SERVER['DOCUMENT_ROOT'], '', $_SERVER['SCRIPT_NAME']);
$base = dirname($base);
2017-09-05 23:46:45 +02:00
} elseif (empty($base)) {
2016-01-17 22:11:20 +01:00
$base = empty( $_SERVER['SCRIPT_NAME'] ) ? $_SERVER['PHP_SELF'] : $_SERVER['SCRIPT_NAME'];
$base = dirname($base);
}
2015-11-16 05:20:58 +01:00
2017-09-05 23:46:45 +02:00
if (strpos($_SERVER['REQUEST_URI'], $base)!==0) {
$base = '/';
} elseif ($base!=DS) {
2016-01-17 22:11:20 +01:00
$base = trim($base, '/');
$base = '/'.$base.'/';
2017-09-05 23:46:45 +02:00
} else {
2015-11-16 05:20:58 +01:00
// 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
2017-09-05 23:46:45 +02:00
if (!defined('JSON_PRETTY_PRINT')) {
2015-05-15 00:07:45 +02:00
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');
2017-09-05 23:46:45 +02:00
// Default language file
2017-09-04 23:09:45 +02:00
define('DEFAULT_LANGUAGE_FILE', 'en.json');
2017-09-05 23:46:45 +02:00
// Set internal character encoding
2016-07-26 01:40:51 +02:00
mb_internal_encoding(CHARSET);
2015-08-17 02:24:22 +02:00
2017-09-05 23:46:45 +02:00
// Set HTTP output character encoding
2016-07-26 01:40:51 +02:00
mb_http_output(CHARSET);
2015-08-07 04:13:55 +02:00
// --- 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 ---
2017-09-05 23:46:45 +02:00
// Try to detect the language from browser or headers
$languageFromHTTP = 'en';
2017-09-04 23:09:45 +02:00
$localeFromHTTP = 'en_US';
if (isset($_GET['language'])) {
$languageFromHTTP = Sanitize::html($_GET['language']);
} else {
// Try to detect the language browser
$languageFromHTTP = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
// Try to detect the locale
2017-09-04 23:09:45 +02:00
if (function_exists('locale_accept_from_http')) {
$localeFromHTTP = locale_accept_from_http($_SERVER['HTTP_ACCEPT_LANGUAGE']);
}
2016-01-17 01:11:58 +01:00
}
2017-09-05 23:46:45 +02:00
$finalLanguage = 'en';
$languageFiles = getLanguageList();
foreach ($languageFiles as $fname=>$native) {
if ( ($languageFromHTTP==$fname) || ($localeFromHTTP==$fname) ) {
$finalLanguage = $fname;
}
}
$Language = new dbLanguage($finalLanguage);
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');
2017-09-05 23:46:45 +02:00
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
2017-09-06 20:11:28 +02:00
function getLanguageList() {
2015-08-04 05:10:12 +02:00
$files = glob(PATH_LANGUAGES.'*.json');
$tmp = array();
2017-09-06 20:11:28 +02:00
foreach ($files as $file) {
2015-08-04 05:10:12 +02:00
$t = new dbJSON($file, false);
$native = $t->db['language-data']['native'];
$locale = basename($file, '.json');
$tmp[$locale] = $native;
}
return $tmp;
}
2017-05-17 18:48:51 +02:00
// Check if Bludit is installed
2015-08-04 05:10:12 +02:00
function alreadyInstalled() {
2017-09-05 23:46:45 +02:00
return file_exists(PATH_DATABASES.'site.php');
2015-05-05 03:00:01 +02:00
}
2017-09-05 23:46:45 +02:00
// Check write permissions and .htaccess file
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;
// Try to create .htaccess
2018-03-02 15:10:48 +01:00
$htaccessContent = 'AddDefaultCharset UTF-8
<IfModule mod_rewrite.c>
# Enable rewrite rules
RewriteEngine on
# Base directory
RewriteBase '.HTML_PATH_ROOT.'
2018-03-02 15:10:48 +01:00
# Deny direct access to .txt files
RewriteRule ^bl-content/(.*)\.txt$ - [R=404,L]
# All URL process by index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*) index.php [PT,L]
</IfModule>';
if (!file_put_contents(PATH_ROOT.'.htaccess', $htaccessContent)) {
if (!empty($_SERVER['SERVER_SOFTWARE'])) {
$webserver = Text::lowercase($_SERVER['SERVER_SOFTWARE']);
if (Text::stringContains($webserver, 'apache') || Text::stringContains($webserver, 'litespeed')) {
$errorText = 'Missing file, upload the file .htaccess';
error_log($errorText, 0);
$tmp['title'] = 'File .htaccess';
$tmp['errorText'] = $errorText;
array_push($stdOut, $tmp);
2018-03-02 15:10:48 +01:00
}
2016-08-31 02:57:24 +02:00
}
2015-08-04 05:10:12 +02:00
}
2018-03-02 16:03:00 +01:00
// Check mod_rewrite module
if (function_exists('apache_get_modules') ) {
if (!in_array('mod_rewrite', apache_get_modules())) {
$errorText = 'Module mod_rewrite is not installed or loaded.';
2016-08-31 02:57:24 +02:00
error_log($errorText, 0);
2018-03-02 16:03:00 +01:00
$tmp['title'] = 'Apache mod_rewrite module';
2016-08-31 02:57:24 +02:00
$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.
2017-09-05 23:46:45 +02:00
if (!is_writable(PATH_CONTENT)) {
$errorText = 'Writing test failure, check directory "bl-content" permissions.';
2015-08-04 05:10:12 +02:00
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
}
2017-05-17 18:48:51 +02:00
// Installation function
2018-03-02 19:59:30 +01:00
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();
2016-02-26 16:32:18 +01:00
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;
2017-09-05 23:46:45 +02:00
// PAGES
2018-02-25 17:25:10 +01:00
if (!mkdir(PATH_PAGES.$Language->get('example-page-1-slug'), $dirpermissions, true)) {
$errorText = 'Error when trying to created the directory=>'.PATH_PAGES.$Language->get('example-page-1-slug');
2015-08-04 05:10:12 +02:00
error_log($errorText, 0);
}
2018-02-25 17:25:10 +01:00
if (!mkdir(PATH_PAGES.$Language->get('example-page-2-slug'), $dirpermissions, true)) {
$errorText = 'Error when trying to created the directory=>'.PATH_PAGES.$Language->get('example-page-2-slug');
error_log($errorText, 0);
}
if (!mkdir(PATH_PAGES.$Language->get('example-page-3-slug'), $dirpermissions, true)) {
$errorText = 'Error when trying to created the directory=>'.PATH_PAGES.$Language->get('example-page-3-slug');
error_log($errorText, 0);
}
if (!mkdir(PATH_PAGES.$Language->get('example-page-4-slug'), $dirpermissions, true)) {
$errorText = 'Error when trying to created the directory=>'.PATH_PAGES.$Language->get('example-page-4-slug');
2015-08-04 05:10:12 +02:00
error_log($errorText, 0);
}
2017-09-05 23:46:45 +02:00
// PLUGINS
if (!mkdir(PATH_PLUGINS_DATABASES.'simplemde', $dirpermissions, true)) {
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);
}
2017-09-05 23:46:45 +02:00
if (!mkdir(PATH_PLUGINS_DATABASES.'tags', $dirpermissions, true)) {
2015-08-31 03:18:06 +02:00
$errorText = 'Error when trying to created the directory=>'.PATH_PLUGINS_DATABASES.'tags';
2015-08-29 07:02:09 +02:00
error_log($errorText, 0);
}
2017-09-05 23:46:45 +02:00
if (!mkdir(PATH_PLUGINS_DATABASES.'about', $dirpermissions, true)) {
2015-11-16 05:20:58 +01:00
$errorText = 'Error when trying to created the directory=>'.PATH_PLUGINS_DATABASES.'about';
error_log($errorText, 0);
}
2017-09-05 23:46:45 +02:00
// UPLOADS directories
if (!mkdir(PATH_UPLOADS_PROFILES, $dirpermissions, true)) {
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);
}
2017-09-05 23:46:45 +02:00
if (!mkdir(PATH_UPLOADS_THUMBNAILS, $dirpermissions, true)) {
2017-05-17 18:48:51 +02:00
$errorText = 'Error when trying to created the directory=>'.PATH_UPLOADS_THUMBNAILS;
2016-05-26 23:48:41 +02:00
error_log($errorText, 0);
}
2017-09-05 23:46:45 +02:00
if (!mkdir(PATH_TMP, $dirpermissions, true)) {
2017-05-17 18:48:51 +02:00
$errorText = 'Error when trying to created the directory=>'.PATH_TMP;
2016-01-03 22:04:54 +01:00
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(
2018-02-25 17:25:10 +01:00
$Language->get('example-page-1-slug')=>array(
'description'=>'',
2017-05-17 18:48:51 +02:00
'username'=>'admin',
'tags'=>array(),
2018-02-25 17:25:10 +01:00
'status'=>'published',
2017-10-07 16:58:24 +02:00
'type'=>'page',
2017-05-17 18:48:51 +02:00
'date'=>$currentDate,
'dateModified'=>'',
2017-05-30 20:28:55 +02:00
'allowComments'=>true,
2018-02-25 17:25:10 +01:00
'position'=>1,
2017-05-17 18:48:51 +02:00
'coverImage'=>'',
'md5file'=>'',
'category'=>'',
2017-10-07 16:58:24 +02:00
'uuid'=>md5(uniqid()),
'parent'=>'',
2018-02-25 17:25:10 +01:00
'slug'=>$Language->get('example-page-1-slug')
2017-05-17 18:48:51 +02:00
),
2018-02-25 17:25:10 +01:00
$Language->get('example-page-2-slug')=>array(
'description'=>'',
'username'=>'admin',
'tags'=>array(),
'status'=>'published',
'type'=>'page',
'date'=>$currentDate,
'dateModified'=>'',
'allowComments'=>true,
'position'=>1,
'coverImage'=>'',
'md5file'=>'',
'category'=>'',
'uuid'=>md5(uniqid()),
'parent'=>'',
'slug'=>$Language->get('example-page-2-slug')
),
$Language->get('example-page-3-slug')=>array(
'description'=>'',
2017-05-17 18:48:51 +02:00
'username'=>'admin',
2018-02-25 17:25:10 +01:00
'tags'=>array(),
2017-05-17 18:48:51 +02:00
'status'=>'published',
2018-02-25 17:25:10 +01:00
'type'=>'page',
2017-05-17 18:48:51 +02:00
'date'=>$currentDate,
'dateModified'=>'',
2017-05-30 20:28:55 +02:00
'allowComments'=>true,
2017-05-17 18:48:51 +02:00
'position'=>1,
'coverImage'=>'',
'md5file'=>'',
2018-02-25 17:25:10 +01:00
'category'=>'',
2017-10-07 16:58:24 +02:00
'uuid'=>md5(uniqid()),
'parent'=>'',
2018-02-25 17:25:10 +01:00
'slug'=>$Language->get('example-page-3-slug')
),
$Language->get('example-page-4-slug')=>array(
'description'=>'',
'username'=>'admin',
'tags'=>array(),
'status'=>'static',
'type'=>'page',
'date'=>$currentDate,
'dateModified'=>'',
'allowComments'=>true,
'position'=>1,
'coverImage'=>'',
'md5file'=>'',
'category'=>'',
'uuid'=>md5(uniqid()),
'parent'=>'',
'slug'=>$Language->get('example-page-4-slug')
)
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 site.php
2017-05-30 20:28:55 +02:00
// If the website is not installed inside a folder the URL not need finish with /
// Example (root): https://domain.com
// Example (inside a folder): https://domain.com/folder/
2017-09-05 23:46:45 +02:00
if (HTML_PATH_ROOT=='/') {
2017-05-30 20:28:55 +02:00
$siteUrl = PROTOCOL.DOMAIN;
} else {
$siteUrl = PROTOCOL.DOMAIN.HTML_PATH_ROOT;
}
2015-08-04 05:10:12 +02:00
$data = array(
2015-11-16 05:20:58 +01:00
'title'=>'BLUDIT',
2018-02-25 17:25:10 +01:00
'slogan'=>$Language->get('welcome-to-bludit'),
'description'=>$Language->get('congratulations-you-have-successfully-installed-your-bludit'),
2015-11-16 05:20:58 +01:00
'footer'=>'Copyright © '.Date::current('Y'),
2017-09-05 23:46:45 +02:00
'itemsPerPage'=>6,
'language'=>$Language->currentLanguage(),
2017-09-04 23:09:45 +02:00
'locale'=>$Language->locale(),
2015-10-24 01:23:33 +02:00
'timezone'=>$timezone,
2018-02-25 17:25:10 +01:00
'theme'=>'alternative',
2015-08-04 05:10:12 +02:00
'adminTheme'=>'default',
'homepage'=>'',
2017-09-05 23:46:45 +02:00
'pageNotFound'=>'',
2015-08-04 05:10:12 +02:00
'uriPage'=>'/',
'uriTag'=>'/tag/',
2017-05-03 21:10:03 +02:00
'uriCategory'=>'/category/',
'uriBlog'=>'/blog/',
2017-05-30 20:28:55 +02:00
'url'=>$siteUrl,
2017-09-05 23:46:45 +02:00
'emailFrom'=>'no-reply@'.DOMAIN,
2018-02-25 17:25:10 +01:00
'orderBy'=>'date',
'currentBuild'=>'0',
'twitter'=>'https://twitter.com/bludit',
'facebook'=>'https://www.facebook.com/bluditcms',
'codepen'=>'',
'googlePlus'=>'https://plus.google.com/+Bluditcms',
'github'=> 'https://github.com/bludit',
'dateFormat'=>'F j, Y'
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
$salt = uniqid();
2015-08-04 05:10:12 +02:00
$passwordHash = sha1($adminPassword.$salt);
2017-09-23 13:10:05 +02:00
$tokenAuth = md5( uniqid().time().DOMAIN );
2015-08-04 05:10:12 +02:00
$data = array(
'admin'=>array(
2017-09-05 23:46:45 +02:00
'firstName'=>$Language->get('Administrator'),
'lastName'=>'',
'role'=>'admin',
'password'=>$passwordHash,
'salt'=>$salt,
2018-03-02 19:59:30 +01:00
'email'=>'',
2017-09-05 23:46:45 +02:00
'registered'=>$currentDate,
2018-01-01 20:19:45 +01:00
'tokenRemember'=>'',
2017-09-23 13:10:05 +02:00
'tokenAuth'=>$tokenAuth,
2017-09-05 23:46:45 +02:00
'tokenAuthTTL'=>'2009-03-15 14:00',
'twitter'=>'',
'facebook'=>'',
'googlePlus'=>'',
'instagram'=>''
2015-08-04 05:10:12 +02:00
)
);
file_put_contents(PATH_DATABASES.'users.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX);
2017-05-19 00:45:14 +02:00
// File syslog.php
$data = array(
array(
2017-09-05 23:46:45 +02:00
'date'=>$currentDate,
'dictionaryKey'=>'welcome-to-bludit',
'notes'=>'',
'idExecution'=>uniqid(),
'method'=>'POST',
'username'=>'admin'
2017-05-19 00:45:14 +02:00
));
file_put_contents(PATH_DATABASES.'syslog.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX);
2015-08-18 04:02:19 +02:00
// File security.php
$data = array(
'minutesBlocked'=>5,
'numberFailuresAllowed'=>10,
'blackList'=>array()
);
file_put_contents(PATH_DATABASES.'security.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX);
2017-04-26 18:56:10 +02:00
// File categories.php
2017-05-04 21:32:18 +02:00
$data = array(
'general'=>array('name'=>'General', 'list'=>array()),
'music'=>array('name'=>'Music', 'list'=>array()),
'videos'=>array('name'=>'Videos', 'list'=>array())
2017-05-04 21:32:18 +02:00
);
2017-04-26 18:56:10 +02:00
file_put_contents(PATH_DATABASES.'categories.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX);
2015-08-31 03:18:06 +02:00
// File tags.php
2017-05-17 18:48:51 +02:00
$data = array(
'bludit'=>array('name'=>'Bludit', 'list'=>array('welcome')),
'cms'=>array('name'=>'CMS', 'list'=>array('welcome')),
'flat-files'=>array('name'=>'Flat files', 'list'=>array('welcome'))
2015-08-04 05:10:12 +02:00
);
2017-05-17 18:48:51 +02:00
file_put_contents(PATH_DATABASES.'tags.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX);
2015-08-31 03:18:06 +02:00
2018-02-25 17:25:10 +01:00
// File plugins/simplemde/db.php
2015-11-16 05:20:58 +01:00
file_put_contents(
2018-02-25 17:25:10 +01:00
PATH_PLUGINS_DATABASES.'simplemde'.DS.'db.php',
2015-11-16 05:20:58 +01:00
$dataHead.json_encode(
array(
'position'=>0,
2018-02-25 17:25:10 +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-11-16 05:20:58 +01:00
),
JSON_PRETTY_PRINT),
LOCK_EX
);
2018-02-25 17:25:10 +01:00
// File plugins/about/db.php
2015-08-29 07:02:09 +02:00
file_put_contents(
2018-02-25 17:25:10 +01:00
PATH_PLUGINS_DATABASES.'about'.DS.'db.php',
2015-08-29 07:02:09 +02:00
$dataHead.json_encode(
array(
2018-02-25 17:25:10 +01:00
'position'=>1,
'label'=>$Language->get('About'),
'text'=>$Language->get('this-is-a-brief-description-of-yourself-our-your-site')
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(
2017-09-05 23:46:45 +02:00
'position'=>2,
2015-08-31 03:18:06 +02:00
'label'=>$Language->get('Tags')
),
JSON_PRETTY_PRINT),
LOCK_EX
2015-08-29 07:02:09 +02:00
);
2018-02-25 17:25:10 +01:00
// Page create-your-own-content
$data = 'Title: '.$Language->get('example-page-1-title').PHP_EOL.'Content: '.PHP_EOL.$Language->get('example-page-1-content');
file_put_contents(PATH_PAGES.$Language->get('example-page-1-slug').DS.FILENAME, $data, LOCK_EX);
2016-01-17 22:11:20 +01:00
2018-02-25 17:25:10 +01:00
// Page set-up-your-new-site
$data = 'Title: '.$Language->get('example-page-2-title').PHP_EOL.'Content: '.PHP_EOL.$Language->get('example-page-2-content');
file_put_contents(PATH_PAGES.$Language->get('example-page-2-slug').DS.FILENAME, $data, LOCK_EX);
2015-05-07 03:00:01 +02:00
2018-02-25 17:25:10 +01:00
// Page follow-bludit
$data = 'Title: '.$Language->get('example-page-3-title').PHP_EOL.'Content: '.PHP_EOL.$Language->get('example-page-3-content');
file_put_contents(PATH_PAGES.$Language->get('example-page-3-slug').DS.FILENAME, $data, LOCK_EX);
2015-05-07 03:00:01 +02:00
2018-02-25 17:25:10 +01:00
// Page about
$data = 'Title: '.$Language->get('example-page-4-title').PHP_EOL.'Content: '.PHP_EOL.$Language->get('example-page-4-content');
file_put_contents(PATH_PAGES.$Language->get('example-page-4-slug').DS.FILENAME, $data, LOCK_EX);
2015-08-04 05:10:12 +02:00
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
2017-05-17 18:48:51 +02:00
if( strlen($args['password']) < 6 ) {
return '<div>'.$Language->g('Password must be at least 6 characters long').'</div>';
2015-08-04 05:10:12 +02:00
}
// Sanitize email
2018-02-25 17:25:10 +01:00
//$email = sanitize::email($args['email']);
2015-05-15 00:07:45 +02:00
2015-08-04 05:10:12 +02:00
// Install Bludit
2018-02-25 17:25:10 +01:00
install($args['password'], '', $args['timezone']);
2015-08-04 05:10:12 +02:00
return true;
2015-05-15 00:07:45 +02:00
}
2016-10-10 23:08:00 +02:00
function redirect($url) {
if(!headers_sent()) {
header("Location:".$url, TRUE, 302);
exit;
}
exit('<meta http-equiv="refresh" content="0; url="'.$url.'">');
}
2015-05-15 00:07:45 +02:00
// ============================================================================
// MAIN
// ============================================================================
2015-08-04 05:10:12 +02:00
$error = '';
if( alreadyInstalled() ) {
2017-05-17 18:48:51 +02:00
exit('Bludit is already installed');
2015-05-15 00:07:45 +02:00
}
2016-10-10 23:08:00 +02:00
if( isset($_GET['demo']) ) {
install('demo123', '', 'UTC');
redirect(HTML_PATH_ROOT);
}
2015-08-04 05:10:12 +02:00
2016-10-10 23:08:00 +02:00
if( $_SERVER['REQUEST_METHOD'] == 'POST' ) {
$error = checkPOST($_POST);
if($error===true) {
redirect(HTML_PATH_ROOT);
2015-08-04 05:10:12 +02:00
}
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>
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 -->
2017-07-22 14:21:13 +02:00
<link rel="shortcut icon" type="image/x-icon" href="bl-kernel/admin/themes/default/img/favicon.png?version=<?php echo time() ?>">
2015-05-15 00:07:45 +02:00
2015-10-24 01:23:33 +02:00
<!-- CSS -->
2017-07-13 20:06:39 +02:00
<link rel="stylesheet" type="text/css" href="bl-kernel/admin/themes/default/css/uikit/uikit.almost-flat.min.css?version=<?php echo time() ?>">
<link rel="stylesheet" type="text/css" href="bl-kernel/admin/themes/default/css/installer.css?version=<?php echo time() ?>">
2017-08-06 22:09:24 +02:00
<link rel="stylesheet" type="text/css" href="bl-kernel/css/font-awesome/css/font-awesome.min.css?version=<?php echo time() ?>">
2015-10-24 01:23:33 +02:00
<!-- Javascript -->
2017-07-13 20:06:39 +02:00
<script charset="utf-8" src="bl-kernel/js/jquery.min.js?version=<?php echo time() ?>"></script>
<script charset="utf-8" src="bl-kernel/admin/themes/default/js/uikit/uikit.min.js?version=<?php echo time() ?>"></script>
<script charset="utf-8" src="bl-kernel/admin/themes/default/js/jstz.min.js?version=<?php echo time() ?>"></script>
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
2017-05-17 18:48:51 +02:00
if(!empty($system)) {
foreach($system as $values) {
2015-10-24 01:23:33 +02:00
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">
2017-07-13 20:06:39 +02:00
<input type="hidden" name="timezone" id="jstimezone" value="UTC">
2015-10-24 01:23:33 +02:00
<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">
<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();
2017-09-06 20:11:28 +02:00
foreach($htmlOptions as $fname=>$native) {
echo '<option value="'.$fname.'"'.( ($finalLanguage===$fname)?' selected="selected"':'').'>'.$native.'</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
// 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>
2017-05-03 21:10:03 +02:00
</html>