bludit/install.php

694 lines
20 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.6', '<')) {
$errorText = 'Current PHP version '.phpversion().', you need > 5.6.';
2018-06-25 23:17:43 +02:00
error_log('[ERROR] '.$errorText, 0);
exit($errorText);
2015-11-09 00:26:19 +01:00
}
2017-01-10 17:43:38 +01:00
// Check PHP modules
2018-06-25 23:17:43 +02:00
$modulesRequired = array('mbstring', 'json', 'gd', 'dom');
$modulesRequiredExit = false;
$modulesRequiredMissing = '';
foreach ($modulesRequired as $module) {
if (!extension_loaded($module)) {
$errorText = 'PHP module <b>'.$module.'</b> is not installed.';
error_log('[ERROR] '.$errorText, 0);
$modulesRequiredExit = true;
$modulesRequiredMissing .= $errorText.PHP_EOL;
}
2017-01-10 17:43:38 +01:00
}
2018-06-25 23:17:43 +02:00
if ($modulesRequiredExit) {
echo 'PHP modules missing:';
echo $modulesRequiredMissing;
echo '';
echo '<a href="https://docs.bludit.com/en/getting-started/requirements">Please read Bludit requirements</a>.';
exit(0);
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);
2018-09-05 22:55:14 +02:00
define('PATH_WORKSPACES', PATH_CONTENT.'workspaces'.DS);
2015-08-04 05:10:12 +02:00
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);
2018-10-07 15:54:28 +02:00
define('PATH_UPLOADS_PAGES', PATH_UPLOADS.'pages'.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
2018-06-25 23:17:43 +02:00
// Directory permissions
define('DIR_PERMISSIONS', 0755);
2016-01-21 01:29:01 +01:00
2018-06-25 23:17:43 +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');
include(PATH_KERNEL.'language.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;
}
}
2018-08-08 00:16:35 +02:00
$L = $language = new Language($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
{
2018-06-25 23:17:43 +02:00
$output = array();
2015-08-04 05:10:12 +02:00
// 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-09-05 22:55:14 +02:00
# Deny direct access to the next directories
2018-09-18 23:59:38 +02:00
RewriteRule ^bl-content/(databases|workspaces|pages|tmp)/.*$ - [R=404,L]
2018-03-02 15:10:48 +01:00
# All URL process by index.php
RewriteCond %{REQUEST_FILENAME} !-f
2019-05-17 20:28:48 +02:00
RewriteCond %{REQUEST_FILENAME} !-d
2018-03-02 15:10:48 +01:00
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';
2018-06-25 23:17:43 +02:00
error_log('[ERROR] '.$errorText, 0);
array_push($output, $errorText);
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.';
2018-06-25 23:17:43 +02:00
error_log('[ERROR] '.$errorText, 0);
array_push($output, $errorText);
2016-08-31 02:57:24 +02:00
}
2015-08-04 05:10:12 +02:00
}
2016-01-17 01:11:58 +01:00
// Try to create the directory content
2018-06-25 23:17:43 +02:00
@mkdir(PATH_CONTENT, DIR_PERMISSIONS, true);
2016-01-17 01:11:58 +01:00
// 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.';
2018-06-25 23:17:43 +02:00
error_log('[ERROR] '.$errorText, 0);
array_push($output, $errorText);
2015-08-04 05:10:12 +02:00
}
2018-06-25 23:17:43 +02:00
return $output;
2015-05-05 03:00:01 +02:00
}
2018-06-25 23:17:43 +02:00
// Install Bludit
function install($adminPassword, $timezone)
2015-05-15 00:07:45 +02:00
{
global $L;
2015-08-07 04:13:55 +02:00
2018-06-25 23:17:43 +02: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
// ============================================================================
2018-07-07 12:04:34 +02:00
// Directories for initial pages
$pagesToInstall = array('example-page-1-slug', 'example-page-2-slug', 'example-page-3-slug', 'example-page-4-slug');
foreach ($pagesToInstall as $page) {
if (!mkdir(PATH_PAGES.$L->get($page), DIR_PERMISSIONS, true)) {
$errorText = 'Error when trying to created the directory=>'.PATH_PAGES.$L->get($page);
2018-07-07 12:04:34 +02:00
error_log('[ERROR] '.$errorText, 0);
}
2018-06-25 23:17:43 +02:00
}
2018-07-07 12:04:34 +02:00
// Directories for initial plugins
2019-01-28 22:11:59 +01:00
$pluginsToInstall = array('tinymce', 'about', 'simple-stats', 'robots', 'canonical');
2018-07-07 12:04:34 +02:00
foreach ($pluginsToInstall as $plugin) {
if (!mkdir(PATH_PLUGINS_DATABASES.$plugin, DIR_PERMISSIONS, true)) {
$errorText = 'Error when trying to created the directory=>'.PATH_PLUGINS_DATABASES.$plugin;
error_log('[ERROR] '.$errorText, 0);
}
2015-11-16 05:20:58 +01:00
}
2018-07-07 12:04:34 +02:00
// Directories for upload files
2018-06-25 23:17:43 +02:00
if (!mkdir(PATH_UPLOADS_PROFILES, DIR_PERMISSIONS, true)) {
2015-11-16 05:20:58 +01:00
$errorText = 'Error when trying to created the directory=>'.PATH_UPLOADS_PROFILES;
2018-06-25 23:17:43 +02:00
error_log('[ERROR] '.$errorText, 0);
2015-08-04 05:10:12 +02:00
}
2018-06-25 23:17:43 +02:00
if (!mkdir(PATH_UPLOADS_THUMBNAILS, DIR_PERMISSIONS, true)) {
2017-05-17 18:48:51 +02:00
$errorText = 'Error when trying to created the directory=>'.PATH_UPLOADS_THUMBNAILS;
2018-06-25 23:17:43 +02:00
error_log('[ERROR] '.$errorText, 0);
2016-05-26 23:48:41 +02:00
}
2018-06-25 23:17:43 +02:00
if (!mkdir(PATH_TMP, DIR_PERMISSIONS, true)) {
2017-05-17 18:48:51 +02:00
$errorText = 'Error when trying to created the directory=>'.PATH_TMP;
2018-06-25 23:17:43 +02:00
error_log('[ERROR] '.$errorText, 0);
2016-01-03 22:04:54 +01:00
}
2018-09-05 22:55:14 +02:00
if (!mkdir(PATH_WORKSPACES, DIR_PERMISSIONS, true)) {
$errorText = 'Error when trying to created the directory=>'.PATH_WORKSPACES;
error_log('[ERROR] '.$errorText, 0);
}
if (!mkdir(PATH_UPLOADS_PAGES, DIR_PERMISSIONS, true)) {
$errorText = 'Error when trying to created the directory=>'.PATH_UPLOADS_PAGES;
error_log('[ERROR] '.$errorText, 0);
}
2015-08-04 05:10:12 +02:00
// ============================================================================
// Create files
// ============================================================================
$dataHead = "<?php defined('BLUDIT') or die('Bludit CMS.'); ?>".PHP_EOL;
2018-07-07 12:04:34 +02:00
$data = array();
2018-08-27 22:19:42 +02:00
$slugs = array();
$nextDate = $currentDate;
2018-07-07 12:04:34 +02:00
foreach ($pagesToInstall as $page) {
$slug = $page;
$title = Text::replace('slug','title', $slug);
$content = Text::replace('slug','content', $slug);
$nextDate = Date::offset($nextDate, DB_DATE_FORMAT, '-1 minute');
$data[$L->get($slug)]= array(
'title'=>$L->get($title),
2018-02-25 17:25:10 +01:00
'description'=>'',
2017-05-17 18:48:51 +02:00
'username'=>'admin',
'tags'=>array(),
2018-07-28 21:00:12 +02:00
'type'=>(($slug=='example-page-4-slug')?'static':'published'),
'date'=>$nextDate,
2017-05-17 18:48:51 +02:00
'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'=>'',
2018-08-27 22:19:42 +02:00
'category'=>'general',
2017-10-07 16:58:24 +02:00
'uuid'=>md5(uniqid()),
'parent'=>'',
'template'=>'',
'noindex'=>false,
'nofollow'=>false,
'noarchive'=>false
2018-07-07 12:04:34 +02:00
);
2018-08-27 22:19:42 +02:00
array_push($slugs, $slug);
file_put_contents(PATH_PAGES.$L->get($slug).DS.FILENAME, $L->get($content), LOCK_EX);
2018-07-07 12:04:34 +02:00
}
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
2018-06-25 23:17:43 +02:00
// If Bludit is not installed inside a folder, the URL doesn't need finish with /
2017-05-30 20:28:55 +02:00
// 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',
'slogan'=>$L->get('welcome-to-bludit'),
'description'=>$L->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'=>$L->currentLanguage(),
'locale'=>$L->locale(),
2015-10-24 01:23:33 +02:00
'timezone'=>$timezone,
2018-02-25 17:25:10 +01:00
'theme'=>'alternative',
2018-06-24 13:37:45 +02:00
'adminTheme'=>'booty',
2015-08-04 05:10:12 +02:00
'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/',
2018-03-06 19:52:06 +01:00
'uriBlog'=>'',
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'=>'',
'github'=> 'https://github.com/bludit',
2018-06-24 13:37:45 +02:00
'instagram'=>'',
'gitlab'=>'',
'linkedin'=>'',
'dateFormat'=>'F j, Y',
2018-07-07 12:04:34 +02:00
'extremeFriendly'=>true,
2018-07-28 21:00:12 +02:00
'autosaveInterval'=>2,
'titleFormatHomepage'=>'{{site-slogan}} | {{site-title}}',
'titleFormatPages'=>'{{page-title}} | {{site-title}}',
'titleFormatCategory'=>'{{category-name}} | {{site-title}}',
'titleFormatTag'=>'{{tag-name}} | {{site-title}}',
'imageRestrict'=>true,
'imageRelativeToAbsolute'=>false
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(
2018-07-28 21:00:12 +02:00
'nickname'=>'Admin',
'firstName'=>$L->get('Administrator'),
2017-09-05 23:46:45 +02:00
'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'=>'',
2018-07-28 21:00:12 +02:00
'instagram'=>'',
'codepen'=>'',
'linkedin'=>'',
'github'=>'',
'gitlab'=>''
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(
2018-08-27 22:19:42 +02:00
'general'=>array('name'=>'General', 'description'=>'', 'template'=>'', 'list'=>$slugs),
2018-08-02 22:33:53 +02:00
'music'=>array('name'=>'Music', 'description'=>'', 'template'=>'', 'list'=>array()),
'videos'=>array('name'=>'Videos', 'description'=>'', 'template'=>'', '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(
2018-11-10 15:24:51 +01:00
'bludit'=>array('name'=>'Bludit', 'description'=>'', 'template'=>'', 'list'=>array('follow-bludit')),
'cms'=>array('name'=>'CMS', 'description'=>'', 'template'=>'', 'list'=>array('follow-bludit')),
'flat-files'=>array('name'=>'Flat files', 'description'=>'', 'template'=>'', 'list'=>array('follow-bludit'))
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/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'=>$L->get('About'),
'text'=>$L->get('this-is-a-brief-description-of-yourself-our-your-site')
2015-08-29 07:02:09 +02:00
),
JSON_PRETTY_PRINT),
LOCK_EX
);
2018-06-25 23:17:43 +02:00
// File plugins/simple-stats/db.php
file_put_contents(
PATH_PLUGINS_DATABASES.'simple-stats'.DS.'db.php',
$dataHead.json_encode(
array(
'numberOfDays'=>7,
'label'=>$L->get('Visits'),
2018-06-25 23:17:43 +02:00
'excludeAdmins'=>false,
'position'=>1
),
JSON_PRETTY_PRINT),
LOCK_EX
);
2018-09-05 22:55:14 +02:00
mkdir(PATH_WORKSPACES.'simple-stats', DIR_PERMISSIONS, true);
2018-06-25 23:17:43 +02:00
// File plugins/tinymce/db.php
2018-06-25 23:17:43 +02:00
file_put_contents(
PATH_PLUGINS_DATABASES.'tinymce'.DS.'db.php',
2018-06-25 23:17:43 +02:00
$dataHead.json_encode(
array(
2018-07-07 12:04:34 +02:00
'position'=>1,
2019-05-18 14:04:23 +02:00
'toolbar1'=>'formatselect bold italic forecolor backcolor removeformat | bullist numlist table | blockquote alignleft aligncenter alignright | link unlink pagebreak image code',
'toolbar2'=>'',
2019-05-18 14:04:23 +02:00
'plugins'=>'code autolink image link pagebreak advlist lists textpattern table'
2018-06-25 23:17:43 +02:00
),
JSON_PRETTY_PRINT),
LOCK_EX
);
2019-01-28 22:11:59 +01:00
// File plugins/canonical/db.php
file_put_contents(
PATH_PLUGINS_DATABASES.'canonical'.DS.'db.php',
$dataHead.json_encode(
array(
'position'=>1
),
JSON_PRETTY_PRINT),
LOCK_EX
);
2018-07-17 23:58:01 +02:00
// File plugins/robots/db.php
file_put_contents(
PATH_PLUGINS_DATABASES.'robots'.DS.'db.php',
$dataHead.json_encode(
array(
2018-09-16 19:26:23 +02:00
'position'=>1,
'robotstxt'=>'User-agent: *'.PHP_EOL.'Allow: /'
2018-07-17 23:58:01 +02:00
),
JSON_PRETTY_PRINT),
LOCK_EX
);
2015-08-04 05:10:12 +02:00
return true;
}
2016-10-10 23:08:00 +02:00
function redirect($url) {
2018-06-25 23:17:43 +02:00
if (!headers_sent()) {
2016-10-10 23:08:00 +02:00
header("Location:".$url, TRUE, 302);
exit;
}
exit('<meta http-equiv="refresh" content="0; url="'.$url.'">');
}
2015-05-15 00:07:45 +02:00
// ============================================================================
// MAIN
// ============================================================================
2018-06-25 23:17:43 +02:00
if (alreadyInstalled()) {
$errorText = 'Bludit is already installed ;)';
error_log('[ERROR] '.$errorText, 0);
exit($errorText);
2015-05-15 00:07:45 +02:00
}
2018-06-25 23:17:43 +02:00
// Install a demo, just call the install.php?demo=true
if (isset($_GET['demo'])) {
install('demo123', 'UTC');
2016-10-10 23:08:00 +02:00
redirect(HTML_PATH_ROOT);
}
2015-08-04 05:10:12 +02:00
2018-06-25 23:17:43 +02:00
// Install by POST method
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
if (Text::length($_POST['password'])<6) {
$errorText = $L->g('password-must-be-at-least-6-characters-long');
error_log('[ERROR] '.$errorText, 0);
} else {
install($_POST['password'], $_POST['timezone']);
redirect(HTML_PATH_ROOT);
}
2015-05-15 00:07:45 +02:00
}
?>
2018-06-25 23:17:43 +02:00
<!DOCTYPE html>
<html>
2015-05-15 00:07:45 +02:00
<head>
<title><?php echo $L->get('Bludit Installer') ?></title>
2018-06-25 23:17:43 +02:00
<meta charset="<?php echo CHARSET ?>">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="robots" content="noindex,nofollow">
2015-05-15 00:07:45 +02:00
2015-10-24 01:23:33 +02:00
<!-- Favicon -->
2020-02-08 19:19:15 +01:00
<link rel="icon" type="image/png" href="bl-kernel/img/favicon.png?version=<?php echo time() ?>">
2015-05-15 00:07:45 +02:00
2015-10-24 01:23:33 +02:00
<!-- CSS -->
2018-07-02 00:24:53 +02:00
<link rel="stylesheet" type="text/css" href="bl-kernel/css/bootstrap.min.css?version=<?php echo time() ?>">
2018-06-25 23:17:43 +02:00
<link rel="stylesheet" type="text/css" href="bl-kernel/admin/themes/booty/css/bludit.css?version=<?php echo time() ?>">
2015-10-24 01:23:33 +02:00
<!-- Javascript -->
2018-07-02 00:24:53 +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/js/bootstrap.bundle.min.js?version=<?php echo time() ?>"></script>
2018-07-02 00:24:53 +02:00
<script charset="utf-8" src="bl-kernel/js/jstz.min.js?version=<?php echo time() ?>"></script>
2015-10-24 01:23:33 +02:00
</head>
2018-06-25 23:17:43 +02:00
<body class="login">
<div class="container">
<div class="row justify-content-md-center pt-5">
2018-08-01 13:52:59 +02:00
<div class="col-md-4 pt-5">
<h1 class="text-center mb-5 mt-5 font-weight-normal text-uppercase" style="color: #555;"><?php echo $L->get('Bludit Installer') ?></h1>
2018-06-25 23:17:43 +02:00
<?php
$system = checkSystem();
if (!empty($system)) {
2018-09-26 17:55:19 +02:00
foreach ($system as $error) {
echo '
<table class="table">
<tbody>
<tr>
<th>'.$error.'</th>
</tr>
</tbody>
</table>
';
2018-06-25 23:17:43 +02:00
}
2015-10-24 01:23:33 +02:00
}
2018-06-25 23:17:43 +02:00
elseif (isset($_GET['language']))
{
?>
2018-08-08 00:16:35 +02:00
<p><?php echo $L->get('choose-a-password-for-the-user-admin') ?></p>
2018-06-25 23:17:43 +02:00
<?php if (!empty($errorText)): ?>
<div class="alert alert-danger"><?php echo $errorText ?></div>
<?php endif ?>
2018-06-25 23:17:43 +02:00
<form id="jsformInstaller" method="post" action="" autocomplete="off">
<input type="hidden" name="timezone" id="jstimezone" value="UTC">
<div class="form-group">
<input type="text" value="admin" class="form-control form-control-lg" id="jsusername" name="username" placeholder="Username" disabled>
</div>
<div class="form-group mb-0">
<input type="password" class="form-control form-control-lg" id="jspassword" name="password" placeholder="<?php $L->p('Password') ?>">
2018-06-25 23:17:43 +02:00
</div>
<div id="jsshowPassword" style="cursor: pointer;" class="text-center pt-0 text-muted"><?php $L->p('Show password') ?></div>
2018-06-25 23:17:43 +02:00
<div class="form-group mt-4">
<button type="submit" class="btn btn-primary btn-lg mr-2 w-100" name="install"><?php $L->p('Install') ?></button>
2018-06-25 23:17:43 +02:00
</div>
</form>
<?php
2015-08-04 05:10:12 +02:00
}
2018-06-25 23:17:43 +02:00
else
{
?>
<form id="jsformLanguage" method="get" action="" autocomplete="off">
<label for="jslanguage"><?php echo $L->get('Choose your language') ?></label>
2018-06-25 23:17:43 +02:00
<select id="jslanguage" name="language" class="form-control form-control-lg">
<?php
$htmlOptions = getLanguageList();
foreach($htmlOptions as $fname=>$native) {
echo '<option value="'.$fname.'"'.( ($finalLanguage===$fname)?' selected="selected"':'').'>'.$native.'</option>';
}
?>
</select>
<div class="form-group mt-4">
<button type="submit" class="btn btn-primary btn-lg mr-2 w-100"><?php $L->p('Next') ?></button>
2018-06-25 23:17:43 +02:00
</div>
</form>
<?php
2015-08-04 05:10:12 +02:00
}
2018-06-25 23:17:43 +02:00
?>
2015-10-24 01:23:33 +02:00
</div>
</div>
2015-08-17 02:24:22 +02:00
</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>
2018-06-24 13:37:45 +02:00
</html>