File: Portal.php

package info (click to toggle)
simplesamlphp 1.19.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 43,240 kB
  • sloc: php: 200,806; javascript: 15,025; xml: 3,336; sh: 265; perl: 82; makefile: 70; python: 5
file content (124 lines) | stat: -rw-r--r-- 3,303 bytes parent folder | download | duplicates (3)
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
<?php

declare(strict_types=1);

namespace SimpleSAML\Module\portal;

use SimpleSAML\Configuration;
use SimpleSAML\Module;
use SimpleSAML\Locale\Translate;

class Portal
{
    /** @var array */
    private $pages;

    /** @var array|null */
    private $config;


    /**
     * @param array $pages
     * @param array|null $config
     */
    public function __construct($pages, $config = null)
    {
        $this->pages = $pages;
        $this->config = $config;
    }


    /**
     * @param string $thispage
     * @return array|null
     */
    public function getTabset($thispage)
    {
        if (!isset($this->config)) {
            return null;
        }
        foreach ($this->config as $set) {
            if (in_array($thispage, $set, true)) {
                return $set;
            }
        }
        return null;
    }


    /**
     * @param string $thispage
     * @return bool
     */
    public function isPortalized($thispage)
    {
        if (!isset($this->config)) {
            return false;
        }
        foreach ($this->config as $set) {
            if (in_array($thispage, $set, true)) {
                return true;
            }
        }
        return false;
    }


    /**
     * @param \SimpleSAML\Locale\Translate $translator
     * @param string $thispage
     * @return string
     */
    public function getLoginInfo($translator, $thispage)
    {
        $info = ['info' => '', 'translator' => $translator, 'thispage' => $thispage];
        Module::callHooks('portalLoginInfo', $info);
        return $info['info'];
    }


    /**
     * @param string $thispage
     * @return string
     */
    public function getMenu($thispage)
    {
        $config = Configuration::getInstance();
        $t = new Translate($config);
        $tabset = $this->getTabset($thispage);
        $logininfo = $this->getLoginInfo($t, $thispage);
        $classes = 'tabset_tabs ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all';
        $text = '<ul class="' . $classes . '">';
        foreach ($this->pages as $pageid => $page) {
            if (isset($tabset) && !in_array($pageid, $tabset, true)) {
                continue;
            }
            $name = 'uknown';
            if (isset($page['text'])) {
                $name = $page['text'];
            }
            if (isset($page['shorttext'])) {
                $name = $page['shorttext'];
            }

            /** @var string $name */
            $name = $t->t($name);

            if (!isset($page['href'])) {
                $text .= '<li class="ui-state-default ui-corner-top ui-tabs-selected ui-state-active"><a href="#">' .
                    $name . '</a></li>';
            } elseif ($pageid === $thispage) {
                $text .= '<li class="ui-state-default ui-corner-top ui-tabs-selected ui-state-active"><a href="#">' .
                    $name . '</a></li>';
            } else {
                $text .= '<li class="ui-state-default ui-corner-top"><a href="' . $page['href'] . '">' .
                    $name . '</a></li>';
            }
        }
        $text .= '</ul>';
        if (!empty($logininfo)) {
            $text .= '<p class="logininfo" style="text-align: right; margin: 0px">' . $logininfo . '</p>';
        }
        return $text;
    }
}