PageRenderTime 30ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-content/plugins/s2member/includes/classes/utils-urls.inc.php

https://gitlab.com/Gashler/dp
PHP | 375 lines | 173 code | 41 blank | 161 comment | 66 complexity | 36893e1248e0db16cd6316d0aeb320f9 MD5 | raw file
  1. <?php
  2. /**
  3. * URL utilities.
  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\Utilities
  15. * @since 3.5
  16. */
  17. if(realpath(__FILE__) === realpath($_SERVER["SCRIPT_FILENAME"]))
  18. exit("Do not access this file directly.");
  19. if(!class_exists("c_ws_plugin__s2member_utils_urls"))
  20. {
  21. /**
  22. * URL utilities.
  23. *
  24. * @package s2Member\Utilities
  25. * @since 3.5
  26. */
  27. class c_ws_plugin__s2member_utils_urls
  28. {
  29. /**
  30. * Builds a WordPress® signup URL to `/wp-signup.php`.
  31. *
  32. * @package s2Member\Utilities
  33. * @since 3.5
  34. *
  35. * @return str Full URL to `/wp-signup.php`.
  36. */
  37. public static function wp_signup_url()
  38. {
  39. return apply_filters("wp_signup_location", site_url("/wp-signup.php"));
  40. }
  41. /**
  42. * Builds a WordPress® registration URL to `/wp-login.php?action=register`.
  43. *
  44. * @package s2Member\Utilities
  45. * @since 3.5
  46. *
  47. * @return str Full URL to `/wp-login.php?action=register`.
  48. */
  49. public static function wp_register_url()
  50. {
  51. return apply_filters("wp_register_location", add_query_arg("action", urlencode("register"), wp_login_url()), get_defined_vars());
  52. }
  53. /**
  54. * Builds a BuddyPress registration URL to `/register`.
  55. *
  56. * @package s2Member\Utilities
  57. * @since 111009
  58. *
  59. * @return str|bool Full URL to `/register`, if BuddyPress is installed; else false.
  60. */
  61. public static function bp_register_url()
  62. {
  63. if( /* If BuddyPress is installed. */c_ws_plugin__s2member_utils_conds::bp_is_installed())
  64. return site_url(((function_exists("bp_get_signup_slug")) ? bp_get_signup_slug()."/" : BP_REGISTER_SLUG."/"));
  65. return /* Default return false. */ false;
  66. }
  67. /**
  68. * Filters content redirection status *(uses 302s for browsers)*.
  69. *
  70. * @package s2Member\Utilities
  71. * @since 3.5
  72. *
  73. * @attaches-to ``add_filter("ws_plugin__s2member_content_redirect_status");``
  74. *
  75. * @param int|str $status A numeric redirection status code.
  76. * @return int|str A numeric status redirection code, possibly modified to a value of `302`.
  77. *
  78. * @see http://en.wikipedia.org/wiki/Web_browser_engine
  79. */
  80. public static function redirect_browsers_using_302_status($status = FALSE)
  81. {
  82. $engines = "msie|trident|gecko|webkit|presto|konqueror|playstation";
  83. if( /* Default `301` status? */(int)$status === 301 && /* Have User-Agent? */ !empty($_SERVER["HTTP_USER_AGENT"]))
  84. if(($is_browser = preg_match("/(".$engines.")[\/ ]([0-9\.]+)/i", $_SERVER["HTTP_USER_AGENT"])))
  85. return /* Use 302 status. */ ($status = 302);
  86. return /* Else use existing status. */ $status;
  87. }
  88. /**
  89. * Encodes all types of amperands to `amp;`, for use in XHTML code.
  90. *
  91. * Note however, this is usually NOT necessary. Just use WordPress® ``esc_html()`` or ``esc_attr()``.
  92. *
  93. * @package s2Member\Utilities
  94. * @since 111106
  95. *
  96. * @param str $url_uri_query A full URL, a partial URI, or just the query string.
  97. * @return str A full URL, a partial URI, or just the query string; after having been encoded by this routine.
  98. */
  99. public static function e_amps($url_uri_query = FALSE)
  100. {
  101. return str_replace("&", "&amp;", c_ws_plugin__s2member_utils_urls::n_amps((string)$url_uri_query));
  102. }
  103. /**
  104. * Normalizes amperands to `&` when working with URLs, URIs, and/or query strings.
  105. *
  106. * @package s2Member\Utilities
  107. * @since 111106
  108. *
  109. * @param str $url_uri_query A full URL, a partial URI, or just the query string.
  110. * @return str A full URL, a partial URI, or just the query string; after having been normalized by this routine.
  111. */
  112. public static function n_amps($url_uri_query = FALSE)
  113. {
  114. $amps = implode("|", array_keys /* Keys are regex patterns. */(c_ws_plugin__s2member_utils_strings::$ampersand_entities));
  115. return /* Normalizes amperands to `&`. */ preg_replace("/(?:".$amps.")/", "&", (string)$url_uri_query);
  116. }
  117. /**
  118. * Parses out a full valid URI, from either a full URL, or a partial URI.
  119. *
  120. * Uses {@link s2Member\Utilities\c_ws_plugin__s2member_utils_urls::parse_url()}.
  121. *
  122. * @package s2Member\Utilities
  123. * @since 3.5
  124. *
  125. * @param str $url_uri Either a full URL, or a partial URI.
  126. * @return str A valid URI, starting with `/` on success, else an empty string.
  127. */
  128. public static function parse_uri($url_uri = FALSE)
  129. {
  130. if(is_string($url_uri) && is_array($parse = c_ws_plugin__s2member_utils_urls::parse_url($url_uri)))
  131. {
  132. $parse["path"] = (!empty($parse["path"])) ? ((strpos($parse["path"], "/") === 0) ? $parse["path"] : "/".$parse["path"]) : "/";
  133. return (!empty($parse["query"])) ? $parse["path"]."?".$parse["query"] : $parse["path"];
  134. }
  135. else // Force a string return value here.
  136. return /* Empty string. */ "";
  137. }
  138. /**
  139. * Parses a URL/URI with same args as PHP's ``parse_url()`` function.
  140. *
  141. * This works around issues with this PHP function in versions prior to 5.3.8.
  142. *
  143. * @package s2Member\Utilities
  144. * @since 111017
  145. *
  146. * @param str $url_uri Either a full URL, or a partial URI to parse.
  147. * @param bool|int $component Optional. See PHP documentation on ``parse_url()`` function.
  148. * @param bool $clean_path Defaults to true. s2Member will cleanup any return array `path`.
  149. * @return str|array|bool The return value from PHP's ``parse_url()`` function.
  150. * However, if ``$component`` is passed, s2Member forces a string return.
  151. */
  152. public static function parse_url($url_uri = FALSE, $component = FALSE, $clean_path = TRUE)
  153. {
  154. $component = ($component === false || $component === -1) ? -1 : $component;
  155. if(is_string($url_uri) && /* And, there is a query string? */ strpos($url_uri, "?") !== false)
  156. {
  157. list($_, $query) = preg_split /* Split @ query string marker. */("/\?/", $url_uri, 2);
  158. $query = /* See: <https://bugs.php.net/bug.php?id=38143>. */ str_replace("://", urlencode("://"), $query);
  159. $url_uri = /* Put it all back together again, after the above modifications. */ $_."?".$query;
  160. unset /* A little housekeeping here. Unset these vars. */($_, $query);
  161. }
  162. $parse = @parse_url /* Let PHP work its magic via ``parse_url()``. */($url_uri, $component);
  163. if($clean_path && isset($parse["path"]) && is_string($parse["path"]) && !empty($parse["path"]))
  164. $parse["path"] = /* Clean up the path now. */ preg_replace("/\/+/", "/", $parse["path"]);
  165. return ($component !== -1) ? /* Force a string return value? */ (string)$parse : $parse;
  166. }
  167. /**
  168. * Responsible for all remote communications processed by s2Member.
  169. *
  170. * Uses ``wp_remote_request()`` through the `WP_Http` class.
  171. *
  172. * @package s2Member\Utilities
  173. * @since 3.5
  174. *
  175. * @param str $url Full URL with possible query string parameters.
  176. * @param str|array $post_vars Optional. Either a string of POST vars, or an array.
  177. * @param array $args Optional. An array of additional arguments used by ``wp_remote_request()``.
  178. * @param bool $return_array Optional. If true, instead of a string, we return an array with elements:
  179. * `code` *(http response code)*, `message` *(http response message)*, `headers` *(an array of lowercase headers)*, `body` *(the response body string)*, `response` *(full response array)*.
  180. * @return str|array|bool Requested response str|array from remote location *(see ``$return_array`` parameter )*; else (bool)`false` on failure.
  181. */
  182. public static function remote($url = FALSE, $post_vars = FALSE, $args = FALSE, $return_array = FALSE)
  183. {
  184. if($url && /* We MUST have a valid full URL (string) before we do anything in this routine. */ is_string($url))
  185. {
  186. $args = /* Force array, and disable SSL verification. */ (!is_array($args)) ? array(): $args;
  187. $args["s2member"] = WS_PLUGIN__S2MEMBER_VERSION; // Indicates this is an s2Member® connection.
  188. $args["sslverify"] = (!isset($args["sslverify"])) ? /* Off. */ false : $args["sslverify"];
  189. $args["httpversion"] = (!isset($args["httpversion"])) ? "1.1" : $args["httpversion"];
  190. if((is_array($post_vars) || is_string($post_vars)) && !empty($post_vars))
  191. $args = array_merge($args, array("method" => "POST", "body" => $post_vars));
  192. if(!empty($args["method"]) && strcasecmp((string)$args["method"], "DELETE") === 0 && version_compare(get_bloginfo("version"), "3.4", "<"))
  193. add_filter("use_curl_transport", "__return_false", /* ID via priority. */ 111209554);
  194. foreach(array_keys(get_defined_vars())as$__v)$__refs[$__v]=&$$__v;
  195. do_action("ws_plugin__s2member_before_wp_remote_request", get_defined_vars());
  196. unset /* Unset defined __refs, __v. */ ($__refs, $__v);
  197. $response = /* Process remote request via ``wp_remote_request()``. */ wp_remote_request($url, $args);
  198. remove_filter /* Remove this Filter now. */("use_curl_transport", "__return_false", 111209554);
  199. if($return_array && !is_wp_error($response) && is_array($response))
  200. {
  201. $a = array("code" => (int)wp_remote_retrieve_response_code($response));
  202. $a = array_merge($a, array("message" => wp_remote_retrieve_response_message($response)));
  203. $a = array_merge($a, array("headers" => wp_remote_retrieve_headers($response)));
  204. $a = array_merge($a, array("body" => wp_remote_retrieve_body($response)));
  205. $a = array_merge($a, array("response" => $response));
  206. return /* Return array w/ ``$response`` too. */ $a;
  207. }
  208. else if(!is_wp_error($response) && is_array($response) /* Return body only. */)
  209. return /* Return ``$response`` body only. */ wp_remote_retrieve_body($response);
  210. else // Else this remote request has failed completely. Return false.
  211. return false; // Remote request failed, return false.
  212. }
  213. else // Else, return false.
  214. return false;
  215. }
  216. /**
  217. * Shortens a long URL, based on s2Member configuration.
  218. *
  219. * @package s2Member\Utilities
  220. * @since 111002
  221. *
  222. * @param str $url A full/long URL to be shortened.
  223. * @param str $api_sp Optional. A specific URL shortening API to use. Defaults to that which is configured in the s2Member Dashboard. Normally `tiny_url`, by default.
  224. * @param bool $try_backups Defaults to true. If a failure occurs with the first API, we'll try others until we have success.
  225. * @return str|bool The shortened URL on success, else false on failure.
  226. */
  227. public static function shorten($url = FALSE, $api_sp = FALSE, $try_backups = TRUE)
  228. {
  229. $url = /* Force strings, else false. */ ($url && is_string($url)) ? $url : false;
  230. $api_sp = ($api_sp && is_string($api_sp)) ? strtolower($api_sp) : false;
  231. $default_url_shortener = $GLOBALS["WS_PLUGIN__"]["s2member"]["o"]["default_url_shortener"];
  232. $default_custom_str_url_shortener = $GLOBALS["WS_PLUGIN__"]["s2member"]["o"]["default_custom_str_url_shortener"];
  233. $apis = /* The shortening APIs currently pre-integrated in this release of s2Member. */ array("tiny_url", "goo_gl");
  234. if($url && ($api = /* If specific, use it. Otherwise, use the default shortening API. */ ($api_sp) ? $api_sp : $default_url_shortener))
  235. {
  236. if(!$api_sp && ($custom_url = trim(apply_filters("ws_plugin__s2member_url_shorten", false, get_defined_vars()))) && stripos($custom_url, "http") === 0)
  237. return /* Using whatever other shortener API you prefer, over the ones available by default with s2Member. */ ($shorter_url = $custom_url);
  238. else if(!$api_sp && stripos($default_custom_str_url_shortener, "http") === 0 && ($custom_url = trim(c_ws_plugin__s2member_utils_urls::remote(str_ireplace(array("%%s2_long_url%%", "%%s2_long_url_md5%%"), array(rawurlencode($url), urlencode(md5($url))), $default_custom_str_url_shortener)))) && stripos($custom_url, "http") === 0)
  239. return /* Using whatever other shortener API that a site owner prefers, over the ones available by default with s2Member. */ ($shorter_url = $custom_url);
  240. else if($api === "tiny_url" && ($tiny_url = trim(c_ws_plugin__s2member_utils_urls::remote("http://tinyurl.com/api-create.php?url=".rawurlencode($url)))) && stripos($tiny_url, "http") === 0)
  241. return /* The default tinyURL API: <http://tinyurl.com/api-create.php?url=http://www.example.com/>. */ ($shorter_url = $tiny_url);
  242. else if($api === "goo_gl" && ($goo_gl = json_decode(trim(c_ws_plugin__s2member_utils_urls::remote("https://www.googleapis.com/urlshortener/v1/url".((($goo_gl_key = apply_filters("ws_plugin__s2member_url_shorten_api_goo_gl_key", false))) ? "?key=".urlencode($goo_gl_key) : ""), json_encode(array("longUrl" => $url)), array("headers" => array("Content-Type" => "application/json")))), true)) && !empty($goo_gl["id"]) && is_string($goo_gl_url = $goo_gl["id"]) && stripos($goo_gl_url, "http") === 0)
  243. return /* Google® API: <http://code.google.com/apis/urlshortener/v1/getting_started.html>. */ ($shorter_url = $goo_gl_url);
  244. else if /* Try backups? This way we can still shorten the URL with a backup. */($try_backups && count($apis) > 1)
  245. foreach /* Try other backup APIs now. */(array_diff($apis, array($api)) as $backup)
  246. if(($backup = c_ws_plugin__s2member_utils_urls::shorten($url, $backup, false)))
  247. return /* Success, we can return now. */ ($shorter_url = $backup);
  248. }
  249. return /* Default return value. */ false;
  250. }
  251. /**
  252. * Removes all s2Member-generated signatures from a full URL, a partial URI, or just a query string.
  253. *
  254. * @package s2Member\Utilities
  255. * @since 111106
  256. *
  257. * @param str $url_uri_query A full URL, a partial URI, or just the query string; to remove s2Member-generated signatures from.
  258. * @param str $sig_var Optional. The name of the s2Member-generated signature variable. Defaults to `_s2member_sig`.
  259. * @return str A full URL, a partial URI, or just the query string; without any s2Member-generated signatures.
  260. */
  261. public static function remove_s2member_sigs($url_uri_query = FALSE, $sig_var = FALSE)
  262. {
  263. $url_uri_query = c_ws_plugin__s2member_utils_strings::trim((string)$url_uri_query, false, "?&=");
  264. $sig_var = ($sig_var && is_string($sig_var)) ? $sig_var : /* Use default. */ "_s2member_sig";
  265. $sigs = /* Remove all signatures. */ array_unique(array($sig_var, "_s2member_sig"));
  266. return trim(remove_query_arg($sigs, $url_uri_query), "?&=");
  267. }
  268. /**
  269. * Adds an s2Member-generated signature onto a full URL, a partial URI, or just a query string.
  270. *
  271. * @package s2Member\Utilities
  272. * @since 111106
  273. *
  274. * @param str $url_uri_query A full URL, a partial URI, or just a query string; to append the s2Member-generated signature onto.
  275. * @param str $sig_var Optional. The name of the s2Member-generated signature variable. Defaults to `_s2member_sig`.
  276. * @return str A full URL, a partial URI, or just a query string; with an s2Member-generated signature.
  277. */
  278. public static function add_s2member_sig($url_uri_query = FALSE, $sig_var = FALSE)
  279. {
  280. $url_uri_query = $query = c_ws_plugin__s2member_utils_strings::trim((string)$url_uri_query, false, "?&=");
  281. $sig_var = ($sig_var && is_string($sig_var)) ? $sig_var : /* Use default. */ "_s2member_sig";
  282. $url_uri_query = $query = c_ws_plugin__s2member_utils_urls::remove_s2member_sigs($url_uri_query, $sig_var);
  283. if( /* Is this a full URL, or a partial URI? */preg_match("/^(?:[a-z]+\:\/\/|\/)/i", ($url_uri_query)))
  284. $query = trim(c_ws_plugin__s2member_utils_urls::parse_url($url_uri_query, PHP_URL_QUERY), "?&=");
  285. $key = /* Obtain the proper encryption/decryption key. */ c_ws_plugin__s2member_utils_encryption::key();
  286. if($url_uri_query && is_string /* We DO allow empty query strings. So we can sign a URL without one. */($query))
  287. {
  288. wp_parse_str /* Parse the query string into an array of ``$vars``. Then sort & serialize them into a string. */($query, $vars);
  289. $vars = c_ws_plugin__s2member_utils_arrays::remove_0b_strings(c_ws_plugin__s2member_utils_strings::trim_deep($vars));
  290. $vars = serialize(c_ws_plugin__s2member_utils_arrays::ksort_deep($vars));
  291. $sig = /* The s2Member-generated signature. */ ($time = time())."-".md5($key.$time.$vars);
  292. $url_uri_query = add_query_arg($sig_var, urlencode($sig), $url_uri_query);
  293. }
  294. return /* Possibly with a ``$sig_var`` variable. */ $url_uri_query;
  295. }
  296. /**
  297. * Verifies an s2Member-generated signature; in a full URL, a partial URI, or in just a query string.
  298. *
  299. * @package s2Member\Utilities
  300. * @since 111106
  301. *
  302. * @param str $url_uri_query A full URL, a partial URI, or just a query string. Must have an s2Member-generated signature to validate.
  303. * @param bool $check_time Optional. Defaults to false. If true, s2Member will also check if the signature has expired, based on ``$exp_secs``.
  304. * @param str|int $exp_secs Optional. Defaults to (int)10. If ``$check_time`` is true, s2Member will check if the signature has expired, based on ``$exp_secs``.
  305. * @param str $sig_var Optional. The name of the s2Member-generated signature variable. Defaults to `_s2member_sig`.
  306. * @return bool True if the s2Member-generated signature is OK, else false.
  307. */
  308. public static function s2member_sig_ok($url_uri_query = FALSE, $check_time = FALSE, $exp_secs = FALSE, $sig_var = FALSE)
  309. {
  310. $url_uri_query = $query = c_ws_plugin__s2member_utils_strings::trim((string)$url_uri_query, false, "?&=");
  311. if( /* Is this a full URL, or a partial URI? */preg_match("/^(?:[a-z]+\:\/\/|\/)/i", ($url_uri_query)))
  312. $query = trim(c_ws_plugin__s2member_utils_urls::parse_url($url_uri_query, PHP_URL_QUERY), "?&=");
  313. $check_time = /* Are we checking time? Force a boolean value here. */ ($check_time) ? true : false;
  314. $exp_secs = (is_numeric($exp_secs)) ? (int)$exp_secs : /* Else 10 seconds by default here. */ 10;
  315. $sig_var = ($sig_var && is_string($sig_var)) ? $sig_var : /* Use default. */ "_s2member_sig";
  316. $key = /* Obtain the proper encryption/decryption key. */ c_ws_plugin__s2member_utils_encryption::key();
  317. if(preg_match_all /* Does ``$query`` have an s2Member-generated signature? */("/".preg_quote($sig_var, "/")."\=([0-9]+)-([^&$]+)/", $query, $sigs))
  318. {
  319. $query = /* Remove existing s2Member-generated signatures. */ c_ws_plugin__s2member_utils_urls::remove_s2member_sigs($query, $sig_var);
  320. wp_parse_str /* Parse the query string into an array of ``$vars``. Then sort & serialize them into a string. */($query, $vars);
  321. $vars = c_ws_plugin__s2member_utils_arrays::remove_0b_strings(c_ws_plugin__s2member_utils_strings::trim_deep($vars));
  322. $vars = serialize(c_ws_plugin__s2member_utils_arrays::ksort_deep($vars));
  323. ($time = $sigs[1][($i = count($sigs[1]) - 1)]).($sig = $sigs[2][$i]).($valid_sig = md5($key.$time.$vars));
  324. if /* Checking time? This must NOT be older than ``$exp_secs`` seconds ago. */($check_time)
  325. return ($sig === $valid_sig && $time >= strtotime("-".$exp_secs." seconds"));
  326. else // Ignoring time? Just need to compare signatures in this case.
  327. return /* Do they match up? */ ($sig === $valid_sig);
  328. }
  329. else // Return false. No ``$query``, or no ``$sigs``.
  330. return /* False, it's NOT ok. */ false;
  331. }
  332. }
  333. }
  334. ?>