diff --git a/lib/SimpleSAML/Metadata/SAMLBuilder.php b/lib/SimpleSAML/Metadata/SAMLBuilder.php index 116843bf1532e2a8ff7c9d067a73380359f3e39c..894ac465c9e6677bdbf6f3995f00948a6148032c 100644 --- a/lib/SimpleSAML/Metadata/SAMLBuilder.php +++ b/lib/SimpleSAML/Metadata/SAMLBuilder.php @@ -24,20 +24,40 @@ class SimpleSAML_Metadata_SAMLBuilder { private $entityDescriptor; + private $maxCache = NULL; + private $maxDuration = NULL; + /** * Initialize the builder. * * @param string $entityId The entity id of the entity. */ - public function __construct($entityId) { + public function __construct($entityId, $maxCache = NULL, $maxDuration = NULL) { assert('is_string($entityId)'); + $this->maxCache = $maxCache; + $this->maxDuration = $maxDuration; + $this->document = new DOMDocument(); $this->entityDescriptor = $this->createElement('EntityDescriptor'); $this->entityDescriptor->setAttribute('entityID', $entityId); + $this->document->appendChild($this->entityDescriptor); } + private function setExpiration($metadata) { + + if (array_key_exists('expire', $metadata)) { + if ($metadata['expire'] - time() < $this->maxDuration) + $this->maxDuration = $metadata['expire'] - time(); + } + + if ($this->maxCache !== NULL) + $this->entityDescriptor->setAttribute('cacheDuration', $this->maxCache); + if ($this->maxDuration !== NULL) + $this->entityDescriptor->setAttribute('validUntil', SimpleSAML_Utilities::generateTimestamp(time() + $this->maxDuration)); + } + /** * Retrieve the EntityDescriptor. @@ -175,6 +195,8 @@ class SimpleSAML_Metadata_SAMLBuilder { public function addMetadata($set, $metadata) { assert('is_string($set)'); assert('is_array($metadata)'); + + $this->setExpiration($metadata); switch ($set) { case 'saml20-sp-remote': @@ -194,7 +216,6 @@ class SimpleSAML_Metadata_SAMLBuilder { } } - /** * Add SAML 2.0 SP metadata. * diff --git a/modules/aggregator/config-template/aggregator.php b/modules/aggregator/config-template/aggregator.php index 772f59a2fe82bb16fb97608a9b334c12805fafe6..5405b59a174364313358a79c9c9bb8559d537df5 100644 --- a/modules/aggregator/config-template/aggregator.php +++ b/modules/aggregator/config-template/aggregator.php @@ -12,6 +12,9 @@ $config = array( ), ), + + 'maxCache' => 60*60*24, // 24 hour cache time + 'maxDuration' => 60*60*24*5, // Maximum 5 days duration on ValidUntil. /* Whether metadata should be signed. */ 'sign.enable' => FALSE, diff --git a/modules/aggregator/www/index.php b/modules/aggregator/www/index.php index 3afe2d0ff8726ca9449dbef4b186e75781f98d4d..5cf8b605cf0ca8a7d0e0db1bb2f75aab73d3e082 100644 --- a/modules/aggregator/www/index.php +++ b/modules/aggregator/www/index.php @@ -100,7 +100,9 @@ foreach ($entities as $entity => $sets) { $tmp->loadXML(base64_decode($entityDescriptor)); $entityDescriptor = $tmp->documentElement; } else { - $tmp = new SimpleSAML_Metadata_SAMLBuilder($entity); + $tmp = new SimpleSAML_Metadata_SAMLBuilder($entity, + $aggregatorConfig->getValue('maxCache', NULL), $aggregatorConfig->getValue('maxDuration', NULL)); + foreach ($sets as $set => $metadata) { $tmp->addMetadata($set, $metadata); }