独立项目
This commit is contained in:
parent
ebf4a37529
commit
9e25df4b6c
@ -2,14 +2,16 @@
|
|||||||
* @Author: Kane
|
* @Author: Kane
|
||||||
* @Date: 2022-12-15 11:11:21
|
* @Date: 2022-12-15 11:11:21
|
||||||
* @LastEditors: Kane
|
* @LastEditors: Kane
|
||||||
* @LastEditTime: 2023-01-17 23:28:21
|
* @LastEditTime: 2023-03-25 17:28:39
|
||||||
* @FilePath: \AdminSys\src\main\java\com\cpic\xim\web\controllers\account\P13AccountCheckController.java
|
* @FilePath: /后端-用户验证/src/main/java/com/cpic/xim/web/controllers/account/P13AccountCheckController.java
|
||||||
* @Description: P13账号验证用Controller。
|
* @Description: P13账号验证用Controller。
|
||||||
*
|
*
|
||||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||||
*/
|
*/
|
||||||
package com.cpic.xim.web.controllers.account;
|
package com.cpic.xim.web.controllers.account;
|
||||||
|
|
||||||
|
import com.cpic.xim.myutils.account.CpicXIMStaffInfo;
|
||||||
|
import com.cpic.xim.myutils.account.LdapAccountCheck;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.nio.channels.IllegalSelectorException;
|
import java.nio.channels.IllegalSelectorException;
|
||||||
import java.sql.SQLException;
|
import java.sql.SQLException;
|
||||||
@ -21,14 +23,12 @@ import org.springframework.stereotype.Controller;
|
|||||||
import org.springframework.web.bind.annotation.RequestBody;
|
import org.springframework.web.bind.annotation.RequestBody;
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
import org.springframework.web.bind.annotation.ResponseBody;
|
import org.springframework.web.bind.annotation.ResponseBody;
|
||||||
import com.cpic.xim.myutils.account.CpicXIMStaffInfo;
|
|
||||||
import com.cpic.xim.myutils.account.LdapAccountCheck;
|
|
||||||
|
|
||||||
@Controller
|
@Controller
|
||||||
@RequestMapping( path = "/account" )
|
@RequestMapping(path = "/account")
|
||||||
@SuppressWarnings( "unused" )
|
@SuppressWarnings("unused")
|
||||||
public class P13AccountCheckController
|
public class P13AccountCheckController {
|
||||||
{
|
|
||||||
/*****************************************************
|
/*****************************************************
|
||||||
* 根据用户提供的P09工号或者P13账号密码,查找用户信息,并AD域服务器验证p13账号密码。
|
* 根据用户提供的P09工号或者P13账号密码,查找用户信息,并AD域服务器验证p13账号密码。
|
||||||
* 验证通过即返回人员信息。
|
* 验证通过即返回人员信息。
|
||||||
@ -39,75 +39,67 @@ public class P13AccountCheckController
|
|||||||
* @return 返回一个P13AccountCheckResult对象,其中提供验证结果
|
* @return 返回一个P13AccountCheckResult对象,其中提供验证结果
|
||||||
*****************************************************/
|
*****************************************************/
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
@RequestMapping( path = "/p13_account_check" )
|
@RequestMapping(path = "/p13_account_check")
|
||||||
public P13AccountCheckResult checkP13Account( @RequestBody P13AccountCheckRequest param,
|
public P13AccountCheckResult checkP13Account(
|
||||||
HttpServletRequest request, HttpServletResponse response )
|
@RequestBody P13AccountCheckRequest param,
|
||||||
throws IllegalSelectorException, IOException
|
HttpServletRequest request,
|
||||||
{
|
HttpServletResponse response
|
||||||
|
) throws IllegalSelectorException, IOException {
|
||||||
P13AccountCheckResult result = new P13AccountCheckResult();
|
P13AccountCheckResult result = new P13AccountCheckResult();
|
||||||
ServletContext context = request.getServletContext();
|
ServletContext context = request.getServletContext();
|
||||||
|
|
||||||
// context.getAttribute( null );
|
|
||||||
CpicXIMStaffInfo staff = null;
|
CpicXIMStaffInfo staff = null;
|
||||||
|
|
||||||
try
|
try {
|
||||||
{
|
|
||||||
// 先根据用户输入的09工号或p13账号获得p13账号,确定账号存在
|
// 先根据用户输入的09工号或p13账号获得p13账号,确定账号存在
|
||||||
staff = CpicXIMStaffInfo.getStaffInfo( param.getP13Account() );
|
staff = CpicXIMStaffInfo.getStaffInfo(param.getP13Account());
|
||||||
}
|
} catch (SQLException error) {
|
||||||
catch ( SQLException error )
|
|
||||||
{
|
|
||||||
staff = null;
|
staff = null;
|
||||||
result.setMessage( "人员工号或P13账号不存在!" );
|
result.setMessage("人员工号或P13账号不存在!");
|
||||||
result.setSuccess( false );
|
result.setSuccess(false);
|
||||||
}
|
} catch (ClassNotFoundException error) {
|
||||||
catch ( ClassNotFoundException error )
|
|
||||||
{
|
|
||||||
staff = null;
|
staff = null;
|
||||||
result.setMessage( "加载Oracle驱动失败!" );
|
result.setMessage("加载Oracle驱动失败!");
|
||||||
result.setSuccess( false );
|
result.setSuccess(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 查询结果是null,说明没有查询到结果,工号或p13账号不存在,返回结果。
|
// 查询结果是null,说明没有查询到结果,工号或p13账号不存在,返回结果。
|
||||||
if ( staff == null )
|
if (staff == null) {
|
||||||
{
|
result.setMessage("人员工号或P13账号不存在!");
|
||||||
result.setMessage( "人员工号或P13账号不存在!" );
|
result.setSuccess(false);
|
||||||
result.setSuccess( false );
|
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 判断一下p13是否存在,如果不存在就结束过程
|
// 判断一下p13是否存在,如果不存在就结束过程
|
||||||
if ( staff.getP13UID().isEmpty() == true )
|
if (staff.getP13UID().isEmpty() == true) {
|
||||||
{
|
result.setMessage("P13账号不存在,请联系信息技术部申请账号!");
|
||||||
result.setMessage( "P13账号不存在,请联系信息技术部申请账号!" );
|
result.setSuccess(false);
|
||||||
result.setSuccess( false );
|
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 进行ldap验证
|
// 进行ldap验证
|
||||||
boolean ldapCheckResult =
|
boolean ldapCheckResult = LdapAccountCheck.ldapLogin(
|
||||||
LdapAccountCheck.ldapLogin( staff.getP13UID(), param.getPassword() );
|
staff.getP13UID(),
|
||||||
|
param.getPassword()
|
||||||
|
);
|
||||||
|
|
||||||
if ( ldapCheckResult == true )
|
if (ldapCheckResult == true) {
|
||||||
{
|
result.setSuccess(true);
|
||||||
result.setSuccess( true );
|
result.setMessage("验证成功!");
|
||||||
result.setMessage( "验证成功!" );
|
result.setStaffInfo(staff);
|
||||||
result.setStaffInfo( staff );
|
|
||||||
|
|
||||||
// 将获取到的人员信息保存到会话中
|
// 将获取到的人员信息保存到会话中
|
||||||
HttpSession session = request.getSession();
|
HttpSession session = request.getSession();
|
||||||
|
|
||||||
session.setAttribute( "staff_info", staff );
|
session.setAttribute("staff_info", staff);
|
||||||
}
|
} else {
|
||||||
else
|
result.setSuccess(false);
|
||||||
{
|
result.setMessage("密码错误!");
|
||||||
result.setSuccess( false );
|
|
||||||
result.setMessage( "密码错误!" );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
result.setToken( param.getP13Account() );
|
result.setToken(param.getP13Account());
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user