浏览代码

[Web] add log messages to verify-sso function

FreddleSpl0it 1 年之前
父节点
当前提交
2f1e1438e9
共有 1 个文件被更改,包括 6 次插入6 次删除
  1. 6 6
      data/web/inc/functions.inc.php

+ 6 - 6
data/web/inc/functions.inc.php

@@ -2378,8 +2378,8 @@ function identity_provider($_action, $_data = null, $_extra = null) {
         clear_session();  
         clear_session();  
         $_SESSION['return'][] =  array(
         $_SESSION['return'][] =  array(
           'type' => 'danger',
           'type' => 'danger',
-          'log' => array(__FUNCTION__, $_SESSION['mailcow_cc_username'], $_SESSION['mailcow_cc_role']),
-          'msg' => 'login_failed'
+          'log' => array(__FUNCTION__, $info['email']),
+          'msg' => array('login_failed', 'empty attribute mapping or missing template attribute')
         );
         );
         return false;
         return false;
       }
       }
@@ -2390,8 +2390,8 @@ function identity_provider($_action, $_data = null, $_extra = null) {
         clear_session();  
         clear_session();  
         $_SESSION['return'][] =  array(
         $_SESSION['return'][] =  array(
           'type' => 'danger',
           'type' => 'danger',
-          'log' => array(__FUNCTION__, $_SESSION['mailcow_cc_username'], $_SESSION['mailcow_cc_role']),
-          'msg' => 'login_failed'
+          'log' => array(__FUNCTION__, $info['email']),
+          'msg' => array('login_failed', 'specified template not found')
         );
         );
         return false;
         return false;
       }
       }
@@ -2407,8 +2407,8 @@ function identity_provider($_action, $_data = null, $_extra = null) {
         clear_session();  
         clear_session();  
         $_SESSION['return'][] =  array(
         $_SESSION['return'][] =  array(
           'type' => 'danger',
           'type' => 'danger',
-          'log' => array(__FUNCTION__, $_SESSION['mailcow_cc_username'], $_SESSION['mailcow_cc_role']),
-          'msg' => 'login_failed'
+          'log' => array(__FUNCTION__, $info['email']),
+          'msg' => array('login_failed', 'mailbox creation failed')
         );
         );
         return false;
         return false;
       }
       }