独立项目

This commit is contained in:
Kane Wang 2023-03-25 18:02:48 +08:00
parent ebf4a37529
commit 9e25df4b6c
1 changed files with 80 additions and 88 deletions

View File

@ -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账号密码
* 验证通过即返回人员信息 * 验证通过即返回人员信息
@ -40,37 +40,31 @@ public class P13AccountCheckController
*****************************************************/ *****************************************************/
@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);
@ -78,8 +72,7 @@ public class P13AccountCheckController
} }
// 判断一下p13是否存在如果不存在就结束过程 // 判断一下p13是否存在如果不存在就结束过程
if ( staff.getP13UID().isEmpty() == true ) if (staff.getP13UID().isEmpty() == true) {
{
result.setMessage("P13账号不存在请联系信息技术部申请账号"); result.setMessage("P13账号不存在请联系信息技术部申请账号");
result.setSuccess(false); result.setSuccess(false);
@ -87,11 +80,12 @@ public class P13AccountCheckController
} }
// 进行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);
@ -100,9 +94,7 @@ public class P13AccountCheckController
HttpSession session = request.getSession(); HttpSession session = request.getSession();
session.setAttribute("staff_info", staff); session.setAttribute("staff_info", staff);
} } else {
else
{
result.setSuccess(false); result.setSuccess(false);
result.setMessage("密码错误!"); result.setMessage("密码错误!");
} }