Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
"malukenho/docheader": "^1.1",
"mockery/mockery": "^1.6.12",
"overtrue/phplint": ">=9.5.6",
"phpcpd-next/phpcpd": "^1.1",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-doctrine": "^2.0",
Expand Down
76 changes: 75 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,22 @@ public function validPushWithOnlyGatewayIsAccepted(): void
]);
}

#[Test]
#[Group('management')]
public function validPushWithServiceNameIsAccepted(): void
{
$this->pushConfiguration([
'gateway' => [
'identity_providers' => [],
'service_providers' => [
array_merge(self::minimalServiceProvider(), [
'service_name' => ['en_GB' => 'Test Service', 'nl_NL' => 'Test Dienst'],
]),
],
],
]);
}

#[Test]
#[Group('management')]
public function pushWithSraaAndEmailTemplatesIsSilentlyAccepted(): void
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?php

/**
* Copyright 2014 SURFnet bv
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

return [
'expectedPropertyPath' => 'gateway.service_providers[0].service_name',
'configuration' => [
'gateway' => [
'identity_providers' => [],
'service_providers' => [
[
"entity_id" => "https://entity.tld/id",
"public_key" => "MIIE...",
"acs" => ["https://entity.tld/consume-assertion"],
"loa" => [
"__default__" => "https://entity.tld/authentication/loa2",
],
"second_factor_only" => false,
"second_factor_only_nameid_patterns" => [],
"assertion_encryption_enabled" => false,
"blacklisted_encryption_algorithms" => [],
// A well-formed locale map (e.g. ['en_GB' => 'Test Service']) is now
// valid. This fixture demonstrates a malformed value is still
// rejected: locale keys must be non-empty strings, not numeric.
"service_name" => [0 => 'Some Name'],
],
],
],
],
];
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ public function validate(array $configuration, string $propertyPath): void
'use_pdp',
'allow_sso_on_2fa',
'set_sso_cookie_on_2fa',
'service_name',
];

if (empty($configuration['use_pdp'])) {
Expand All @@ -54,6 +55,10 @@ public function validate(array $configuration, string $propertyPath): void
$configuration['set_sso_cookie_on_2fa'] = false;
}

if (!array_key_exists('service_name', $configuration)) {
$configuration['service_name'] = null;
}

StepupAssert::keysMatch(
$configuration,
$requiredProperties,
Expand Down Expand Up @@ -91,6 +96,32 @@ public function validate(array $configuration, string $propertyPath): void
$this->validateBooleanValue($configuration, 'use_pdp', $propertyPath);
$this->validateBooleanValue($configuration, 'allow_sso_on_2fa', $propertyPath);
$this->validateBooleanValue($configuration, 'set_sso_cookie_on_2fa', $propertyPath);

if (isset($configuration['service_name'])) {
$this->validateServiceNameLocaleMap($configuration, 'service_name', $propertyPath);
}
}

/**
* service_name is optional; when present it must be a map of locale code
* (e.g. "en_GB", "nl_NL") to a non-empty display name string for that
* locale. Per RFC OpenConext/Stepup-Gateway#587: "If set it must be a
* map of locale to service name."
*
* @param array<string, mixed> $configuration
*/
private function validateServiceNameLocaleMap(array $configuration, string $name, string $propertyPath): void
{
$value = $configuration[$name];
$path = $propertyPath . '.' . $name;

Assertion::isArray($value, 'value must be a map of locale to service name', $path);
foreach ($value as $locale => $serviceName) {
Assertion::string($locale, 'locale keys must be strings', $path);
Assertion::notBlank($locale, 'locale keys must not be empty', $path);
Assertion::string($serviceName, 'service name values must be strings', $path . '.' . $locale);
Assertion::notBlank($serviceName, 'service name values must not be empty', $path . '.' . $locale);
}
}

private function validateStringValue(array $configuration, string $name, string $propertyPath): void
Expand Down