surfnet / stepup-saml-bundle
A Symfony 6 bundle that integrates the simplesamlphp\saml2 library with Symfony.
Installs: 67 299
Dependents: 2
Suggesters: 0
Security: 0
Stars: 14
Watchers: 14
Forks: 24
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^8.1
- ext-dom: *
- ext-openssl: *
- robrichards/xmlseclibs: ^3.1.1
- simplesamlphp/saml2: ^4.6
- symfony/dependency-injection: ^6.3
- symfony/framework-bundle: ^6.3
- symfony/security-bundle: ^6.3
- symfony/templating: ^6.3
- twig/twig: ^3
Requires (Dev)
- ext-zlib: *
- mbhsoft/phpunit-xsdvalidation: ^3.0
- mockery/mockery: ^1.5
- overtrue/phplint: *
- phpmd/phpmd: ^2.6
- phpstan/extension-installer: ^1.3
- phpstan/phpstan: ^1.10
- phpunit/phpunit: ^9.5
- psr/log: ~1.0
- sebastian/exporter: ^4.0.5
- sebastian/phpcpd: ^6.0
- squizlabs/php_codesniffer: ^3.7.1
- symfony/phpunit-bridge: ^6.3
- dev-main
- 6.1.0
- 6.0.32
- 6.0.31
- 6.0.30
- 6.0.29
- 6.0.28
- 6.0.27
- 6.0.26
- 6.0.25
- 6.0.24
- 6.0.23
- 6.0.22
- 6.0.21
- 6.0.20
- 6.0.19
- 6.0.18
- 6.0.17
- 6.0.16
- 6.0.15
- 6.0.14
- 6.0.13
- 6.0.12
- 6.0.11
- 6.0.10
- 6.0.9
- 6.0.8
- 6.0.7
- 6.0.6
- 6.0.5
- 6.0.4
- 6.0.3
- 6.0.2
- 6.0.1
- 6.0.0
- 6.0.0-beta
- 5.0.3
- 5.0.2
- 5.0.1
- 5.0.0
- 4.4.3
- 4.4.2
- 4.4.1
- 4.4.0
- 4.3.3
- 4.3.2
- 4.3.1
- 4.3.0
- 4.2.1
- 4.2.0
- 4.1.11
- 4.1.10
- 4.1.9
- 4.1.8
- 4.1.7
- 4.1.6
- 4.1.5
- 4.1.4
- 4.1.3
- 4.1.2
- 4.1.1
- 4.1.0
- 4.0.0
- 3.0.1
- 3.0.0
- 3.0.0-rc5
- 3.0.0-rc4
- 3.0.0-rc3
- 3.0.0-rc2
- 3.0.0-rc1
- 2.11.2
- 2.11.1
- 2.11.0
- 2.10.1
- 2.10.0
- 2.9.0
- 2.8.2
- 2.8.2-beta
- 2.8.1-beta
- 2.8.0-beta
- 2.7.0
- 2.7.0-beta
- 2.6.3
- 2.6.2
- 2.6.1
- 2.6.0
- 2.5.0
- 2.4.0
- 2.3.0
- 2.2.0
- 2.1.0
- 2.0.0
- 1.7.0
- 1.6.0
- 1.5.0
- 1.4.1
- 1.4.0
- 1.3.0
- 1.2.0
- 1.1.0
- 1.0.0
- 0.5.0
- 0.4.0
- 0.3.0
- 0.2.0
- 0.1.0
- dev-feature/improvement-on-service-typing
- dev-feature/reusable-workflows
- dev-feature/ContextClassRef-integrations
- dev-feature/nightly-check
- dev-release/5.0
- dev-release/4.4
- dev-feature/upgrade-dependencies
- dev-release/4.3
- dev-feature/4.3
- dev-release/4.2
- dev-release/4.1
- dev-release/4.0
This package is auto-updated.
Last update: 2024-10-24 10:18:02 UTC
README
A PHP Symfony bundle that adds SAML capabilities to your application using simplesamlphp/saml2
Developed as part of the OpenConext-Stepup Gateway and related OpenConext-Stepup applications that use SAML 2.0
Installation
- Add the package to your Composer file
composer require surfnet/stepup-saml-bundle
How to install with SF6
- Require the bundle in the composer.json (version 4.1.9 or higher)
- Enable the bundle in
config/bundles.php
add to the return statement:Surfnet\SamlBundle\SurfnetSamlBundle::class => ['all' => true],
- Specify the bundle configuration in
config/packages/surfnet_saml.yaml
, consult the configuration section below for available options. - Configure the templates to the Twig Bundle by adding
'%kernel.project_dir%/vendor/surfnet/stepup-saml-bundle/templates': 'SurfnetSaml'
to your twig.yaml config file(s)
Configuration
surfnet_saml: enable_authentication: false hosted: attribute_dictionary: ignore_unknown_attributes: false service_provider: enabled: true assertion_consumer_route: name_of_the_route_of_the_assertion_consumer_url public_key: %surfnet_saml_sp_publickey% private_key: %surfnet_saml_sp_privatekey% identity_provider: enabled: true service_provider_repository: service.name.of.entity_repository sso_route: name_of_the_route_of_the_single_sign_on_url public_key: %surfnet_saml_idp_publickey% private_key: %surfnet_saml_idp_privatekey% metadata: entity_id_route: name_of_the_route_of_metadata_url public_key: %surfnet_saml_metadata_publickey% private_key: %surfnet_saml_metadata_privatekey% remote: identity_provider: enabled: true entity_id: %surfnet_saml_remote_idp_entity_id% sso_url: %surfnet_saml_remote_idp_sso_url% certificate: %surfnet_saml_remote_idp_certificate% service_providers: - entity_id: "%surfnet_saml_remote_sp_entity_id%" certificate_file: "%surfnet_saml_remote_sp_certificate%" assertion_consumer_service_url: "%surfnet_saml_remote_sp_acs%"
The hosted:
configuration lists the configuration for the services (SP, IdP or both) that your application offers. SP and IdP
functionality can be turned off and on individually through the repective enabled
flags.
The remote:
configuration lists, if enabled, the configuration for one or more remote service providers and identity providers to connect to.
If your application authenticates with a single identity provider, you can use the identity_provider:
option as shown above. The identity
provider can be accessed runtime using the @surfnet_saml.remote.idp
service.
If your application authenticates with more than one identity providers, you can omit the identity_provider:
key from configuration and list all
identity providers under identity_providers:
. The identity providers can be accessed by using the @surfnet_saml.remote.identity_providers
service.
remote: identity_providers: - enabled: true entity_id: %surfnet_saml_remote_idp_entity_id% sso_url: %surfnet_saml_remote_idp_sso_url% certificate: %surfnet_saml_remote_idp_certificate%
The inlined certificate in the last line can be replaced with certificate_file
containing a filesystem path to
a file which contains said certificate.
It is recommended to use parameters as listed above. The various publickey
and privatekey
variables are the
contents of the key in a single line, without the certificate etc. delimiters. The use of parameters as listed above
is highly recommended so that the actual key contents can be kept out of the configuration files (using for instance
a local parameters.yml
file).
The service_provider_repository
is a repository of service providers for which you offer IdP services. The service
configured must implement the Surfnet\SamlBundle\Entity\ServiceProviderRepository
interface.
Service providers can be provided statically by using the remote.service_providers configuration option. To use these configured service
providers keep in mind that you need to assign surfnet_saml.remote.service_providers
as service_provider_repository
.
Example Usage
Symfony Authentication
As of version 5 of this bundle, we started supporting SAML authentications via the Stepup SAML bundle. This ties into the Symfony Security component.
Details about how to install this into your SP, see the EXAMPLES.md.
Overriding the ACS processor
Your application will start to try and handle all SAML Responses that are posted to your apps ACS location. In most situations that's exactly what you want. However if you want to handle the response yourself. You can!
- Ensure you add a RelayState statement to the AuthnRequest
- Configure that RelayState value in the
rejected_relay_states
parameter (in your app). This value defaults to[]
. So be sure to pass an array of string values - Thats it.
Metadata Publishing
<?php namespace Acme\SamlBundle use Surfnet\SamlBundle\Http\XMLResponse; use Symfony\Bundle\FrameworkBundle\Controller\Controller; use Symfony\Component\HttpFoundation\Request; class MetadataController extends Controller { public function metadataAction(Request $request) { /** @var \Surfnet\SamlBundle\Metadata\MetadataFactory $metadataFactory */ $metadataFactory = $this->get('surfnet_saml.metadata_factory'); return new XMLResponse($metadataFactory->generate()); } }
See more examples in EXAMPLES.md.
Release strategy
CHANGELOG.md
Please read: https://github.com/OpenConext/Stepup-Deploy/wiki/Release-Management for more information on the release strategy used in Stepup projects.
UPGRADING.md
When introducing backwards compatible breaking changes in the bundle. Please update the UPGRADING.md file to instruct users how to deal with these changes. This makes upgrading as painless as possible.