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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
<?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>';
}
function mtype($set)
{
switch ($set) {
case 'saml20-sp-remote':
return '{admin:metadata_saml20-sp}';
case 'saml20-sp-hosted':
return '{admin:metadata_saml20-sp}';
case 'saml20-idp-remote':
return '{admin:metadata_saml20-idp}';
case 'saml20-idp-hosted':
return '{admin:metadata_saml20-idp}';
case 'shib13-sp-remote':
return '{admin:metadata_shib13-sp}';
case 'shib13-sp-hosted':
return '{admin:metadata_shib13-sp}';
case 'shib13-idp-remote':
return '{admin:metadata_shib13-idp}';
case 'shib13-idp-hosted':
return '{admin:metadata_shib13-idp}';
case 'adfs-sp-remote':
return '{admin:metadata_adfs-sp}';
case 'adfs-sp-hosted':
return '{admin:metadata_adfs-sp}';
case 'adfs-idp-remote':
return '{admin:metadata_adfs-idp}';
case 'adfs-idp-hosted':
return '{admin:metadata_adfs-idp}';
}
}
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(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->getTranslation(SimpleSAML\Utils\Arrays::arrayize($hm['name'], 'en')).
'</strong>';
}
if (!empty($hm['descr'])) {
echo '<br /><strong>'.$this->getTranslation(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(mtype($setkey)).' (Trusted)</legend>';
echo '<ul>';
foreach ($set as $entry) {
echo '<li>';
echo('<a href="'.
htmlspecialchars(
SimpleSAML_Module::getModuleURL(
'core/show_metadata.php',
array('entityid' => $entry['entityid'], 'set' => $setkey)
)
).'">');
if (!empty($entry['name'])) {
echo htmlspecialchars($this->getTranslation(SimpleSAML\Utils\Arrays::arrayize($entry['name'], 'en')));
} elseif (!empty($entry['OrganizationDisplayName'])) {
echo htmlspecialchars(
$this->getTranslation(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>';
}
}
?>
<h2><?php echo $this->t('{core:frontpage:tools}'); ?></h2>
<ul><?php
foreach ($this->data['links_federation'] as $link) {
echo '<li><a href="'.htmlspecialchars($link['href']).'">'.$this->t($link['text']).'</a></li>';
}
?>
</ul>
<?php
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(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');
|