Browse Source

Updated check.php wo work with v2.5

Tobias Reich 11 years ago
parent
commit
95a09df4b8
1 changed files with 50 additions and 41 deletions
  1. 50 41
      plugins/check.php

+ 50 - 41
plugins/check.php

@@ -1,34 +1,41 @@
 <?php
 
-/**
- * @name		check.php
- * @author		Tobias Reich
- * @copyright	2014 by Tobias Reich
- * @description	This file takes a look at your Lychee-configuration and displays all errors it can find.
- */
-
-define('LYCHEE', true);
+###
+# @name		Check Plugin
+# @author		Tobias Reich
+# @copyright	2014 by Tobias Reich
+# @description	This file takes a look at your Lychee-configuration and displays all errors it can find.
+###
+
+# Location
+$lychee = __DIR__ . '/../';
+
+# Load requirements
+require($lychee . 'php/define.php');
+require($lychee . 'php/autoload.php');
+
+# Set content
 header('content-type: text/plain');
 
-// Declare
+# Declare
 $error = '';
 
-// Include
-if (!file_exists('../data/config.php')) exit('Error 001: Configuration not found. Please install Lychee first.');
-require('../data/config.php');
-require('../php/modules/settings.php');
+# Load config
+if (!file_exists(LYCHEE_CONFIG_FILE)) exit('Error 001: Configuration not found. Please install Lychee first.');
+require(LYCHEE_CONFIG_FILE);
 
-// Database
+# Database
 $database = new mysqli($dbHost, $dbUser, $dbPassword, $dbName);
-if (mysqli_connect_errno()!=0)		$error .= ('Error 100: ' . mysqli_connect_errno() . ': ' . mysqli_connect_error() . '' . PHP_EOL);
+if (mysqli_connect_errno()!=0) $error .= ('Error 100: ' . mysqli_connect_errno() . ': ' . mysqli_connect_error() . '' . PHP_EOL);
 
-// Get Settings
-$settings = getSettings();
+# Load settings
+$settings = new Settings($database);
+$settings = $settings->get();
 
-// PHP Version
+# PHP Version
 if (floatval(phpversion())<5.2)		$error .= ('Error 200: Please upgrade to PHP 5.2 or higher!' . PHP_EOL);
 
-// Extensions
+# Extensions
 if (!extension_loaded('exif'))		$error .= ('Error 300: PHP exif extension not activated' . PHP_EOL);
 if (!extension_loaded('mbstring'))	$error .= ('Error 301: PHP mbstring extension not activated' . PHP_EOL);
 if (!extension_loaded('gd'))		$error .= ('Error 302: PHP gd extension not activated' . PHP_EOL);
@@ -36,35 +43,37 @@ if (!extension_loaded('mysqli'))	$error .= ('Error 303: PHP mysqli extension not
 if (!extension_loaded('json'))		$error .= ('Error 304: PHP json extension not activated' . PHP_EOL);
 if (!extension_loaded('zip'))		$error .= ('Error 305: PHP zip extension not activated' . PHP_EOL);
 
-// Config
-if (!isset($dbName)||$dbName=='')	$error .= ('Error 400: No property for $dbName in config.php' . PHP_EOL);
-if (!isset($dbUser)||$dbUser=='')	$error .= ('Error 401: No property for $dbUser in config.php' . PHP_EOL);
+# Config
+if (!isset($dbName)||$dbName==='')	$error .= ('Error 400: No property for $dbName in config.php' . PHP_EOL);
+if (!isset($dbUser)||$dbUser==='')	$error .= ('Error 401: No property for $dbUser in config.php' . PHP_EOL);
 if (!isset($dbPassword))			$error .= ('Error 402: No property for $dbPassword in config.php' . PHP_EOL);
-if (!isset($dbHost)||$dbHost=='')	$error .= ('Error 403: No property for $dbHost in config.php' . PHP_EOL);
-
-// Database Config
-if (!$settings['username']||$settings['username']=='')			$error .= ('Error 404: Username empty or not set' . PHP_EOL);
-if (!$settings['password']||$settings['password']=='')			$error .= ('Error 405: Password empty or not set' . PHP_EOL);
-if (!$settings['thumbQuality']||$settings['thumbQuality']=='')	$error .= ('Error 406: No or wrong property for thumbQuality' . PHP_EOL);
-if (!$settings['sorting']||$settings['sorting']=='')			$error .= ('Error 407: Wrong property for sorting' . PHP_EOL);
-if (!$settings['checkForUpdates']||($settings['checkForUpdates']!='0'&&$settings['checkForUpdates']!='1')) $error .= ('Error 408: No or wrong property for checkForUpdates' . PHP_EOL);
-
-// Permissions
-if (substr(sprintf('%o', @fileperms('../uploads/big/')), -4)!='0777')	$error .= ('Error 500: Wrong permissions for \'uploads/big\' (777 required)' . PHP_EOL);
-if (substr(sprintf('%o', @fileperms('../uploads/thumb/')), -4)!='0777')	$error .= ('Error 501: Wrong permissions for \'uploads/thumb\' (777 required)' . PHP_EOL);
-if (substr(sprintf('%o', @fileperms('../uploads/import/')), -4)!='0777')$error .= ('Error 502: Wrong permissions for \'uploads/import\' (777 required)' . PHP_EOL);
-if (substr(sprintf('%o', @fileperms('../uploads/')), -4)!='0777')		$error .= ('Error 503: Wrong permissions for \'uploads/\' (777 required)' . PHP_EOL);
-if (substr(sprintf('%o', @fileperms('../data/')), -4)!='0777')			$error .= ('Error 504: Wrong permissions for \'data/\' (777 required)' . PHP_EOL);
-
+if (!isset($dbHost)||$dbHost==='')	$error .= ('Error 403: No property for $dbHost in config.php' . PHP_EOL);
+
+# Settings
+if (!$settings['username']||$settings['username']=='')			$error .= ('Error 404: Username empty or not set in database' . PHP_EOL);
+if (!$settings['password']||$settings['password']=='')			$error .= ('Error 405: Password empty or not set in database' . PHP_EOL);
+if (!$settings['thumbQuality']||$settings['thumbQuality']=='')	$error .= ('Error 406: No or wrong property for thumbQuality in database' . PHP_EOL);
+if (!$settings['sorting']||$settings['sorting']=='')			$error .= ('Error 407: Wrong property for sorting in database' . PHP_EOL);
+if (!$settings['plugins'])										$error .= ('Error 408: No property for plugins in database' . PHP_EOL);
+if (!$settings['checkForUpdates']||($settings['checkForUpdates']!='0'&&$settings['checkForUpdates']!='1')) $error .= ('Error 409: No or wrong property for checkForUpdates in database' . PHP_EOL);
+
+# Permissions
+if (substr(sprintf('%o', @fileperms(LYCHEE_UPLOADS_BIG)), -4)!='0777')		$error .= ('Error 500: Wrong permissions for \'uploads/big\' (777 required)' . PHP_EOL);
+if (substr(sprintf('%o', @fileperms(LYCHEE_UPLOADS_THUMB)), -4)!='0777')	$error .= ('Error 501: Wrong permissions for \'uploads/thumb\' (777 required)' . PHP_EOL);
+if (substr(sprintf('%o', @fileperms(LYCHEE_UPLOADS_IMPORT)), -4)!='0777')	$error .= ('Error 502: Wrong permissions for \'uploads/import\' (777 required)' . PHP_EOL);
+if (substr(sprintf('%o', @fileperms(LYCHEE_UPLOADS)), -4)!='0777')			$error .= ('Error 503: Wrong permissions for \'uploads/\' (777 required)' . PHP_EOL);
+if (substr(sprintf('%o', @fileperms(LYCHEE_DATA)), -4)!='0777')				$error .= ('Error 504: Wrong permissions for \'data/\' (777 required)' . PHP_EOL);
+
+# Output
 if ($error=='') echo('Everything is fine. Lychee should work without problems!' . PHP_EOL . PHP_EOL); else echo $error;
 
-// Check dropboxKey
+# Check dropboxKey
 if (!$settings['dropboxKey'])	echo('Warning: Dropbox import not working. No property for dropboxKey.' . PHP_EOL);
 
-// Check php.ini Settings
+# Check php.ini Settings
 if (ini_get('max_execution_time')<200&&ini_set('upload_max_filesize', '20M')===false) echo('Warning: You may experience problems when uploading a large amount of photos. Take a look in the FAQ for details.' . PHP_EOL);
 
-// Check mysql version
+# Check mysql version
 if ($database->server_version<50500) echo('Warning: Lychee uses the GBK charset to avoid sql injections on your MySQL version. Please update to MySQL 5.5 or higher to enable UTF-8 support.' . PHP_EOL);
 
 ?>