# s2member/260917/src/includes/classes/ip-restrictions.inc.php

s2Member – Excellent for All Kinds of Memberships, Content Restriction Paywalls &amp; Member Access Subscriptions, version 260917. 302 lines.

- Page: https://pluginprobe.com/plugins/s2member/260917/code/src/includes/classes/ip-restrictions.inc.php
- Raw: https://pluginprobe.com/plugins/s2member/260917/raw/src/includes/classes/ip-restrictions.inc.php
- Modified: 2016-11-29T22:22:10+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/s2member/260917/code/src/includes/classes/ip-restrictions.inc.php#L10-L20`.

```php
<?php
// @codingStandardsIgnoreFile
/**
 * IP Restrictions.
 *
 * Copyright: © 2009-2011
 * {@link http://websharks-inc.com/ WebSharks, Inc.}
 * (coded in the USA)
 *
 * Released under the terms of the GNU General Public License.
 * You should have received a copy of the GNU General Public License,
 * along with this software. In the main directory, see: /licensing/
 * If not, see: {@link http://www.gnu.org/licenses/}.
 *
 * @package s2Member\IP_Restrictions
 * @since 3.5
 */
if(!defined('WPINC')) // MUST have WordPress.
    exit("Do not access this file directly.");

if(!class_exists("c_ws_plugin__s2member_ip_restrictions"))
{
    /**
     * IP Restrictions.
     *
     * @package s2Member\IP_Restrictions
     * @since 3.5
     */
    class c_ws_plugin__s2member_ip_restrictions
    {
        /**
         * Handles IP Restrictions.
         *
         * IP address details are stored as Transients.
         *
         * @package s2Member\IP_Restrictions
         * @since 3.5
         *
         * @param string $ip IP Address.
         * @param string $restriction Unique IP Restriction name/identifier. Such as a Username, or a unique access code.
         * @return bool True if IP Restrictions are OK, otherwise this function will exit script execution after issuing a warning.
         */
        public static function ip_restrictions_ok($ip = FALSE, $restriction = FALSE)
        {
            foreach(array_keys(get_defined_vars())as$__v)$__refs[$__v]=&$$__v;
            do_action("ws_plugin__s2member_before_ip_restrictions_ok", get_defined_vars());
            unset($__refs, $__v);

            if(!apply_filters("ws_plugin__s2member_disable_all_ip_restrictions", false, get_defined_vars())
                /* Also allow specific exclusions here. */ && !apply_filters("ws_plugin__s2member_disable_specific_ip_restriction", false, get_defined_vars())
                /* And enabled by site owner? */ && $GLOBALS["WS_PLUGIN__"]["s2member"]["o"]["max_ip_restriction"] /* And a valid ``$restriction``? */ && $restriction && is_string($restriction)
                /* Flag indicating that we ARE processing this IP Restriction. Useful in Hooks/Filters. */ && ($processing = true))
            {
                $prefix = /* s2Member Transient prefix for all IP Restrictions. */ "s2m_ipr_";
                $transient_entries = $prefix.md5("s2member_ip_restrictions_".$restriction."_entries");
                $transient_security_breach = $prefix.md5("s2member_ip_restrictions_".$restriction."_security_breach");

                // If you add Filters, use a string compatible with PHP's strtotime() function.
                $concurrency = apply_filters("ws_plugin__s2member_ip_restrictions__concurrency_time_per_ip", "30 days");

                $entries = (is_array($entries = get_transient($transient_entries))) ? $entries : array();

                foreach /* Auto-expire entries, based on time. */($entries as $_entry => $_time)
                    if /* Based on time. */($_time < strtotime("-".$concurrency))
                        unset /* Unset this entry value. */($entries[$_entry]);

                $ip = ($ip && is_string($ip)) ? $ip : /* Allow empty IPs. */ "empty";
                $entries[$ip] = /* Log entry. Add IP with entry time. */ strtotime("now");
                set_transient($transient_entries, $entries, 2 * (strtotime("+".$concurrency) - strtotime("now")));

                if /* Already breached security? */(get_transient($transient_security_breach))
                {
                    c_ws_plugin__s2member_no_cache::no_cache_constants(true);

                    status_header /* Send a 503 error status header; temporarily unavailable. */(503);
                    wp_clear_auth_cookie /* Clear authorization cookies; we need to log them out now. */();
                    header /* Content-Type text/html with UTF-8. */("Content-Type: text/html; charset=UTF-8");
                    while (@ob_end_clean ()); // Clean any existing output buffers.

                    $custom_template = (is_file (TEMPLATEPATH . "/" . "ip-restrictions.php")) ? TEMPLATEPATH . "/" . "ip-restrictions.php" : '';
                    $custom_template = (is_file (get_stylesheet_directory() . "/" . "ip-restrictions.php")) ? get_stylesheet_directory() . "/" . "ip-restrictions.php" : $custom_template;
                    $custom_template = (is_file (WP_CONTENT_DIR . "/" . "ip-restrictions.php")) ? WP_CONTENT_DIR . "/" . "ip-restrictions.php" :  $custom_template;

                    $msg_503 = trim(file_get_contents((($custom_template) ? $custom_template : dirname(dirname(__FILE__))."/templates/errors/ip-restrictions.php")));
                    $msg_503 = trim(((!$custom_template || !is_multisite() || !c_ws_plugin__s2member_utils_conds::is_multisite_farm() || is_main_site()) ? c_ws_plugin__s2member_utilities::evl($msg_503) : $msg_503));

                    foreach(array_keys(get_defined_vars())as$__v)$__refs[$__v]=&$$__v;
                    do_action("ws_plugin__s2member_during_ip_restrictions_ok_no", get_defined_vars());
                    unset($__refs, $__v);

					exit /* Clean exit with 503 error message. */($msg_503);
                }

                else if(count($entries) > $GLOBALS["WS_PLUGIN__"]["s2member"]["o"]["max_ip_restriction"])
                {
                    c_ws_plugin__s2member_no_cache::no_cache_constants(true);

                    set_transient // A security breach has just occurred. We need to set this Transient now.
                    ($transient_security_breach, 1, $GLOBALS["WS_PLUGIN__"]["s2member"]["o"]["max_ip_restriction_time"]);

                    status_header /* Send a 503 error status header; temporarily unavailable. */(503);
                    wp_clear_auth_cookie /* Clear authorization cookies; we need to log them out now. */();
                    header /* Content-Type text/html with UTF-8. */("Content-Type: text/html; charset=UTF-8");
                    while (@ob_end_clean ()); // Clean any existing output buffers.

                    $custom_template = (is_file (TEMPLATEPATH . "/" . "ip-restrictions.php")) ? TEMPLATEPATH . "/" . "ip-restrictions.php" : '';
                    $custom_template = (is_file (get_stylesheet_directory() . "/" . "ip-restrictions.php")) ? get_stylesheet_directory() . "/" . "ip-restrictions.php" : $custom_template;
                    $custom_template = (is_file (WP_CONTENT_DIR . "/" . "ip-restrictions.php")) ? WP_CONTENT_DIR . "/" . "ip-restrictions.php" :  $custom_template;

                    $msg_503 = trim(file_get_contents((($custom_template) ? $custom_template : dirname(dirname(__FILE__))."/templates/errors/ip-restrictions.php")));
                    $msg_503 = trim(((!$custom_template || !is_multisite() || !c_ws_plugin__s2member_utils_conds::is_multisite_farm() || is_main_site()) ? c_ws_plugin__s2member_utilities::evl($msg_503) : $msg_503));

                    foreach(array_keys(get_defined_vars())as$__v)$__refs[$__v]=&$$__v;
                    do_action("ws_plugin__s2member_during_ip_restrictions_ok_no", get_defined_vars());
                    unset($__refs, $__v);

                    exit /* Clean exit with 503 error message. */($msg_503);
                }
                else // OK, this looks legitimate. Apply Filters here and return true.
                {
                    foreach(array_keys(get_defined_vars())as$__v)$__refs[$__v]=&$$__v;
                    do_action("ws_plugin__s2member_during_ip_restrictions_ok_yes", get_defined_vars());
                    unset($__refs, $__v);

                    return apply_filters("ws_plugin__s2member_ip_restrictions_ok", true, get_defined_vars());
                }
            }
            foreach(array_keys(get_defined_vars())as$__v)$__refs[$__v]=&$$__v;
            do_action("ws_plugin__s2member_during_ip_restrictions_ok_yes", get_defined_vars());
            unset($__refs, $__v);

            return apply_filters("ws_plugin__s2member_ip_restrictions_ok", true, get_defined_vars());
        }
        /**
         * Queries Transients for specific IP Restrictions at or above max allowable.
         *
         * @package s2Member\IP_Restrictions
         * @since 130407
         *
         * @param string $restriction Unique IP Restriction name/identifier. Such as Username, or a unique access code.
         * @return bool TRUE if at or above max allowable IPs; else FALSE.
         */
        public static function specific_ip_restriction_at_or_above_max($restriction = FALSE)
        {
            do_action("ws_plugin__s2member_before_specific_ip_restriction_at_or_above_max", get_defined_vars());

            if(apply_filters("ws_plugin__s2member_disable_all_ip_restrictions", false, get_defined_vars())
                || apply_filters("ws_plugin__s2member_disable_specific_ip_restriction", false, get_defined_vars())
                || !$GLOBALS["WS_PLUGIN__"]["s2member"]["o"]["max_ip_restriction"])
                return false; // No IP Restrictions in this case.

            $prefix = /* s2Member Transient prefix for all IP Restrictions. Allows s2Member to find these easily. */ "s2m_ipr_";
            $transient_entries = $prefix.md5("s2member_ip_restrictions_".(string)$restriction."_entries");

            // If you add Filters, use a string compatible with PHP's strtotime() function.
            $concurrency = apply_filters("ws_plugin__s2member_ip_restrictions__concurrency_time_per_ip", "30 days");

            $entries = (is_array($entries = get_transient($transient_entries))) ? $entries : array();

            foreach /* Auto-expire entries, based on time. */($entries as $_entry => $_time)
                if /* Based on time. */($_time < strtotime("-".$concurrency))
                    unset /* Unset this entry value. */($entries[$_entry]);

            $at_or_above_max = (count($entries) >= $GLOBALS["WS_PLUGIN__"]["s2member"]["o"]["max_ip_restriction"]);

            return apply_filters("ws_plugin__s2member_specific_ip_restriction_at_or_above_max", $at_or_above_max, get_defined_vars());
        }
        /**
         * Queries Transients for specific IP Restrictions associated with a security breach.
         *
         * @package s2Member\IP_Restrictions
         * @since 3.5
         *
         * @param string $restriction Unique IP Restriction name/identifier. Such as a Username, or a unique access code.
         * @return bool True if the specific IP Restriction is associated with a security breach, else false.
         */
        public static function specific_ip_restriction_breached_security($restriction = FALSE)
        {
            do_action("ws_plugin__s2member_before_specific_ip_restriction_breached_security", get_defined_vars());

            $prefix = /* s2Member Transient prefix for all IP Restrictions. */ "s2m_ipr_";
            $transient_security_breach = $prefix.md5("s2member_ip_restrictions_".(string)$restriction."_security_breach");
            $breached_security = $associated_with_security_breach = (get_transient($transient_security_breach)) ? true : false;

            return apply_filters("ws_plugin__s2member_specific_ip_restriction_breached_security", $breached_security, get_defined_vars());
        }
        /**
         * Resets/deletes specific IP Restrictions.
         *
         * @package s2Member\IP_Restrictions
         * @since 3.5
         *
         * @param string $restriction Unique IP Restriction name/identifier. Such as a Username, or a unique access code.
         * @return bool Always returns a `true` value.
         *
         * @todo Make return value conditional, based on success.
         */
        public static function delete_reset_specific_ip_restrictions($restriction = FALSE)
        {
            global /* Need global database object. */ $wpdb;

            do_action("ws_plugin__s2member_before_delete_reset_specific_ip_restrictions", get_defined_vars());

            $prefix /* s2Member Transient prefix for all IP Restrictions. */ = "s2m_ipr_";
            $transient_entries = $prefix.md5("s2member_ip_restrictions_".(string)$restriction."_entries");
            $transient_security_breach = $prefix.md5("s2member_ip_restrictions_".(string)$restriction."_security_breach");

            $wpdb->query("DELETE FROM `".$wpdb->options."` WHERE `option_name` LIKE '%".esc_sql(c_ws_plugin__s2member_utils_strings::like_escape($transient_entries))."'");
            $wpdb->query("DELETE FROM `".$wpdb->options."` WHERE `option_name` LIKE '%".esc_sql(c_ws_plugin__s2member_utils_strings::like_escape($transient_security_breach))."'");

            do_action("ws_plugin__s2member_after_delete_reset_specific_ip_restrictions", get_defined_vars());

            return apply_filters("ws_plugin__s2member_delete_reset_specific_ip_restrictions", true, get_defined_vars());
        }
        /**
         * Resets/deletes specific IP Restrictions via AJAX.
         *
         * @package s2Member\IP_Restrictions
         * @since 3.5
         *
         * @attaches-to ``add_action("wp_ajax_ws_plugin__s2member_delete_reset_specific_ip_restrictions_via_ajax");``
         *
         * @return null Exits script execution after returning data for AJAX caller.
         */
        public static function delete_reset_specific_ip_restrictions_via_ajax()
        {
            do_action("ws_plugin__s2member_before_delete_reset_specific_ip_restrictions_via_ajax", get_defined_vars());

            status_header /* Send a 200 OK status header. */(200);
            header /* Content-Type with UTF-8. */("Content-Type: text/plain; charset=UTF-8");
            while (@ob_end_clean ()); // Clean any existing output buffers.

            if /* Check privileges. Ability to create Users? */(current_user_can("create_users"))

                if(!empty($_POST["ws_plugin__s2member_delete_reset_specific_ip_restrictions_via_ajax"]))
                    if(($nonce = $_POST["ws_plugin__s2member_delete_reset_specific_ip_restrictions_via_ajax"]))
                        if(wp_verify_nonce($nonce, "ws-plugin--s2member-delete-reset-specific-ip-restrictions-via-ajax"))

                            if(!empty($_POST["ws_plugin__s2member_delete_reset_specific_ip_restriction"]))
                                if(is_string /* Must be a string here. */($_POST["ws_plugin__s2member_delete_reset_specific_ip_restriction"]))
                                    if(($restriction = trim(stripslashes($_POST["ws_plugin__s2member_delete_reset_specific_ip_restriction"]))))

                                        if(c_ws_plugin__s2member_ip_restrictions::delete_reset_specific_ip_restrictions($restriction))
                                            $success = /* Yes, this IP Restriction was deleted/reset. */ true;

            exit(apply_filters("ws_plugin__s2member_delete_reset_specific_ip_restrictions_via_ajax", ((isset($success) && $success) ? "1" : "0"), get_defined_vars()));
        }
        /**
         * Resets/deletes all IP Restrictions.
         *
         * @package s2Member\IP_Restrictions
         * @since 3.5
         *
         * @return bool Always returns a `true` value.
         *
         * @todo Make return value conditional, based on success.
         */
        public static function delete_reset_all_ip_restrictions()
        {
            global /* Need global database object. */ $wpdb;

            do_action("ws_plugin__s2member_before_delete_reset_all_ip_restrictions", get_defined_vars());

            $wpdb->query("DELETE FROM `".$wpdb->options."` WHERE `option_name` LIKE '".esc_sql(c_ws_plugin__s2member_utils_strings::like_escape("_transient_s2m_ipr_"))."%'");
            $wpdb->query("DELETE FROM `".$wpdb->options."` WHERE `option_name` LIKE '".esc_sql(c_ws_plugin__s2member_utils_strings::like_escape("_transient_timeout_s2m_ipr_"))."%'");

            do_action("ws_plugin__s2member_after_delete_reset_all_ip_restrictions", get_defined_vars());

            return apply_filters("ws_plugin__s2member_delete_reset_all_ip_restrictions", true, get_defined_vars());
        }
        /**
         * Resets/deletes all IP Restrictions via AJAX.
         *
         * @package s2Member\IP_Restrictions
         * @since 3.5
         *
         * @attaches-to ``add_action("wp_ajax_ws_plugin__s2member_delete_reset_all_ip_restrictions_via_ajax");``
         *
         * @return null Exits script execution after returning data for AJAX caller.
         */
        public static function delete_reset_all_ip_restrictions_via_ajax()
        {
            do_action("ws_plugin__s2member_before_delete_reset_all_ip_restrictions_via_ajax", get_defined_vars());

            status_header /* Send a 200 OK status header. */(200);
            header /* Content-Type with UTF-8. */("Content-Type: text/plain; charset=UTF-8");
            while (@ob_end_clean ()); // Clean any existing output buffers.

            if /* Check privileges. Ability to create Users? */(current_user_can("create_users"))

                if(!empty($_POST["ws_plugin__s2member_delete_reset_all_ip_restrictions_via_ajax"]))
                    if(($nonce = $_POST["ws_plugin__s2member_delete_reset_all_ip_restrictions_via_ajax"]))
                        if(wp_verify_nonce($nonce, "ws-plugin--s2member-delete-reset-all-ip-restrictions-via-ajax"))

                            if(c_ws_plugin__s2member_ip_restrictions::delete_reset_all_ip_restrictions())
                                $success = /* Yes, all IP Restrictions were deleted/reset. */ true;

            exit(apply_filters("ws_plugin__s2member_delete_reset_all_ip_restrictions_via_ajax", ((isset($success) && $success) ? "1" : "0"), get_defined_vars()));
        }
    }
}

```
