File: status.php

package info (click to toggle)
simplesamlphp 1.16.3-1%2Bdeb10u2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 21,036 kB
  • sloc: php: 73,175; ansic: 875; sh: 83; perl: 82; xml: 52; makefile: 46
file content (79 lines) | stat: -rw-r--r-- 2,804 bytes parent folder | download
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
<?php
if (array_key_exists('header', $this->data)) {
    if ($this->getTranslator()->getTag($this->data['header']) !== null) {
        $this->data['header'] = $this->t($this->data['header']);
    }
}

$this->includeAtTemplateBase('includes/header.php');
$this->includeAtTemplateBase('includes/attributes.php');
?>

    <h2><?php if (isset($this->data['header'])) {
            echo($this->data['header']);
        } else {
            echo($this->t('{status:some_error_occurred}'));
        } ?></h2>

    <p><?php echo($this->t('{status:intro}')); ?></p>

<?php
if (isset($this->data['remaining'])) {
    echo('<p>'.$this->t('{status:validfor}', array('%SECONDS%' => $this->data['remaining'])).'</p>');
}

if (isset($this->data['sessionsize'])) {
    echo('<p>'.$this->t('{status:sessionsize}', array('%SIZE%' => $this->data['sessionsize'])).'</p>');
}
?>
    <h2><?php echo($this->t('{status:attributes_header}')); ?></h2>

<?php

$attributes = $this->data['attributes'];
echo(present_attributes($this, $attributes, ''));

$nameid = $this->data['nameid'];
if ($nameid !== false) {
    /** @var \SAML2\XML\saml\NameID $nameid */
    echo "<h2>".$this->t('{status:subject_header}')."</h2>";
    if (is_null($nameid->value)) {
        $list = array("NameID" => array($this->t('{status:subject_notset}')));
        echo "<p>NameID: <span class=\"notset\">".$this->t('{status:subject_notset}')."</span></p>";
    } else {
        $list = array(
            "NameId"                            => array($nameid->value),
        );
        if (!is_null($nameid->Format)) {
            $list[$this->t('{status:subject_format}')] = array($nameid->Format);
        }
        if (!is_null($nameid->NameQualifier)) {
            $list['NameQualifier'] = array($nameid->NameQualifier);
        }
        if (!is_null($nameid->SPNameQualifier)) {
            $list['SPNameQualifier'] = array($nameid->SPNameQualifier);
        }
        if (!is_null($nameid->SPProvidedID)) {
            $list['SPProvidedID'] = array($nameid->SPProvidedID);
        }
    }
    echo(present_attributes($this, $list, ''));
}

$authData = $this->data['authData'];
if (!empty($authData)) {
    echo "<h2>".$this->t('{status:authData_header}')."</h2>";
    echo '<details><summary>' . $this->t('{status:authData_summary}') . '</summary>'; 
    echo('<pre>' . htmlspecialchars(json_encode($this->data['authData'], JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES)) . '</pre>');
    echo '</details>';
}
if (isset($this->data['logout'])) {
    echo('<h2>'.$this->t('{status:logout}').'</h2>');
    echo('<p>'.$this->data['logout'].'</p>');
}

if (isset($this->data['logouturl'])) {
    echo('<a href="'.htmlspecialchars($this->data['logouturl']).'">'.$this->t('{status:logout}').'</a>');
}

$this->includeAtTemplateBase('includes/footer.php');