Revert "use the configured forwarded headers for the setup check"
This commit is contained in:
parent
24d4c3eeab
commit
7d8e9baa77
|
@ -309,14 +309,7 @@ class CheckSetupController extends Controller {
|
|||
$trustedProxies = $this->config->getSystemValue('trusted_proxies', []);
|
||||
$remoteAddress = $this->request->getHeader('REMOTE_ADDR');
|
||||
|
||||
$forwardedForHeaders = $this->config->getSystemValue('forwarded_for_headers', [
|
||||
'HTTP_X_FORWARDED_FOR'
|
||||
]);
|
||||
$hasForwardedHeaderSet = array_reduce($forwardedForHeaders, function($set, $header) {
|
||||
return $set || ($this->request->getHeader($header) !== '');
|
||||
}, false);
|
||||
|
||||
if (empty($trustedProxies) && $hasForwardedHeaderSet) {
|
||||
if (empty($trustedProxies) && $this->request->getHeader('X-Forwarded-Host') !== '') {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -329,37 +329,26 @@ class CheckSetupControllerTest extends TestCase {
|
|||
}
|
||||
|
||||
/**
|
||||
* @dataProvider dataForwardedForHeaders
|
||||
* @dataProvider dataForwardedForHeadersWorking
|
||||
*
|
||||
* @param string[] $trustedProxies
|
||||
* @param array $trustedProxies
|
||||
* @param string $remoteAddrNotForwarded
|
||||
* @param string $remoteAddr
|
||||
* @param string[] $forwardedForHeaders
|
||||
* @param array $requestHeaders
|
||||
* @param bool $result
|
||||
*/
|
||||
public function testForwardedForHeaders(array $trustedProxies, string $remoteAddrNotForwarded, string $remoteAddr, array $forwardedForHeaders, array $requestHeaders, bool $result) {
|
||||
$this->config->method('getSystemValue')
|
||||
->willReturnCallback(function($key, $default) use ($forwardedForHeaders, $trustedProxies) {
|
||||
switch ($key) {
|
||||
case 'forwarded_for_headers':
|
||||
return $forwardedForHeaders;
|
||||
case 'trusted_proxies':
|
||||
return $trustedProxies;
|
||||
default:
|
||||
return $default;
|
||||
}
|
||||
});
|
||||
$headers = array_merge(
|
||||
['REMOTE_ADDR' => $remoteAddrNotForwarded],
|
||||
$requestHeaders
|
||||
);
|
||||
public function testForwardedForHeadersWorking(array $trustedProxies, string $remoteAddrNotForwarded, string $remoteAddr, bool $result) {
|
||||
$this->config->expects($this->once())
|
||||
->method('getSystemValue')
|
||||
->with('trusted_proxies', [])
|
||||
->willReturn($trustedProxies);
|
||||
$this->request->expects($this->atLeastOnce())
|
||||
->method('getHeader')
|
||||
->willReturnCallback(function($header) use ($headers) {
|
||||
return isset($headers[$header]) ? $headers[$header] : '';
|
||||
});
|
||||
$this->request->method('getRemoteAddress')
|
||||
->willReturnMap([
|
||||
['REMOTE_ADDR', $remoteAddrNotForwarded],
|
||||
['X-Forwarded-Host', '']
|
||||
]);
|
||||
$this->request->expects($this->any())
|
||||
->method('getRemoteAddress')
|
||||
->willReturn($remoteAddr);
|
||||
|
||||
$this->assertEquals(
|
||||
|
@ -368,18 +357,37 @@ class CheckSetupControllerTest extends TestCase {
|
|||
);
|
||||
}
|
||||
|
||||
public function dataForwardedForHeaders() {
|
||||
public function dataForwardedForHeadersWorking() {
|
||||
return [
|
||||
// description => trusted proxies, getHeader('REMOTE_ADDR'), getRemoteAddr, expected result
|
||||
'no trusted proxies' => [[], '2.2.2.2', '2.2.2.2', ['HTTP_X_FORWARDED_FOR'], [], true],
|
||||
'trusted proxy, remote addr not trusted proxy' => [['1.1.1.1'], '2.2.2.2', '2.2.2.2', ['HTTP_X_FORWARDED_FOR'], [], true],
|
||||
'trusted proxy, remote addr is trusted proxy, forwarded header working' => [['1.1.1.1'], '1.1.1.1', '2.2.2.2', ['HTTP_X_FORWARDED_FOR'], [], true],
|
||||
'trusted proxy, remote addr is trusted proxy, forwarded header not set' => [['1.1.1.1'], '1.1.1.1', '1.1.1.1', ['HTTP_X_FORWARDED_FOR'], [], false],
|
||||
'no trusted proxies, but header present' => [[], '2.2.2.2', '2.2.2.2', ['HTTP_X_FORWARDED_FOR'], ['HTTP_X_FORWARDED_FOR' => '1.1.1.1'], false],
|
||||
'no trusted proxies, different header present' => [[], '2.2.2.2', '2.2.2.2', ['HTTP_X_FORWARDED_FOR'], ['FORWARDED' => '1.1.1.1'], true],
|
||||
'no trusted proxies' => [[], '2.2.2.2', '2.2.2.2', true],
|
||||
'trusted proxy, remote addr not trusted proxy' => [['1.1.1.1'], '2.2.2.2', '2.2.2.2', true],
|
||||
'trusted proxy, remote addr is trusted proxy, x-forwarded-for working' => [['1.1.1.1'], '1.1.1.1', '2.2.2.2', true],
|
||||
'trusted proxy, remote addr is trusted proxy, x-forwarded-for not set' => [['1.1.1.1'], '1.1.1.1', '1.1.1.1', false],
|
||||
];
|
||||
}
|
||||
|
||||
public function testForwardedHostPresentButTrustedProxiesEmpty() {
|
||||
$this->config->expects($this->once())
|
||||
->method('getSystemValue')
|
||||
->with('trusted_proxies', [])
|
||||
->willReturn([]);
|
||||
$this->request->expects($this->atLeastOnce())
|
||||
->method('getHeader')
|
||||
->willReturnMap([
|
||||
['REMOTE_ADDR', '1.1.1.1'],
|
||||
['X-Forwarded-Host', 'nextcloud.test']
|
||||
]);
|
||||
$this->request->expects($this->any())
|
||||
->method('getRemoteAddress')
|
||||
->willReturn('1.1.1.1');
|
||||
|
||||
$this->assertEquals(
|
||||
false,
|
||||
self::invokePrivate($this->checkSetupController, 'forwardedForHeadersWorking')
|
||||
);
|
||||
}
|
||||
|
||||
public function testCheck() {
|
||||
$this->config->expects($this->at(0))
|
||||
->method('getAppValue')
|
||||
|
|
Loading…
Reference in New Issue