casdebug
This commit is contained in:
parent
9e899cd73d
commit
0c48b87692
|
@ -28,6 +28,10 @@ app_logoutcas:
|
|||
path: /logoutcas
|
||||
defaults: { _controller: App\Controller\SecurityController:logout }
|
||||
|
||||
app_casdebug:
|
||||
path: /user/casdebug
|
||||
defaults: { _controller: App\Controller\SecurityController:casdebug }
|
||||
|
||||
#== Config ==============================================================================================================
|
||||
app_config:
|
||||
path: /admin/config
|
||||
|
|
|
@ -186,6 +186,15 @@ class SecurityController extends AbstractController
|
|||
return true;
|
||||
}
|
||||
|
||||
public function casdebug() {
|
||||
$attributes = $this->get('session')->get('attributes');
|
||||
|
||||
return $this->render('Home/casdebug.html.twig',[
|
||||
"useheader" => true,
|
||||
"usesidebar" => false,
|
||||
"attributes" => $attributes,
|
||||
]);
|
||||
}
|
||||
|
||||
|
||||
private function updateNinegate($user) {
|
||||
|
|
|
@ -0,0 +1,32 @@
|
|||
{% extends "base.html.twig" %}
|
||||
|
||||
{% block body %}
|
||||
{% if wssuse and app.user %}
|
||||
{{ render(path("app_wss_sample")) }}
|
||||
{% endif %}
|
||||
|
||||
|
||||
|
||||
<div class="container">
|
||||
<div class="card mt-5">
|
||||
<div class="card-header">
|
||||
<h2>Atttribut SSO</h2>
|
||||
</div>
|
||||
|
||||
<div class="card-body">
|
||||
{% for key, attribute in attributes %}
|
||||
{% if attribute is iterable %}
|
||||
{% for value in attribute %}
|
||||
<strong>{{ key }}</strong> = {{ value }}<br>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<strong>{{ key }}</strong> = {{ attribute }}<br>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
|
||||
|
|
@ -3,6 +3,29 @@
|
|||
{% block body %}
|
||||
{% if wssuse and app.user %}
|
||||
{{ render(path("app_wss_sample")) }}
|
||||
{% endif %}
|
||||
<div class="card-body">
|
||||
|
||||
{% if app.user %}
|
||||
<div class="container">
|
||||
<div class="card mt-5">
|
||||
<div class="card-header">
|
||||
<h2>Atttribut SSO</h2>
|
||||
</div>
|
||||
|
||||
<div class="card-body">
|
||||
{% for key, attribute in app.session.get("attributes") %}
|
||||
{% if attribute is iterable %}
|
||||
{% for value in attribute %}
|
||||
<strong>{{ key }}</strong> = {{ value }}<br>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<strong>{{ key }}</strong> = {{ attribute }}<br>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% endblock %}
|
||||
|
|
Loading…
Reference in New Issue