| Server IP : 188.114.96.2 / Your IP : 104.23.197.231 Web Server : Apache/2.4.59 (Debian) System : Linux EDL-STRETCH 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64 User : edlftp ( 1002) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/nicolasj/www/blog.ecoledelangues.be/wp-content/plugins/redirection/models/ |
Upload File : |
<?php
class Redirection_Request {
public static function get_server_name() {
$host = '';
if ( isset( $_SERVER['HTTP_HOST'] ) ) {
$host = $_SERVER['HTTP_HOST'];
}
if ( isset( $_SERVER['SERVER_NAME'] ) ) {
$host = $_SERVER['SERVER_NAME'];
}
return apply_filters( 'redirection_request_server', $host );
}
public static function get_request_url() {
$url = '';
if ( isset( $_SERVER['REQUEST_URI'] ) ) {
$url = $_SERVER['REQUEST_URI'];
}
return apply_filters( 'redirection_request_url', stripslashes( $url ) );
}
public static function get_user_agent() {
$agent = '';
if ( isset( $_SERVER['HTTP_USER_AGENT'] ) ) {
$agent = $_SERVER['HTTP_USER_AGENT'];
}
return apply_filters( 'redirection_request_agent', $agent );
}
public static function get_referrer() {
$referrer = '';
if ( isset( $_SERVER['HTTP_REFERER'] ) ) {
$referrer = $_SERVER['HTTP_REFERER'];
}
return apply_filters( 'redirection_request_referrer', $referrer );
}
public static function get_ip() {
$ip = '';
if ( isset( $_SERVER['HTTP_CF_CONNECTING_IP'] ) ) {
$ip = $_SERVER['HTTP_CF_CONNECTING_IP'];
} elseif ( isset( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
$ip = explode( ',', $_SERVER['HTTP_X_FORWARDED_FOR'] );
$ip = array_shift( $ip );
} elseif ( isset( $_SERVER['REMOTE_ADDR'] ) ) {
$ip = $_SERVER['REMOTE_ADDR'];
}
// Convert to binary
$ip = @inet_pton( trim( $ip ) );
if ( $ip !== false ) {
$ip = @inet_ntop( $ip ); // Convert back to string
}
return apply_filters( 'redirection_request_ip', $ip ? $ip : '' );
}
public static function get_cookie( $cookie ) {
if ( isset( $_COOKIE[ $cookie ] ) ) {
return apply_filters( 'redirection_request_cookie', $_COOKIE[ $cookie ], $cookie );
}
return false;
}
public static function get_header( $name ) {
$name = 'HTTP_' . strtoupper( $name );
$name = str_replace( '-', '_', $name );
if ( isset( $_SERVER[ $name ] ) ) {
return apply_filters( 'redirection_request_header', $_SERVER[ $name ], $name );
}
return false;
}
}