203 lines
		
	
	
		
			6.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			203 lines
		
	
	
		
			6.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
require_once $_SERVER['DOCUMENT_ROOT'] . '/modals/footer.php';
 | 
						|
?>
 | 
						|
<div style="margin-bottom: 100px;"></div>
 | 
						|
<script src="/js/bootstrap.min.js"></script>
 | 
						|
<script src="/js/bootstrap-switch.min.js"></script>
 | 
						|
<script src="/js/bootstrap-slider.min.js"></script>
 | 
						|
<script src="/js/bootstrap-select.min.js"></script>
 | 
						|
<script src="/js/notifications.min.js"></script>
 | 
						|
<script src="/js/u2f-api.js"></script>
 | 
						|
<script src="/js/api.js"></script>
 | 
						|
<script>
 | 
						|
// Select language and reopen active URL without POST
 | 
						|
function setLang(sel) {
 | 
						|
  $.post( "<?= $_SERVER['REQUEST_URI']; ?>", {lang: sel} );
 | 
						|
  window.location.href = window.location.pathname + window.location.search;
 | 
						|
}
 | 
						|
 | 
						|
$(document).ready(function() {
 | 
						|
  function mailcow_alert_box(message, type) {
 | 
						|
    msg = $('<span/>').html(message).text();
 | 
						|
    $.notify({message: msg},{type: type,placement: {from: "bottom",align: "right"},animate: {enter: 'animated fadeInUp',exit: 'animated fadeOutDown'}});
 | 
						|
  }
 | 
						|
  <?php if (isset($_SESSION['return'])): ?>
 | 
						|
  mailcow_alert_box("<?= $_SESSION['return']['msg']; ?>",  "<?= $_SESSION['return']['type']; ?>");
 | 
						|
  <?php endif; unset($_SESSION['return']); ?>
 | 
						|
  // Confirm TFA modal
 | 
						|
  <?php if (isset($_SESSION['pending_tfa_method'])):?>
 | 
						|
  $('#ConfirmTFAModal').modal({
 | 
						|
    backdrop: 'static',
 | 
						|
    keyboard: false
 | 
						|
  });
 | 
						|
  $('#ConfirmTFAModal').on('shown.bs.modal', function(){
 | 
						|
      $(this).find('#token').focus();
 | 
						|
      // If U2F
 | 
						|
      if(document.getElementById("u2f_auth_data") !== null) {
 | 
						|
        $.ajax({
 | 
						|
          type: "GET",
 | 
						|
          cache: false,
 | 
						|
          dataType: 'script',
 | 
						|
          url: "/api/v1/get/u2f-authentication/<?= (isset($_SESSION['pending_mailcow_cc_username'])) ? $_SESSION['pending_mailcow_cc_username'] : null; ?>",
 | 
						|
          success: function(data){
 | 
						|
            data;
 | 
						|
          }
 | 
						|
        });
 | 
						|
        setTimeout(function() {
 | 
						|
          console.log("sign: ", req);
 | 
						|
          u2f.sign(req, function(data) {
 | 
						|
            var form = document.getElementById('u2f_auth_form');
 | 
						|
            var auth = document.getElementById('u2f_auth_data');
 | 
						|
            console.log("Authenticate callback", data);
 | 
						|
            auth.value = JSON.stringify(data);
 | 
						|
            form.submit();
 | 
						|
          });
 | 
						|
        }, 1000);
 | 
						|
      }
 | 
						|
  });
 | 
						|
  <?php endif; ?>
 | 
						|
 | 
						|
  // Set TFA modals
 | 
						|
 | 
						|
  $('#selectTFA').change(function () {
 | 
						|
    if ($(this).val() == "yubi_otp") {
 | 
						|
      $('#YubiOTPModal').modal('show');
 | 
						|
      $("option:selected").prop("selected", false);
 | 
						|
    }
 | 
						|
    if ($(this).val() == "totp") {
 | 
						|
      $('#TOTPModal').modal('show');
 | 
						|
      $("option:selected").prop("selected", false);
 | 
						|
    }
 | 
						|
    if ($(this).val() == "u2f") {
 | 
						|
      $('#U2FModal').modal('show');
 | 
						|
      $("option:selected").prop("selected", false);
 | 
						|
      $.ajax({
 | 
						|
        type: "GET",
 | 
						|
        cache: false,
 | 
						|
        dataType: 'script',
 | 
						|
        url: "/api/v1/get/u2f-registration/<?= (isset($_SESSION['mailcow_cc_username'])) ? $_SESSION['mailcow_cc_username'] : null; ?>",
 | 
						|
        success: function(data){
 | 
						|
          data;
 | 
						|
        }
 | 
						|
      });
 | 
						|
      setTimeout(function() {
 | 
						|
        console.log("Register: ", req);
 | 
						|
        u2f.register([req], sigs, function(data) {
 | 
						|
          var form  = document.getElementById('u2f_reg_form');
 | 
						|
          var reg   = document.getElementById('u2f_register_data');
 | 
						|
          console.log("Register callback", data);
 | 
						|
          if (data.errorCode && data.errorCode != 0) {
 | 
						|
            var u2f_return_code = document.getElementById('u2f_return_code');
 | 
						|
            u2f_return_code.style.display = u2f_return_code.style.display === 'none' ? '' : null;
 | 
						|
            if (data.errorCode == "4") { data.errorCode = "4 - The presented device is not eligible for this request. For a registration request this may mean that the token is already registered, and for a sign request it may mean that the token does not know the presented key handle"; }
 | 
						|
            u2f_return_code.innerHTML = 'Error code: ' + data.errorCode;
 | 
						|
            return;
 | 
						|
          }
 | 
						|
          reg.value = JSON.stringify(data);
 | 
						|
          form.submit();
 | 
						|
        });
 | 
						|
      }, 1000);
 | 
						|
    }
 | 
						|
    if ($(this).val() == "none") {
 | 
						|
      $('#DisableTFAModal').modal('show');
 | 
						|
      $("option:selected").prop("selected", false);
 | 
						|
    }
 | 
						|
  });
 | 
						|
 | 
						|
  // Activate tooltips
 | 
						|
  $(function () {
 | 
						|
    $('[data-toggle="tooltip"]').tooltip()
 | 
						|
  })
 | 
						|
  // Hide alerts after n seconds
 | 
						|
  $("#alert-fade").fadeTo(7000, 500).slideUp(500, function(){
 | 
						|
    $("#alert-fade").alert('close');
 | 
						|
  });
 | 
						|
 | 
						|
  // Remember last navigation pill
 | 
						|
  (function () {
 | 
						|
    'use strict';
 | 
						|
    if ($('a[data-toggle="tab"]').length) {
 | 
						|
      $('a[data-toggle="tab"]').on('shown.bs.tab', function (e) {
 | 
						|
        var id = $(this).parents('[role="tablist"]').attr('id');
 | 
						|
        var key = 'lastTag';
 | 
						|
        if (id) {
 | 
						|
          key += ':' + id;
 | 
						|
        }
 | 
						|
        localStorage.setItem(key, $(e.target).attr('href'));
 | 
						|
      });
 | 
						|
      $('[role="tablist"]').each(function (idx, elem) {
 | 
						|
        var id = $(elem).attr('id');
 | 
						|
        var key = 'lastTag';
 | 
						|
        if (id) {
 | 
						|
          key += ':' + id;
 | 
						|
        }
 | 
						|
        var lastTab = localStorage.getItem(key);
 | 
						|
        if (lastTab) {
 | 
						|
          $('[href="' + lastTab + '"]').tab('show');
 | 
						|
        }
 | 
						|
      });
 | 
						|
    }
 | 
						|
  })();
 | 
						|
 | 
						|
  // Disable submit after submitting form
 | 
						|
  $('form').submit(function() {
 | 
						|
    if ($('form button[type="submit"]').data('submitted') == '1') {
 | 
						|
      return false;
 | 
						|
    } else {
 | 
						|
      $(this).find('button[type="submit"]').first().text('<?= $lang['footer']['loading']; ?>');
 | 
						|
      $('form button[type="submit"]').attr('data-submitted', '1');
 | 
						|
      function disableF5(e) { if ((e.which || e.keyCode) == 116 || (e.which || e.keyCode) == 82) e.preventDefault(); };
 | 
						|
      $(document).on("keydown", disableF5);
 | 
						|
    }
 | 
						|
  });
 | 
						|
 | 
						|
  // IE fix to hide scrollbars when table body is empty
 | 
						|
  $('tbody').filter(function (index) {
 | 
						|
    return $(this).children().length < 1;
 | 
						|
  }).remove();
 | 
						|
 | 
						|
  // Init Bootstrap Selectpicker
 | 
						|
  $('select').selectpicker();
 | 
						|
 | 
						|
  // Trigger SOGo restart
 | 
						|
  $('#triggerRestartSogo').click(function(){
 | 
						|
    $(this).prop("disabled",true);
 | 
						|
    $(this).html('<span class="glyphicon glyphicon-refresh glyphicon-spin"></span> ');
 | 
						|
    $('#statusTriggerRestartSogo').text('Stopping SOGo workers, this may take a while... ');
 | 
						|
    $.ajax({
 | 
						|
      method: 'get',
 | 
						|
      url: '/inc/call_sogo_ctrl.php',
 | 
						|
      data: {
 | 
						|
        'ajax': true,
 | 
						|
        'ACTION': 'stop'
 | 
						|
      },
 | 
						|
      success: function(data) {
 | 
						|
        $('#statusTriggerRestartSogo').append(data);
 | 
						|
        $('#statusTriggerRestartSogo').append('<br>Starting SOGo...');
 | 
						|
        $.ajax({
 | 
						|
          method: 'get',
 | 
						|
          url: '/inc/call_sogo_ctrl.php',
 | 
						|
          data: {
 | 
						|
            'ajax': true,
 | 
						|
            'ACTION': 'start'
 | 
						|
          },
 | 
						|
          success: function(data) {
 | 
						|
            $('#statusTriggerRestartSogo').append(data);
 | 
						|
            $('#triggerRestartSogo').html('<span class="glyphicon glyphicon-ok"></span> ');
 | 
						|
          }
 | 
						|
        });
 | 
						|
      }
 | 
						|
    });
 | 
						|
  });
 | 
						|
 | 
						|
  // CSRF
 | 
						|
  $('<input type="hidden" value="<?= $_SESSION['CSRF']['TOKEN']; ?>">').attr('id', 'csrf_token').attr('name', 'csrf_token').appendTo('form');
 | 
						|
});
 | 
						|
</script>
 | 
						|
 | 
						|
</body>
 | 
						|
</html>
 | 
						|
<?php
 | 
						|
$stmt = null;
 | 
						|
$pdo = null;
 |