Config.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. ###
  3. # @name Database Module
  4. # @copyright 2015 by Tobias Reich
  5. ###
  6. if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
  7. final class Config extends Module {
  8. public static function create($host, $user, $password, $name = 'lychee', $prefix = '') {
  9. # Open a new connection to the MySQL server
  10. $connection = Database::connect($host, $user, $password);
  11. # Check if the connection was successful
  12. if ($connection===false) return 'Warning: Connection failed!';
  13. # Check if user can create the database before saving the configuration
  14. if (!Database::createDatabase($connection, $name)) return 'Warning: Creation failed!';
  15. # Escape data
  16. $host = mysqli_real_escape_string($connection, $host);
  17. $user = mysqli_real_escape_string($connection, $user);
  18. $password = mysqli_real_escape_string($connection, $password);
  19. $name = mysqli_real_escape_string($connection, $name);
  20. $prefix = mysqli_real_escape_string($connection, $prefix);
  21. # Save config.php
  22. $config = "<?php
  23. ###
  24. # @name Configuration
  25. # @author Tobias Reich
  26. # @copyright 2015 Tobias Reich
  27. ###
  28. if(!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
  29. # Database configuration
  30. \$dbHost = '$host'; # Host of the database
  31. \$dbUser = '$user'; # Username of the database
  32. \$dbPassword = '$password'; # Password of the database
  33. \$dbName = '$name'; # Database name
  34. \$dbTablePrefix = '$prefix'; # Table prefix
  35. ?>";
  36. # Save file
  37. if (file_put_contents(LYCHEE_CONFIG_FILE, $config)===false) return 'Warning: Could not create file!';
  38. return true;
  39. }
  40. public static function exists() {
  41. return file_exists(LYCHEE_CONFIG_FILE);
  42. }
  43. public static function get() {
  44. require(LYCHEE_CONFIG_FILE);
  45. return(array(
  46. 'host' => $dbHost,
  47. 'user' => $dbUser,
  48. 'password' => $dbPassword,
  49. 'name' => $dbName,
  50. 'prefix' => $dbTablePrefix
  51. ));
  52. }
  53. }
  54. ?>