index.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. ###
  3. # @name Log
  4. # @author Tobias Reich
  5. # @copyright 2015 by Tobias Reich
  6. # @description This file queries the database for log messages and displays them if present.
  7. ###
  8. namespace Log;
  9. use Mysqli;
  10. use Lychee\Modules\Database;
  11. use Lychee\Modules\Settings;
  12. $lychee = __DIR__ . '/../../';
  13. require($lychee . 'php/define.php');
  14. require($lychee . 'php/autoload.php');
  15. # Start the session
  16. session_start();
  17. # Set content
  18. header('content-type: text/plain');
  19. # Load config
  20. if (!file_exists(LYCHEE_CONFIG_FILE)) exit('Error 001: Configuration not found. Please install Lychee first.');
  21. require(LYCHEE_CONFIG_FILE);
  22. # Ensure that user is logged in
  23. if ((isset($_SESSION['login'])&&$_SESSION['login']===true)&&
  24. (isset($_SESSION['identifier'])&&$_SESSION['identifier']===Settings::get()['identifier'])) {
  25. # Result
  26. $query = Database::prepare(Database::get(), "SELECT FROM_UNIXTIME(time), type, function, line, text FROM ?", array(LYCHEE_TABLE_LOG));
  27. $result = Database::get()->query($query);
  28. # Output
  29. if ($result->num_rows===0) {
  30. echo('Everything looks fine, Lychee has not reported any problems!');
  31. } else {
  32. while($row = $result->fetch_row()) {
  33. # Encode result before printing
  34. $row = array_map('htmlentities', $row);
  35. # Format: time TZ - type - function(line) - text
  36. printf ("%s - %s - %s (%s) \t- %s\n", $row[0], $row[1], $row[2], $row[3], $row[4]);
  37. }
  38. }
  39. } else {
  40. # Don't go further if the user is not logged in
  41. echo('You have to be logged in to see the log.');
  42. exit();
  43. }
  44. ?>