sp_upgrade(); } wp_cache_init(); // the installer kicks off here, so anything needed for installation has to happen above if (defined('IS_INSTALLING') && IS_INSTALLING) { require_once 'installer.php'; } add_filter('sanitize_title', 'sanitize_title_with_dashes'); // default roles create_role('supportpressadmin', 'Administrator'); create_role('supporter', 'Supporter'); class BP_Options extends BP_Options_Stub { } // auth functions die if this isn't set backpress_add_option('hash_function_name', 'sp_hash'); function __($str) { return $str; } function _e($str) { echo $str; } function sp_hash($s) { return WP_Pass::hash_password($s); } if (!defined('AUTH_COOKIE')) { define('AUTH_COOKIE', 'sp'); }
/** * Send a HTTP request to a URI using fsockopen(). * * Does not support non-blocking mode. * * @see WP_Http::request For default options descriptions. * * @since 2.7 * @access public * @param string $url URI resource. * @param str|array $args Optional. Override the defaults. * @return array 'headers', 'body', 'cookies' and 'response' keys. */ function request($url, $args = array()) { $defaults = array('method' => 'GET', 'timeout' => 5, 'redirection' => 5, 'httpversion' => '1.0', 'blocking' => true, 'headers' => array(), 'body' => null, 'cookies' => array()); $r = wp_parse_args($args, $defaults); if (isset($r['headers']['User-Agent'])) { $r['user-agent'] = $r['headers']['User-Agent']; unset($r['headers']['User-Agent']); } else { if (isset($r['headers']['user-agent'])) { $r['user-agent'] = $r['headers']['user-agent']; unset($r['headers']['user-agent']); } } // Construct Cookie: header if any cookies are set WP_Http::buildCookieHeader($r); $iError = null; // Store error number $strError = null; // Store error string $arrURL = parse_url($url); $fsockopen_host = $arrURL['host']; $secure_transport = false; if (!isset($arrURL['port'])) { if (($arrURL['scheme'] == 'ssl' || $arrURL['scheme'] == 'https') && extension_loaded('openssl')) { $fsockopen_host = "ssl://{$fsockopen_host}"; $arrURL['port'] = 443; $secure_transport = true; } else { $arrURL['port'] = 80; } } // There are issues with the HTTPS and SSL protocols that cause errors that can be safely // ignored and should be ignored. if (true === $secure_transport) { $error_reporting = error_reporting(0); } $startDelay = time(); $proxy = new WP_HTTP_Proxy(); if (!defined('WP_DEBUG') || defined('WP_DEBUG') && false === WP_DEBUG) { if ($proxy->is_enabled() && $proxy->send_through_proxy($url)) { $handle = @fsockopen($proxy->host(), $proxy->port(), $iError, $strError, $r['timeout']); } else { $handle = @fsockopen($fsockopen_host, $arrURL['port'], $iError, $strError, $r['timeout']); } } else { if ($proxy->is_enabled() && $proxy->send_through_proxy($url)) { $handle = fsockopen($proxy->host(), $proxy->port(), $iError, $strError, $r['timeout']); } else { $handle = fsockopen($fsockopen_host, $arrURL['port'], $iError, $strError, $r['timeout']); } } $endDelay = time(); // If the delay is greater than the timeout then fsockopen should't be used, because it will // cause a long delay. $elapseDelay = $endDelay - $startDelay > $r['timeout']; if (true === $elapseDelay) { backpress_add_option('disable_fsockopen', $endDelay, null, true); } if (false === $handle) { return new WP_Error('http_request_failed', $iError . ': ' . $strError); } stream_set_timeout($handle, $r['timeout']); if ($proxy->is_enabled() && $proxy->send_through_proxy($url)) { //Some proxies require full URL in this field. $requestPath = $url; } else { $requestPath = $arrURL['path'] . (isset($arrURL['query']) ? '?' . $arrURL['query'] : ''); } if (empty($requestPath)) { $requestPath .= '/'; } $strHeaders = strtoupper($r['method']) . ' ' . $requestPath . ' HTTP/' . $r['httpversion'] . "\r\n"; if ($proxy->is_enabled() && $proxy->send_through_proxy($url)) { $strHeaders .= 'Host: ' . $arrURL['host'] . ':' . $arrURL['port'] . "\r\n"; } else { $strHeaders .= 'Host: ' . $arrURL['host'] . "\r\n"; } if (isset($r['user-agent'])) { $strHeaders .= 'User-agent: ' . $r['user-agent'] . "\r\n"; } if (is_array($r['headers'])) { foreach ((array) $r['headers'] as $header => $headerValue) { $strHeaders .= $header . ': ' . $headerValue . "\r\n"; } } else { $strHeaders .= $r['headers']; } if ($proxy->use_authentication()) { $strHeaders .= $proxy->authentication_header() . "\r\n"; } $strHeaders .= "\r\n"; if (!is_null($r['body'])) { $strHeaders .= $r['body']; } fwrite($handle, $strHeaders); if (!$r['blocking']) { fclose($handle); return array('headers' => array(), 'body' => '', 'response' => array('code' => false, 'message' => false), 'cookies' => array()); } $strResponse = ''; while (!feof($handle)) { $strResponse .= fread($handle, 4096); } fclose($handle); if (true === $secure_transport) { error_reporting($error_reporting); } $process = WP_Http::processResponse($strResponse); $arrHeaders = WP_Http::processHeaders($process['headers']); // Is the response code within the 400 range? if ((int) $arrHeaders['response']['code'] >= 400 && (int) $arrHeaders['response']['code'] < 500) { return new WP_Error('http_request_failed', $arrHeaders['response']['code'] . ': ' . $arrHeaders['response']['message']); } // If location is found, then assume redirect and redirect to location. if (isset($arrHeaders['headers']['location'])) { if ($r['redirection']-- > 0) { return $this->request($arrHeaders['headers']['location'], $r); } else { return new WP_Error('http_request_failed', __('Too many redirects.')); } } // If the body was chunk encoded, then decode it. if (!empty($process['body']) && isset($arrHeaders['headers']['transfer-encoding']) && 'chunked' == $arrHeaders['headers']['transfer-encoding']) { $process['body'] = WP_Http::chunkTransferDecode($process['body']); } if (true === $r['decompress'] && true === WP_Http_Encoding::should_decode($arrHeaders['headers'])) { $process['body'] = WP_Http_Encoding::decompress($process['body']); } return array('headers' => $arrHeaders['headers'], 'body' => $process['body'], 'response' => $arrHeaders['response'], 'cookies' => $arrHeaders['cookies']); }