2018-11-10 20:03:03 +01:00
|
|
|
<?php
|
2018-11-15 20:27:32 +01:00
|
|
|
/**
|
|
|
|
* This file is part of RSS-Bridge, a PHP project capable of generating RSS and
|
|
|
|
* Atom feeds for websites that don't have one.
|
|
|
|
*
|
|
|
|
* For the full license information, please view the UNLICENSE file distributed
|
|
|
|
* with this source code.
|
|
|
|
*
|
|
|
|
* @package Core
|
|
|
|
* @license http://unlicense.org/ UNLICENSE
|
|
|
|
* @link https://github.com/rss-bridge/rss-bridge
|
|
|
|
*/
|
2018-11-10 20:03:03 +01:00
|
|
|
|
2018-11-10 20:44:23 +01:00
|
|
|
/**
|
|
|
|
* Implements functions for debugging purposes. Debugging can be enabled by
|
2018-11-15 20:27:32 +01:00
|
|
|
* placing a file named DEBUG in {@see PATH_ROOT}.
|
2018-11-10 20:44:23 +01:00
|
|
|
*
|
|
|
|
* The file specifies a whitelist of IP addresses on which debug mode will be
|
|
|
|
* enabled. An empty file enables debug mode for everyone (highly discouraged
|
|
|
|
* for public servers!). Each line in the file specifies one client in the
|
|
|
|
* whitelist. For example:
|
|
|
|
*
|
2018-11-15 20:27:32 +01:00
|
|
|
* * `192.168.1.72`
|
|
|
|
* * `127.0.0.1`
|
|
|
|
* * `::1`
|
2018-11-10 20:44:23 +01:00
|
|
|
*
|
|
|
|
* Notice: If you are running RSS-Bridge on your local machine, you need to add
|
2018-11-15 20:27:32 +01:00
|
|
|
* localhost (either `127.0.0.1` for IPv4 or `::1` for IPv6) to your whitelist!
|
2018-11-10 20:44:23 +01:00
|
|
|
*
|
|
|
|
* Warning: In debug mode your server may display sensitive information! For
|
|
|
|
* security reasons it is recommended to whitelist only specific IP addresses.
|
|
|
|
*/
|
2018-11-10 20:03:03 +01:00
|
|
|
class Debug {
|
2018-11-10 20:44:23 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Indicates if debug mode is enabled.
|
2018-11-15 20:27:32 +01:00
|
|
|
*
|
|
|
|
* Do not access this property directly!
|
|
|
|
* Use {@see Debug::isEnabled()} instead.
|
|
|
|
*
|
|
|
|
* @var bool
|
2018-11-10 20:44:23 +01:00
|
|
|
*/
|
|
|
|
private static $enabled = false;
|
|
|
|
|
|
|
|
/**
|
2018-11-15 20:27:32 +01:00
|
|
|
* Indicates if debug mode is secure.
|
|
|
|
*
|
|
|
|
* Do not access this property directly!
|
|
|
|
* Use {@see Debug::isSecure()} instead.
|
|
|
|
*
|
|
|
|
* @var bool
|
2018-11-10 20:44:23 +01:00
|
|
|
*/
|
|
|
|
private static $secure = false;
|
|
|
|
|
|
|
|
/**
|
2018-11-15 20:27:32 +01:00
|
|
|
* Returns true if debug mode is enabled
|
|
|
|
*
|
|
|
|
* If debug mode is enabled, sets `display_errors = 1` and `error_reporting = E_ALL`
|
|
|
|
*
|
|
|
|
* @return bool True if enabled.
|
2018-11-10 20:44:23 +01:00
|
|
|
*/
|
|
|
|
public static function isEnabled() {
|
|
|
|
static $firstCall = true; // Initialized on first call
|
|
|
|
|
|
|
|
if($firstCall && file_exists(PATH_ROOT . 'DEBUG')) {
|
|
|
|
|
|
|
|
$debug_whitelist = trim(file_get_contents(PATH_ROOT . 'DEBUG'));
|
|
|
|
|
2018-11-15 20:28:26 +01:00
|
|
|
self::$enabled = empty($debug_whitelist) || in_array($_SERVER['REMOTE_ADDR'],
|
2018-11-10 20:44:23 +01:00
|
|
|
explode("\n", str_replace("\r", '', $debug_whitelist)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2018-11-15 20:28:26 +01:00
|
|
|
if(self::$enabled) {
|
2018-11-10 20:44:23 +01:00
|
|
|
ini_set('display_errors', '1');
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
|
2018-11-15 20:28:26 +01:00
|
|
|
self::$secure = !empty($debug_whitelist);
|
2018-11-10 20:44:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$firstCall = false; // Skip check on next call
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-11-15 20:28:26 +01:00
|
|
|
return self::$enabled;
|
2018-11-10 20:44:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-11-15 20:27:32 +01:00
|
|
|
* Returns true if debug mode is enabled only for specific IP addresses.
|
2018-11-10 20:44:23 +01:00
|
|
|
*
|
2018-11-15 20:27:32 +01:00
|
|
|
* Notice: The security flag is set by {@see Debug::isEnabled()}. If this
|
|
|
|
* function is called before {@see Debug::isEnabled()}, the default value is
|
|
|
|
* false!
|
2018-11-10 20:44:23 +01:00
|
|
|
*
|
2018-11-15 20:27:32 +01:00
|
|
|
* @return bool True if debug mode is secure
|
2018-11-10 20:44:23 +01:00
|
|
|
*/
|
|
|
|
public static function isSecure() {
|
2018-11-15 20:28:26 +01:00
|
|
|
return self::$secure;
|
2018-11-10 20:44:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a debug message to error_log if debug mode is enabled
|
2018-11-15 20:27:32 +01:00
|
|
|
*
|
|
|
|
* @param string $text The message to add to error_log
|
2018-11-10 20:44:23 +01:00
|
|
|
*/
|
2018-11-10 20:03:03 +01:00
|
|
|
public static function log($text) {
|
2018-11-15 20:28:26 +01:00
|
|
|
if(!self::isEnabled()) {
|
2018-11-10 20:03:03 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 3);
|
2018-11-16 20:19:50 +01:00
|
|
|
$calling = end($backtrace);
|
2018-11-10 20:03:03 +01:00
|
|
|
$message = $calling['file'] . ':'
|
|
|
|
. $calling['line'] . ' class '
|
|
|
|
. (isset($calling['class']) ? $calling['class'] : '<no-class>') . '->'
|
|
|
|
. $calling['function'] . ' - '
|
|
|
|
. $text;
|
|
|
|
|
|
|
|
error_log($message);
|
|
|
|
}
|
|
|
|
}
|