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
4b45e4f1
Commit
4b45e4f1
authored
9 years ago
by
Jaime Perez Crespo
Browse files
Options
Downloads
Patches
Plain Diff
Deprecate SimpleSAML_Utilities::checkDateConditions().
parent
60ec160e
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
lib/SimpleSAML/Utilities.php
+4
-1
4 additions, 1 deletion
lib/SimpleSAML/Utilities.php
lib/SimpleSAML/XML/Shib13/AuthnResponse.php
+38
-1
38 additions, 1 deletion
lib/SimpleSAML/XML/Shib13/AuthnResponse.php
with
42 additions
and
2 deletions
lib/SimpleSAML/Utilities.php
+
4
−
1
View file @
4b45e4f1
...
...
@@ -130,9 +130,12 @@ class SimpleSAML_Utilities {
}
/**
* @deprecated This method will be removed in SSP 2.0.
*/
public
static
function
checkDateConditions
(
$start
=
NULL
,
$end
=
NULL
)
{
$currentTime
=
time
();
if
(
!
empty
(
$start
))
{
$startTime
=
SAML2_Utils
::
xsDateTimeToTimestamp
(
$start
);
/* Allow for a 10 minute difference in Time */
...
...
This diff is collapsed.
Click to expand it.
lib/SimpleSAML/XML/Shib13/AuthnResponse.php
+
38
−
1
View file @
4b45e4f1
...
...
@@ -212,7 +212,7 @@ class SimpleSAML_XML_Shib13_AuthnResponse {
$end
=
$condition
->
getAttribute
(
'NotOnOrAfter'
);
if
(
$start
&&
$end
)
{
if
(
!
SimpleSAML_Utilities
::
checkDateConditions
(
$start
,
$end
))
{
if
(
!
self
::
checkDateConditions
(
$start
,
$end
))
{
error_log
(
'Date check failed ... (from '
.
$start
.
' to '
.
$end
.
')'
);
continue
;
}
...
...
@@ -427,5 +427,42 @@ class SimpleSAML_XML_Shib13_AuthnResponse {
return
$attr
;
}
/**
* Check if we are currently between the given date & time conditions.
*
* Note that this function allows a 10-minute leap from the initial time as marked by $start.
*
* @param string|null $start A SAML2 timestamp marking the start of the period to check. Defaults to null, in which
* case there's no limitations in the past.
* @param string|null $end A SAML2 timestamp marking the end of the period to check. Defaults to null, in which
* case there's no limitations in the future.
*
* @return bool True if the current time belongs to the period specified by $start and $end. False otherwise.
*
* @see \SAML2_Utils::xsDateTimeToTimestamp.
*
* @author Andreas Solberg, UNINETT AS <andreas.solberg@uninett.no>
* @author Olav Morken, UNINETT AS <olav.morken@uninett.no>
*/
protected
static
function
checkDateConditions
(
$start
=
null
,
$end
=
null
)
{
$currentTime
=
time
();
if
(
!
empty
(
$start
))
{
$startTime
=
\SAML2_Utils
::
xsDateTimeToTimestamp
(
$start
);
// allow for a 10 minute difference in time
if
((
$startTime
<
0
)
||
((
$startTime
-
600
)
>
$currentTime
))
{
return
false
;
}
}
if
(
!
empty
(
$end
))
{
$endTime
=
\SAML2_Utils
::
xsDateTimeToTimestamp
(
$end
);
if
((
$endTime
<
0
)
||
(
$endTime
<=
$currentTime
))
{
return
false
;
}
}
return
true
;
}
}
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