Newer
Older
<?php
$this->data['header'] = $this->t('metaover_header');
$this->data['icon'] = 'bino.png';
$this->includeAtTemplateBase('includes/header.php');
?>
Andreas Åkre Solberg
committed
Andreas Åkre Solberg
committed
Andreas Åkre Solberg
committed
<p><?php echo $this->t('metaover_intro'); ?></p>
Andreas Åkre Solberg
committed
Andreas Åkre Solberg
committed
<?php
function showEntry($t, $id) {
if (!array_key_exists($id, $t->data)) {
/* This metadata does not exist. */
return;
}
$header = $t->t('metaover_group_' . $id);
$list = $t->data[$id];
$baseurl = $t->data['baseurlpath'];
Andreas Åkre Solberg
committed
echo '<h3>' . $header . '</h3>';
Andreas Åkre Solberg
committed
Andreas Åkre Solberg
committed
Andreas Åkre Solberg
committed
foreach ($list AS $entityid => $entity) {
Andreas Åkre Solberg
committed
$encodedEntityID = preg_replace('/=/', '_', base64_encode($entityid . $header));
Andreas Åkre Solberg
committed
$name = $entityid;
if (isset($entity['optional.found']['name'])) $name = $entity['optional.found']['name'];
//print_r($entity);
Andreas Åkre Solberg
committed
$warning = false;
if (count($entity['leftovers']) > 0) $warning = TRUE;
if (count($entity['required.notfound']) > 0) $warning = TRUE;
Andreas Åkre Solberg
committed
Andreas Åkre Solberg
committed
echo '<h4 style="padding-left: 2em; clear: both;" onclick="document.getElementById(\'metadatasection-' . $encodedEntityID . '\').style.display=\'block\';">' . htmlspecialchars($name) . '</h4>';
Andreas Åkre Solberg
committed
if ($warning) {
echo '<div><img src="/' . $baseurl . 'resources/icons/caution.png" style="float: left; margin-right: 1em" />';
echo $t->t('metaover_errorentry') . '</div>';
Andreas Åkre Solberg
committed
}
Andreas Åkre Solberg
committed
echo '<div id="metadatasection-' . $encodedEntityID . '" style="display: none">';
Andreas Åkre Solberg
committed
Andreas Åkre Solberg
committed
if (isset($entity['optional.found']['description'])) {
Olav Morken
committed
echo '<p>' . htmlspecialchars($entity['optional.found']['description']) . '</p>';
Andreas Åkre Solberg
committed
}
Andreas Åkre Solberg
committed
echo '<div style="margin-left: 1em">';
echo '<div class="efieldlist"><h5>' . $t->t('metaover_required_found') . '</h5>';
Andreas Åkre Solberg
committed
echo '<dl>';
Andreas Åkre Solberg
committed
foreach ($entity['required.found'] AS $key => $value) {
Andreas Åkre Solberg
committed
echo '<dt>' . htmlspecialchars($key) . '</dt><dd>' . htmlspecialchars(var_export($value, TRUE)) . '</dd>';
Andreas Åkre Solberg
committed
}
echo '</dl>' . "\n\n";
Andreas Åkre Solberg
committed
Andreas Åkre Solberg
committed
if (count($entity['required.notfound']) > 0) {
Andreas Åkre Solberg
committed
echo '</div><div class="efieldlist warning">';
echo '<h5>' . $t->t('metaover_required_not_found') . '</h5><ul>';
Andreas Åkre Solberg
committed
foreach ($entity['required.notfound'] AS $key) {
Olav Morken
committed
echo '<li>' . htmlspecialchars($key) . '</li>';
Andreas Åkre Solberg
committed
}
echo '</ul>';
}
Andreas Åkre Solberg
committed
Andreas Åkre Solberg
committed
if (count($entity['optional.found']) > 0) {
Andreas Åkre Solberg
committed
echo '</div><div class="efieldlist">';
echo '<h5>' . $t->t('metaover_optional_found') . '</h5>';
Andreas Åkre Solberg
committed
echo '<dl>';
Andreas Åkre Solberg
committed
foreach ($entity['optional.found'] AS $key => $value) {
Andreas Åkre Solberg
committed
echo '<dt>' . htmlspecialchars($key) . '</dt><dd>' . htmlspecialchars(var_export($value, TRUE)) . '</dd>';
Andreas Åkre Solberg
committed
}
Andreas Åkre Solberg
committed
echo '</dl>';
Andreas Åkre Solberg
committed
}
Andreas Åkre Solberg
committed
Andreas Åkre Solberg
committed
if (count($entity['optional.notfound']) > 0) {
Andreas Åkre Solberg
committed
echo '</div><div class="efieldlist info">';
echo '<h5>' . $t->t('metaover_optional_not_found') . '</h5><ul>';
Andreas Åkre Solberg
committed
foreach ($entity['optional.notfound'] AS $key) {
Olav Morken
committed
echo '<li>' . htmlspecialchars($key) . '</li>';
Andreas Åkre Solberg
committed
}
echo '</ul>';
}
if (count($entity['leftovers']) > 0) {
Andreas Åkre Solberg
committed
echo '</div><div class="efieldlist warning">';
echo '<h5>' . $t->t('metaover_unknown_found') . '</h5><ul>';
Andreas Åkre Solberg
committed
foreach ($entity['leftovers'] AS $key => $value) {
Olav Morken
committed
echo '<li>' . htmlspecialchars($key) . '</li>';
Andreas Åkre Solberg
committed
}
echo '</ul>';
}
Andreas Åkre Solberg
committed
echo '</div></div>';
echo '</div>' . "\n\n";;
Andreas Åkre Solberg
committed
}
}
showEntry($this, 'metadata.saml20-sp-hosted');
showEntry($this, 'metadata.saml20-sp-remote');
showEntry($this, 'metadata.saml20-idp-hosted');
showEntry($this, 'metadata.saml20-idp-remote');
showEntry($this, 'metadata.shib13-sp-hosted');
showEntry($this, 'metadata.shib13-sp-remote');
showEntry($this, 'metadata.shib13-idp-hosted');
showEntry($this, 'metadata.shib13-idp-remote');
showEntry($this, 'metadata.wsfed-sp-hosted');
showEntry($this, 'metadata.wsfed-idp-remote');
Olav Morken
committed
Andreas Åkre Solberg
committed
?>
<?php $this->includeAtTemplateBase('includes/footer.php'); ?>