123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588 |
- <?php
- /**
- * This file is part of workerman.
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the MIT-LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @author walkor<walkor@workerman.net>
- * @copyright walkor<walkor@workerman.net>
- * @link http://www.workerman.net/
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Workerman\Protocols;
- use Workerman\Connection\TcpConnection;
- use Workerman\Worker;
- /**
- * http protocol
- */
- class Http
- {
- /**
- * The supported HTTP methods
- * @var array
- */
- public static $methods = array('GET', 'POST', 'PUT', 'DELETE', 'HEAD', 'OPTIONS');
- /**
- * Check the integrity of the package.
- *
- * @param string $recv_buffer
- * @param TcpConnection $connection
- * @return int
- */
- public static function input($recv_buffer, TcpConnection $connection)
- {
- if (!strpos($recv_buffer, "\r\n\r\n")) {
- // Judge whether the package length exceeds the limit.
- if (strlen($recv_buffer) >= TcpConnection::$maxPackageSize) {
- $connection->close();
- return 0;
- }
- return 0;
- }
- list($header,) = explode("\r\n\r\n", $recv_buffer, 2);
- $method = substr($header, 0, strpos($header, ' '));
- if(in_array($method, static::$methods)) {
- return static::getRequestSize($header, $method);
- }else{
- $connection->send("HTTP/1.1 400 Bad Request\r\n\r\n", true);
- return 0;
- }
- }
- /**
- * Get whole size of the request
- * includes the request headers and request body.
- * @param string $header The request headers
- * @param string $method The request method
- * @return integer
- */
- protected static function getRequestSize($header, $method)
- {
- if($method === 'GET' || $method === 'OPTIONS' || $method === 'HEAD') {
- return strlen($header) + 4;
- }
- $match = array();
- if (preg_match("/\r\nContent-Length: ?(\d+)/i", $header, $match)) {
- $content_length = isset($match[1]) ? $match[1] : 0;
- return $content_length + strlen($header) + 4;
- }
- return 0;
- }
- /**
- * Parse $_POST、$_GET、$_COOKIE.
- *
- * @param string $recv_buffer
- * @param TcpConnection $connection
- * @return array
- */
- public static function decode($recv_buffer, TcpConnection $connection)
- {
- // Init.
- $_POST = $_GET = $_COOKIE = $_REQUEST = $_SESSION = $_FILES = array();
- $GLOBALS['HTTP_RAW_POST_DATA'] = '';
- // Clear cache.
- HttpCache::$header = array('Connection' => 'Connection: keep-alive');
- HttpCache::$instance = new HttpCache();
- // $_SERVER
- $_SERVER = array(
- 'QUERY_STRING' => '',
- 'REQUEST_METHOD' => '',
- 'REQUEST_URI' => '',
- 'SERVER_PROTOCOL' => '',
- 'SERVER_SOFTWARE' => 'workerman/'.Worker::VERSION,
- 'SERVER_NAME' => '',
- 'HTTP_HOST' => '',
- 'HTTP_USER_AGENT' => '',
- 'HTTP_ACCEPT' => '',
- 'HTTP_ACCEPT_LANGUAGE' => '',
- 'HTTP_ACCEPT_ENCODING' => '',
- 'HTTP_COOKIE' => '',
- 'HTTP_CONNECTION' => '',
- 'REMOTE_ADDR' => '',
- 'REMOTE_PORT' => '0',
- 'REQUEST_TIME' => time()
- );
- // Parse headers.
- list($http_header, $http_body) = explode("\r\n\r\n", $recv_buffer, 2);
- $header_data = explode("\r\n", $http_header);
- list($_SERVER['REQUEST_METHOD'], $_SERVER['REQUEST_URI'], $_SERVER['SERVER_PROTOCOL']) = explode(' ',
- $header_data[0]);
- $http_post_boundary = '';
- unset($header_data[0]);
- foreach ($header_data as $content) {
- // \r\n\r\n
- if (empty($content)) {
- continue;
- }
- list($key, $value) = explode(':', $content, 2);
- $key = str_replace('-', '_', strtoupper($key));
- $value = trim($value);
- $_SERVER['HTTP_' . $key] = $value;
- switch ($key) {
- // HTTP_HOST
- case 'HOST':
- $tmp = explode(':', $value);
- $_SERVER['SERVER_NAME'] = $tmp[0];
- if (isset($tmp[1])) {
- $_SERVER['SERVER_PORT'] = $tmp[1];
- }
- break;
- // cookie
- case 'COOKIE':
- parse_str(str_replace('; ', '&', $_SERVER['HTTP_COOKIE']), $_COOKIE);
- break;
- // content-type
- case 'CONTENT_TYPE':
- if (!preg_match('/boundary="?(\S+)"?/', $value, $match)) {
- if ($pos = strpos($value, ';')) {
- $_SERVER['CONTENT_TYPE'] = substr($value, 0, $pos);
- } else {
- $_SERVER['CONTENT_TYPE'] = $value;
- }
- } else {
- $_SERVER['CONTENT_TYPE'] = 'multipart/form-data';
- $http_post_boundary = '--' . $match[1];
- }
- break;
- case 'CONTENT_LENGTH':
- $_SERVER['CONTENT_LENGTH'] = $value;
- break;
- }
- }
- // Parse $_POST.
- if ($_SERVER['REQUEST_METHOD'] === 'POST') {
- if (isset($_SERVER['CONTENT_TYPE'])) {
- switch ($_SERVER['CONTENT_TYPE']) {
- case 'multipart/form-data':
- self::parseUploadFiles($http_body, $http_post_boundary);
- break;
- case 'application/json':
- $_POST = json_decode($http_body, true);
- break;
- case 'application/x-www-form-urlencoded':
- parse_str($http_body, $_POST);
- break;
- }
- }
- }
- // HTTP_RAW_REQUEST_DATA HTTP_RAW_POST_DATA
- $GLOBALS['HTTP_RAW_REQUEST_DATA'] = $GLOBALS['HTTP_RAW_POST_DATA'] = $http_body;
- // QUERY_STRING
- $_SERVER['QUERY_STRING'] = parse_url($_SERVER['REQUEST_URI'], PHP_URL_QUERY);
- if ($_SERVER['QUERY_STRING']) {
- // $GET
- parse_str($_SERVER['QUERY_STRING'], $_GET);
- } else {
- $_SERVER['QUERY_STRING'] = '';
- }
- // REQUEST
- $_REQUEST = array_merge($_GET, $_POST);
- // REMOTE_ADDR REMOTE_PORT
- $_SERVER['REMOTE_ADDR'] = $connection->getRemoteIp();
- $_SERVER['REMOTE_PORT'] = $connection->getRemotePort();
- return array('get' => $_GET, 'post' => $_POST, 'cookie' => $_COOKIE, 'server' => $_SERVER, 'files' => $_FILES);
- }
- /**
- * Http encode.
- *
- * @param string $content
- * @param TcpConnection $connection
- * @return string
- */
- public static function encode($content, TcpConnection $connection)
- {
- // Default http-code.
- if (!isset(HttpCache::$header['Http-Code'])) {
- $header = "HTTP/1.1 200 OK\r\n";
- } else {
- $header = HttpCache::$header['Http-Code'] . "\r\n";
- unset(HttpCache::$header['Http-Code']);
- }
- // Content-Type
- if (!isset(HttpCache::$header['Content-Type'])) {
- $header .= "Content-Type: text/html;charset=utf-8\r\n";
- }
- // other headers
- foreach (HttpCache::$header as $key => $item) {
- if ('Set-Cookie' === $key && is_array($item)) {
- foreach ($item as $it) {
- $header .= $it . "\r\n";
- }
- } else {
- $header .= $item . "\r\n";
- }
- }
- // header
- $header .= "Server: workerman/" . Worker::VERSION . "\r\nContent-Length: " . strlen($content) . "\r\n\r\n";
- // save session
- self::sessionWriteClose();
- // the whole http package
- return $header . $content;
- }
- /**
- * 设置http头
- *
- * @return bool|void
- */
- public static function header($content, $replace = true, $http_response_code = 0)
- {
- if (PHP_SAPI != 'cli') {
- return $http_response_code ? header($content, $replace, $http_response_code) : header($content, $replace);
- }
- if (strpos($content, 'HTTP') === 0) {
- $key = 'Http-Code';
- } else {
- $key = strstr($content, ":", true);
- if (empty($key)) {
- return false;
- }
- }
- if ('location' === strtolower($key) && !$http_response_code) {
- return self::header($content, true, 302);
- }
- if (isset(HttpCache::$codes[$http_response_code])) {
- HttpCache::$header['Http-Code'] = "HTTP/1.1 $http_response_code " . HttpCache::$codes[$http_response_code];
- if ($key === 'Http-Code') {
- return true;
- }
- }
- if ($key === 'Set-Cookie') {
- HttpCache::$header[$key][] = $content;
- } else {
- HttpCache::$header[$key] = $content;
- }
- return true;
- }
- /**
- * Remove header.
- *
- * @param string $name
- * @return void
- */
- public static function headerRemove($name)
- {
- if (PHP_SAPI != 'cli') {
- header_remove($name);
- return;
- }
- unset(HttpCache::$header[$name]);
- }
- /**
- * Set cookie.
- *
- * @param string $name
- * @param string $value
- * @param integer $maxage
- * @param string $path
- * @param string $domain
- * @param bool $secure
- * @param bool $HTTPOnly
- * @return bool|void
- */
- public static function setcookie(
- $name,
- $value = '',
- $maxage = 0,
- $path = '',
- $domain = '',
- $secure = false,
- $HTTPOnly = false
- ) {
- if (PHP_SAPI != 'cli') {
- return setcookie($name, $value, $maxage, $path, $domain, $secure, $HTTPOnly);
- }
- return self::header(
- 'Set-Cookie: ' . $name . '=' . rawurlencode($value)
- . (empty($domain) ? '' : '; Domain=' . $domain)
- . (empty($maxage) ? '' : '; Max-Age=' . $maxage)
- . (empty($path) ? '' : '; Path=' . $path)
- . (!$secure ? '' : '; Secure')
- . (!$HTTPOnly ? '' : '; HttpOnly'), false);
- }
- /**
- * sessionStart
- *
- * @return bool
- */
- public static function sessionStart()
- {
- if (PHP_SAPI != 'cli') {
- return session_start();
- }
- self::tryGcSessions();
- if (HttpCache::$instance->sessionStarted) {
- echo "already sessionStarted\n";
- return true;
- }
- HttpCache::$instance->sessionStarted = true;
- // Generate a SID.
- if (!isset($_COOKIE[HttpCache::$sessionName]) || !is_file(HttpCache::$sessionPath . '/ses' . $_COOKIE[HttpCache::$sessionName])) {
- $file_name = tempnam(HttpCache::$sessionPath, 'ses');
- if (!$file_name) {
- return false;
- }
- HttpCache::$instance->sessionFile = $file_name;
- $session_id = substr(basename($file_name), strlen('ses'));
- return self::setcookie(
- HttpCache::$sessionName
- , $session_id
- , ini_get('session.cookie_lifetime')
- , ini_get('session.cookie_path')
- , ini_get('session.cookie_domain')
- , ini_get('session.cookie_secure')
- , ini_get('session.cookie_httponly')
- );
- }
- if (!HttpCache::$instance->sessionFile) {
- HttpCache::$instance->sessionFile = HttpCache::$sessionPath . '/ses' . $_COOKIE[HttpCache::$sessionName];
- }
- // Read session from session file.
- if (HttpCache::$instance->sessionFile) {
- $raw = file_get_contents(HttpCache::$instance->sessionFile);
- if ($raw) {
- $_SESSION = unserialize($raw);
- }
- }
- return true;
- }
- /**
- * Save session.
- *
- * @return bool
- */
- public static function sessionWriteClose()
- {
- if (PHP_SAPI != 'cli') {
- return session_write_close();
- }
- if (!empty(HttpCache::$instance->sessionStarted) && !empty($_SESSION)) {
- $session_str = serialize($_SESSION);
- if ($session_str && HttpCache::$instance->sessionFile) {
- return file_put_contents(HttpCache::$instance->sessionFile, $session_str);
- }
- }
- return empty($_SESSION);
- }
- /**
- * End, like call exit in php-fpm.
- *
- * @param string $msg
- * @throws \Exception
- */
- public static function end($msg = '')
- {
- if (PHP_SAPI != 'cli') {
- exit($msg);
- }
- if ($msg) {
- echo $msg;
- }
- throw new \Exception('jump_exit');
- }
- /**
- * Get mime types.
- *
- * @return string
- */
- public static function getMimeTypesFile()
- {
- return __DIR__ . '/Http/mime.types';
- }
- /**
- * Parse $_FILES.
- *
- * @param string $http_body
- * @param string $http_post_boundary
- * @return void
- */
- protected static function parseUploadFiles($http_body, $http_post_boundary)
- {
- $http_body = substr($http_body, 0, strlen($http_body) - (strlen($http_post_boundary) + 4));
- $boundary_data_array = explode($http_post_boundary . "\r\n", $http_body);
- if ($boundary_data_array[0] === '') {
- unset($boundary_data_array[0]);
- }
- $key = -1;
- foreach ($boundary_data_array as $boundary_data_buffer) {
- list($boundary_header_buffer, $boundary_value) = explode("\r\n\r\n", $boundary_data_buffer, 2);
- // Remove \r\n from the end of buffer.
- $boundary_value = substr($boundary_value, 0, -2);
- $key ++;
- foreach (explode("\r\n", $boundary_header_buffer) as $item) {
- list($header_key, $header_value) = explode(": ", $item);
- $header_key = strtolower($header_key);
- switch ($header_key) {
- case "content-disposition":
- // Is file data.
- if (preg_match('/name="(.*?)"; filename="(.*?)"$/', $header_value, $match)) {
- // Parse $_FILES.
- $_FILES[$key] = array(
- 'name' => $match[1],
- 'file_name' => $match[2],
- 'file_data' => $boundary_value,
- 'file_size' => strlen($boundary_value),
- );
- continue;
- } // Is post field.
- else {
- // Parse $_POST.
- if (preg_match('/name="(.*?)"$/', $header_value, $match)) {
- $_POST[$match[1]] = $boundary_value;
- }
- }
- break;
- case "content-type":
- // add file_type
- $_FILES[$key]['file_type'] = trim($header_value);
- break;
- }
- }
- }
- }
- /**
- * Try GC sessions.
- *
- * @return void
- */
- public static function tryGcSessions()
- {
- if (HttpCache::$sessionGcProbability <= 0 ||
- HttpCache::$sessionGcDivisor <= 0 ||
- rand(1, HttpCache::$sessionGcDivisor) > HttpCache::$sessionGcProbability) {
- return;
- }
- $time_now = time();
- foreach(glob(HttpCache::$sessionPath.'/ses*') as $file) {
- if(is_file($file) && $time_now - filemtime($file) > HttpCache::$sessionGcMaxLifeTime) {
- unlink($file);
- }
- }
- }
- }
- /**
- * Http cache for the current http response.
- */
- class HttpCache
- {
- public static $codes = array(
- 100 => 'Continue',
- 101 => 'Switching Protocols',
- 200 => 'OK',
- 201 => 'Created',
- 202 => 'Accepted',
- 203 => 'Non-Authoritative Information',
- 204 => 'No Content',
- 205 => 'Reset Content',
- 206 => 'Partial Content',
- 300 => 'Multiple Choices',
- 301 => 'Moved Permanently',
- 302 => 'Found',
- 303 => 'See Other',
- 304 => 'Not Modified',
- 305 => 'Use Proxy',
- 306 => '(Unused)',
- 307 => 'Temporary Redirect',
- 400 => 'Bad Request',
- 401 => 'Unauthorized',
- 402 => 'Payment Required',
- 403 => 'Forbidden',
- 404 => 'Not Found',
- 405 => 'Method Not Allowed',
- 406 => 'Not Acceptable',
- 407 => 'Proxy Authentication Required',
- 408 => 'Request Timeout',
- 409 => 'Conflict',
- 410 => 'Gone',
- 411 => 'Length Required',
- 412 => 'Precondition Failed',
- 413 => 'Request Entity Too Large',
- 414 => 'Request-URI Too Long',
- 415 => 'Unsupported Media Type',
- 416 => 'Requested Range Not Satisfiable',
- 417 => 'Expectation Failed',
- 422 => 'Unprocessable Entity',
- 423 => 'Locked',
- 500 => 'Internal Server Error',
- 501 => 'Not Implemented',
- 502 => 'Bad Gateway',
- 503 => 'Service Unavailable',
- 504 => 'Gateway Timeout',
- 505 => 'HTTP Version Not Supported',
- );
- /**
- * @var HttpCache
- */
- public static $instance = null;
- public static $header = array();
- public static $sessionPath = '';
- public static $sessionName = '';
- public static $sessionGcProbability = 1;
- public static $sessionGcDivisor = 1000;
- public static $sessionGcMaxLifeTime = 1440;
- public $sessionStarted = false;
- public $sessionFile = '';
- public static function init()
- {
- self::$sessionName = ini_get('session.name');
- self::$sessionPath = @session_save_path();
- if (!self::$sessionPath || strpos(self::$sessionPath, 'tcp://') === 0) {
- self::$sessionPath = sys_get_temp_dir();
- }
- if ($gc_probability = ini_get('session.gc_probability')) {
- self::$sessionGcProbability = $gc_probability;
- }
- if ($gc_divisor = ini_get('session.gc_divisor')) {
- self::$sessionGcDivisor = $gc_divisor;
- }
- if ($gc_max_life_time = ini_get('session.gc_maxlifetime')) {
- self::$sessionGcMaxLifeTime = $gc_max_life_time;
- }
- }
- }
- HttpCache::init();
|