isset( $details['ip'] ) && is_array( $details['ip'] ) ? $this->sanitize_ips( $details['ip'] ) : [] ); return $this->save_data( $details, $no_target_url, $data ); } private function sanitize_single_ip( $ip ) { $ip = @inet_pton( trim( $ip ) ); if ( $ip !== false ) { return @inet_ntop( $ip ); // Convert back to string } return false; } private function sanitize_ips( $ips ) { if ( is_array( $ips ) ) { $ips = array_map( array( $this, 'sanitize_single_ip' ), $ips ); return array_values( array_filter( array_unique( $ips ) ) ); } return array(); } public function get_target( $requested_url, $source_url, Red_Source_Flags $flags ) { $ip = Redirection_Request::get_ip(); $current_ip = @inet_pton( $ip ); $matched = array_filter( $this->ip, function( $ip ) use ( $current_ip ) { return @inet_pton( $ip ) === $current_ip; } ); $target = $this->get_matched_target( count( $matched ) > 0 ); if ( $flags->is_regex() && $target ) { return $this->get_target_regex_url( $source_url, $target, $requested_url, $flags ); } return $target; } public function get_data() { return array_merge( array( 'ip' => $this->ip, ), $this->get_from_data() ); } public function load( $values ) { $values = $this->load_data( $values ); $this->ip = $values['ip']; } }