davide.cucurnia@vola.it
2024-02-08 d5d253a98cabfe8f57335a2805120335d5ab265d
resources/views/vodafone_fake_sso/choose_profile.blade.php
@@ -45,6 +45,13 @@
    <div class="grid">
        <h1 class="vfa-red-title">Standalone FakeSSO Server</h1>
        <div class="c-box" id="status-info">
            @if (isset($loggedInfo["logged"]) && $loggedInfo["logged"] == "1")
                <p>Loggato: {{$loggedInfo["username"]}}</p>
                <p>Profilo numero: {{$loggedInfo["token"]}}</p>
            @endif
            <p>Controllo cookie: {{(isset($loggedInfo["message"])) ? $loggedInfo["message"] : 'OK'}}</p>
        </div>
        <form id="fakesso" name="fakesso" action="" method="POST">
            @csrf
@@ -84,7 +91,7 @@
        document.getElementById("btnAttiva").onclick = setCookies;
        document.getElementById("btnReset").onclick = delCookies;
        function callAjax(url) {
        function callAjax(url, isSet) {
            document.getElementById('vola-loading').style.display = 'block';
            let profile = document.getElementById('sel_attiva').value;
            $.ajax({
@@ -97,6 +104,7 @@
                data: JSON.stringify({prof: profile}),
            }).done(function (msg) {
                document.getElementById('vola-loading').style.display = 'none';
                if (isSet) document.getElementById('status-info').innerHTML = 'Creati cookie per profilo xno:' + profile;
            }).fail(function() {
                document.getElementById('vola-loading').style.display = 'none';
            });
@@ -104,12 +112,12 @@
        function setCookies() {
            let setUri = location.origin + "{{$setUrl}}";
            callAjax(setUri);
            callAjax(setUri, true);
        }
        function delCookies() {
            let logoutUri = location.origin + "{{$clearUrl}}";
            callAjax(logoutUri);
            callAjax(logoutUri, false);
        }
    });