| 1 |
<?php |
| 2 |
/** |
| 3 |
* SSL routines. |
| 4 |
* |
| 5 |
* Copyright: © 2009-2011 |
| 6 |
* {@link http://www.websharks-inc.com/ WebSharks, Inc.} |
| 7 |
* ( coded in the USA ) |
| 8 |
* |
| 9 |
* Released under the terms of the GNU General Public License. |
| 10 |
* You should have received a copy of the GNU General Public License, |
| 11 |
* along with this software. In the main directory, see: /licensing/ |
| 12 |
* If not, see: {@link http://www.gnu.org/licenses/}. |
| 13 |
* |
| 14 |
* @package s2Member\SSL |
| 15 |
* @since 3.5 |
| 16 |
*/ |
| 17 |
if (realpath (__FILE__) === realpath ($_SERVER["SCRIPT_FILENAME"])) |
| 18 |
exit("Do not access this file directly."); |
| 19 |
/**/ |
| 20 |
if (!class_exists ("c_ws_plugin__s2member_ssl")) |
| 21 |
{ |
| 22 |
/** |
| 23 |
* SSL routines. |
| 24 |
* |
| 25 |
* @package s2Member\SSL |
| 26 |
* @since 3.5 |
| 27 |
*/ |
| 28 |
class c_ws_plugin__s2member_ssl |
| 29 |
{ |
| 30 |
/** |
| 31 |
* Forces SSL on specific Posts/Pages, or any page for that matter. |
| 32 |
* |
| 33 |
* Triggered by Custom Field: `s2member_force_ssl = yes|port#` |
| 34 |
* |
| 35 |
* Triggered by: `?s2-ssl` or `?s2-ssl=yes|port#`. |
| 36 |
* |
| 37 |
* @package s2Member\SSL |
| 38 |
* @since 3.5 |
| 39 |
* |
| 40 |
* @attaches-to ``add_action("init");`` |
| 41 |
* @also-attaches-to ``add_action("wp");`` |
| 42 |
* |
| 43 |
* @return null Possibly exiting script execution after redirection to SSL variation. |
| 44 |
*/ |
| 45 |
public static function check_force_ssl () |
| 46 |
{ |
| 47 |
static $forced = false; /* Only force SSL once. */ |
| 48 |
global $post; /* We need this global reference to ``$post``. */ |
| 49 |
/**/ |
| 50 |
do_action ("ws_plugin__s2member_before_check_force_ssl", get_defined_vars ()); |
| 51 |
/**/ |
| 52 |
if (!$forced) /* Only force SSL here once. We definitely do NOT need to run this particular routine more than ONE time. */ |
| 53 |
if (!c_ws_plugin__s2member_systematics::is_wp_systematic_use_page () /* NOT on WordPress® Systematics. */) |
| 54 |
{ |
| 55 |
$s2_ssl_gv = apply_filters ("ws_plugin__s2member_check_force_ssl_get_var_name", "s2-ssl", get_defined_vars ()); |
| 56 |
$_g_s2_ssl = (isset ($_GET[$s2_ssl_gv]) && (!strlen ($_GET[$s2_ssl_gv]) || !preg_match ("/^(0|no|off|false)$/i", $_GET[$s2_ssl_gv]))) ? ((!strlen ($_GET[$s2_ssl_gv])) ? true : $_GET[$s2_ssl_gv]) : false; |
| 57 |
$force_ssl = apply_filters ("ws_plugin__s2member_check_force_ssl", $_g_s2_ssl, get_defined_vars ()); |
| 58 |
/**/ |
| 59 |
if ($force_ssl || ( /* Conditionals will work? */did_action ("wp") && is_singular () && is_object ($post) && ($force_ssl = get_post_meta ($post->ID, "s2member_force_ssl", true)))) |
| 60 |
if (!preg_match ("/^(0|no|off|false)$/i", (string)$force_ssl) && ($forced = true)) /* Make sure it's NOT a negative variation. */ |
| 61 |
c_ws_plugin__s2member_ssl_in::force_ssl (get_defined_vars ()); /* Call inner routine now. */ |
| 62 |
} |
| 63 |
/**/ |
| 64 |
do_action ("ws_plugin__s2member_after_check_force_ssl", get_defined_vars ()); |
| 65 |
/**/ |
| 66 |
return; /* Return for uniformity. */ |
| 67 |
} |
| 68 |
} |
| 69 |
} |
| 70 |
?> |