Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simplesamlphp
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Perun
Perun ProxyIdP
v1
simplesamlphp
Commits
82e58db7
Commit
82e58db7
authored
8 years ago
by
Pieter van der Meulen
Browse files
Options
Downloads
Patches
Plain Diff
Allow the optional Subject NameID to be set in a SAML AuthnRequest through "saml:NameID"
parent
2428e8f4
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/saml/docs/sp.md
+7
-0
7 additions, 0 deletions
modules/saml/docs/sp.md
modules/saml/lib/Auth/Source/SP.php
+7
-0
7 additions, 0 deletions
modules/saml/lib/Auth/Source/SP.php
with
14 additions
and
0 deletions
modules/saml/docs/sp.md
+
7
−
0
View file @
82e58db7
...
...
@@ -52,6 +52,13 @@ All these parameters override the equivalent option from the configuration.
:
*Note*
: SAML 2 specific.
`saml:NameID`
: Add a Subject element with a NameID to the SAML AuthnRequest for the IdP.
This is an associative array with the fields for the NameID.
Example:
`array('Value' => 'user@example.org', 'Format' => SAML2_Const::NAMEID_UNSPECIFIED)`
:
*Note*
: SAML 2 specific.
Authentication data
-------------------
...
...
This diff is collapsed.
Click to expand it.
modules/saml/lib/Auth/Source/SP.php
+
7
−
0
View file @
82e58db7
...
...
@@ -205,6 +205,13 @@ class sspmod_saml_Auth_Source_SP extends SimpleSAML_Auth_Source {
$ar
->
setIsPassive
((
bool
)
$state
[
'isPassive'
]);
}
if
(
isset
(
$state
[
'saml:NameID'
]))
{
if
(
!
is_array
(
$state
[
'saml:NameID'
]))
{
throw
new
SimpleSAML_Error_Exception
(
'Invalid value of $state[\'saml:NameID\'].'
);
}
$ar
->
setNameId
(
$state
[
'saml:NameID'
]);
}
if
(
isset
(
$state
[
'saml:NameIDPolicy'
]))
{
if
(
is_string
(
$state
[
'saml:NameIDPolicy'
]))
{
$policy
=
array
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment