1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
<?php
$this->data['header'] = $this->t('{core:frontpage:page_title}');
$this->includeAtTemplateBase('includes/header.php');
if ($this->data['isadmin']) {
echo '<p class="float-r youareadmin">'.$this->t('{core:frontpage:loggedin_as_admin}').'</p>';
} else {
echo '<p class="float-r youareadmin"><a href="'.$this->data['loginurl'].'">'.
$this->t('{core:frontpage:login_as_admin}').'</a></p>';
}
if (is_array($this->data['metaentries']['hosted']) && count($this->data['metaentries']['hosted']) > 0) {
echo '<dl>';
foreach ($this->data['metaentries']['hosted'] as $hm) {
echo '<dt>'.$this->t($this->data['mtype'][$hm['metadata-set']]).'</dt>';
echo '<dd>';
echo '<p>Entity ID: '.$hm['entityid'];
if (isset($hm['deprecated']) && $hm['deprecated']) {
echo '<br /><b>Deprecated</b>';
}
if ($hm['entityid'] !== $hm['metadata-index']) {
echo '<br />Index: '.$hm['metadata-index'];
}
if (!empty($hm['name'])) {
echo '<br /><strong>'.
$this->getTranslator()->getPreferredTranslation(SimpleSAML\Utils\Arrays::arrayize($hm['name'], 'en')).
'</strong>';
}
if (!empty($hm['descr'])) {
echo '<br /><strong>'.
$this->getTranslator()->getPreferredTranslation(SimpleSAML\Utils\Arrays::arrayize($hm['descr'], 'en')).
'</strong>';
}
echo '<br />[ <a href="'.$hm['metadata-url'].'">'.$this->t('{core:frontpage:show_metadata}').'</a> ]';
echo '</p></dd>';
}
echo '</dl>';
}
if (is_array($this->data['metaentries']['remote']) && count($this->data['metaentries']['remote']) > 0) {
$now = time();
foreach ($this->data['metaentries']['remote'] as $setkey => $set) {
echo '<fieldset class="fancyfieldset"><legend>'.$this->t($this->data['mtype'][$setkey]).' (Trusted)</legend>';
echo '<ul>';
foreach ($set as $entry) {
echo '<li>';
echo('<a href="'.
htmlspecialchars(
SimpleSAML\Module::getModuleURL(
'core/show_metadata.php',
['entityid' => $entry['entityid'], 'set' => $setkey]
)
).'">');
if (!empty($entry['name'])) {
echo htmlspecialchars($this->getTranslator()->getPreferredTranslation(
SimpleSAML\Utils\Arrays::arrayize($entry['name'], 'en')
));
} elseif (!empty($entry['OrganizationDisplayName'])) {
echo htmlspecialchars($this->getTranslator()->getPreferredTranslation(
SimpleSAML\Utils\Arrays::arrayize($entry['OrganizationDisplayName'], 'en')
));
} else {
echo htmlspecialchars($entry['entityid']);
}
echo '</a>';
if (array_key_exists('expire', $entry)) {
if ($entry['expire'] < $now) {
echo '<span style="color: #500; font-weight: bold"> (expired '.
number_format(($now - $entry['expire']) / 3600, 1).' hours ago)</span>';
} else {
echo ' (expires in '.number_format(($entry['expire'] - $now) / 3600, 1).' hours)';
}
}
echo '</li>';
}
echo '</ul>';
echo '</fieldset>';
}
}
echo '<h2>'.$this->t('{core:frontpage:tools}').'</h2>';
echo '<ul>';
foreach ($this->data['links_federation'] as $link) {
echo '<li><a href="'.htmlspecialchars($link['href']).'">'.$this->t($link['text']).'</a></li>';
}
echo '</ul>';
if ($this->data['isadmin']) {
?>
<fieldset class="fancyfieldset">
<legend>Lookup metadata</legend>
<form action="<?php echo SimpleSAML\Module::getModuleURL('core/show_metadata.php'); ?>" method="get">
<p style="margin: 1em 2em ">Look up metadata for entity:
<select name="set">
<?php
if (is_array($this->data['metaentries']['remote']) && count($this->data['metaentries']['remote']) > 0) {
foreach ($this->data['metaentries']['remote'] as $setkey => $set) {
echo '<option value="'.htmlspecialchars($setkey).'">'.$this->t($this->data['mtype'][$setkey]).'</option>';
}
}
?>
</select>
<input type="text" name="entityid" />
<button class="btn" type="submit">Lookup </button>
</p>
</form>
</fieldset>
<?php
}
$this->includeAtTemplateBase('includes/footer.php');
|