Merge pull request #19605 from owncloud/add-get-http-protocol
Add \OCP\IRequest::getHttpProtocol
This commit is contained in:
commit
79524ce163
3 changed files with 80 additions and 0 deletions
|
@ -552,6 +552,27 @@ class Request implements \ArrayAccess, \Countable, IRequest {
|
|||
return 'http';
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the used HTTP protocol.
|
||||
*
|
||||
* @return string HTTP protocol. HTTP/2, HTTP/1.1 or HTTP/1.0.
|
||||
*/
|
||||
public function getHttpProtocol() {
|
||||
$claimedProtocol = strtoupper($this->server['SERVER_PROTOCOL']);
|
||||
|
||||
$validProtocols = [
|
||||
'HTTP/1.0',
|
||||
'HTTP/1.1',
|
||||
'HTTP/2',
|
||||
];
|
||||
|
||||
if(in_array($claimedProtocol, $validProtocols, true)) {
|
||||
return $claimedProtocol;
|
||||
}
|
||||
|
||||
return 'HTTP/1.1';
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the request uri, even if the website uses one or more
|
||||
* reverse proxies
|
||||
|
|
|
@ -167,6 +167,14 @@ interface IRequest {
|
|||
*/
|
||||
public function getServerProtocol();
|
||||
|
||||
/**
|
||||
* Returns the used HTTP protocol.
|
||||
*
|
||||
* @return string HTTP protocol. HTTP/2, HTTP/1.1 or HTTP/1.0.
|
||||
* @since 8.2.0
|
||||
*/
|
||||
public function getHttpProtocol();
|
||||
|
||||
/**
|
||||
* Returns the request uri, even if the website uses one or more
|
||||
* reverse proxies
|
||||
|
|
|
@ -497,6 +497,57 @@ class RequestTest extends \Test\TestCase {
|
|||
$this->assertSame('192.168.0.233', $request->getRemoteAddress());
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function httpProtocolProvider() {
|
||||
return [
|
||||
// Valid HTTP 1.0
|
||||
['HTTP/1.0', 'HTTP/1.0'],
|
||||
['http/1.0', 'HTTP/1.0'],
|
||||
['HTTp/1.0', 'HTTP/1.0'],
|
||||
|
||||
// Valid HTTP 1.1
|
||||
['HTTP/1.1', 'HTTP/1.1'],
|
||||
['http/1.1', 'HTTP/1.1'],
|
||||
['HTTp/1.1', 'HTTP/1.1'],
|
||||
|
||||
// Valid HTTP 2.0
|
||||
['HTTP/2', 'HTTP/2'],
|
||||
['http/2', 'HTTP/2'],
|
||||
['HTTp/2', 'HTTP/2'],
|
||||
|
||||
// Invalid
|
||||
['HTTp/394', 'HTTP/1.1'],
|
||||
['InvalidProvider/1.1', 'HTTP/1.1'],
|
||||
[null, 'HTTP/1.1'],
|
||||
['', 'HTTP/1.1'],
|
||||
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider httpProtocolProvider
|
||||
*
|
||||
* @param mixed $input
|
||||
* @param string $expected
|
||||
*/
|
||||
public function testGetHttpProtocol($input, $expected) {
|
||||
$request = new Request(
|
||||
[
|
||||
'server' => [
|
||||
'SERVER_PROTOCOL' => $input,
|
||||
],
|
||||
],
|
||||
$this->secureRandom,
|
||||
$this->getMock('\OCP\Security\ICrypto'),
|
||||
$this->config,
|
||||
$this->stream
|
||||
);
|
||||
|
||||
$this->assertSame($expected, $request->getHttpProtocol());
|
||||
}
|
||||
|
||||
public function testGetServerProtocolWithOverride() {
|
||||
$this->config
|
||||
->expects($this->at(0))
|
||||
|
|
Loading…
Reference in a new issue