泛微8.0获取当前用户数据_泛微 代码块中获取用户id-程序员宅基地

技术标签: java  ajax  泛微  jquery  

一、图片展示数据

在这里插入图片描述

{
    "SubCompanyID":"285","DepartmentID":"3382","UserName":"运维组02","Loginid":"lzt","UserID":"16630","UserType":"0","Language":"7","Message":"true"}

二、前端代码获取数据集

var userInfor = getCurrentUserInfor();  // 调用js方法
var currentUserID = userInfor.UserID;   // 获取用户ID


function getCurrentUserInfor() {
    
    var dataMap = {
    };
    jQuery.ajax({
    
        url: "/fuli/getSysInforForCurrentUser.jsp?t=" + new Date().getTime(),
        data: "",
        async: false,
        dataType: "json",
        contentType: "application/json",
        success: function(data) {
    
            dataMap = data; //Message,SubCompanyID,DepartmentID,UserName,Loginid,UserID,UserType,Language
        }
    });
    return dataMap;
}

三、后台getSysInforForCurrentUser.jsp文件

<%@ page language="java" contentType="text/html; charset=UTF-8"%>
<%@ page import="weaver.hrm.*"%>
<%@ page import="weaver.general.*"%>
<%@ page import="net.sf.json.JSONObject"%>
<%@ page import="weaver.conn.RecordSet"%>
<% 

	RecordSet rs = new RecordSet();
	JSONObject json = new JSONObject();
	User user = HrmUserVarify.getUser(request , response);
	String Message = "flase";
	
	if(user != null){
    
		Message = "true";
		json.put( "SubCompanyID" , "" + user.getUserSubCompany1() );
		json.put( "DepartmentID" , ""+ user.getUserDepartment() );
		json.put( "UserName" , ""+ user.getLastname() );
		json.put( "Loginid" , ""+ user.getLoginid() );
		json.put( "UserID" , ""+ user.getUID() );
		json.put( "UserType" , ""+ user.getType() );
		json.put( "Language" , ""+ user.getLanguage() );		
	}

	json.put( "Message" , Message );
	out.println(json.toString());
%>

调用getUser()方法

/*     */ package weaver.hrm;
/*     */ 
/*     */ import java.util.ArrayList;
/*     */ import java.util.List;
/*     */ import javax.servlet.http.HttpServletRequest;
/*     */ import javax.servlet.http.HttpServletResponse;
/*     */ import javax.servlet.http.HttpSession;
/*     */ import weaver.conn.RecordSet;
/*     */ import weaver.general.StaticObj;
/*     */ import weaver.general.Util;
/*     */ import weaver.hrm.online.HrmUserOnlineMap;
/*     */ import weaver.login.LicenseCheckLogin;
/*     */ import weaver.systeminfo.setting.HrmUserSettingComInfo;
/*     */ import weaver.systeminfo.systemright.CheckUserRight;
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ public class HrmUserVarify
/*     */ {
    
/*     */   public static User getUserOld(HttpServletRequest paramHttpServletRequest, HttpServletResponse paramHttpServletResponse)
/*     */   {
    
/*  34 */     User localUser = (User)paramHttpServletRequest.getSession(true).getAttribute("weaver_user@bean");
/*  35 */     if (localUser == null)
/*     */     {
    
/*  37 */       String str = Util.getCookie(paramHttpServletRequest, "loginfileweaver");
/*     */       
/*     */ 
/*     */ 
/*     */       try
/*     */       {
    
/*  43 */         if ((Util.null2String(str).equals("")) || (Util.null2String(str).toLowerCase().equals("null"))) {
    
/*  44 */           paramHttpServletResponse.sendRedirect("/login/Login.jsp");
/*     */         } else {
    
/*  46 */           paramHttpServletResponse.sendRedirect("/Refresh.jsp?loginfile=" + str + "&message=19");
/*     */         }
/*     */       }
/*     */       catch (Exception localException) {
    }
/*     */     }
/*     */     
/*     */ 
/*     */ 
/*     */ 
/*  55 */     return localUser;
/*     */   }
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */   public static User getUser(HttpServletRequest paramHttpServletRequest, HttpServletResponse paramHttpServletResponse)
/*     */   {
    
/*  64 */     User localUser = (User)paramHttpServletRequest.getSession(true).getAttribute("weaver_user@bean");
/*  65 */     if (localUser == null) {
    
/*  66 */       String str1 = Util.getCookie(paramHttpServletRequest, "loginfileweaver");
/*     */       try {
    
/*  68 */         if ((Util.null2String(str1).equals("")) || (Util.null2String(str1).toLowerCase().equals("null"))) {
    
/*  69 */           paramHttpServletResponse.sendRedirect("/login/Login.jsp");
/*  70 */           return null;
/*     */         }
/*  72 */         paramHttpServletResponse.sendRedirect("/Refresh.jsp?loginfile=" + str1 + "&message=19");
/*  73 */         return null;
/*     */       }
/*     */       catch (Exception localException) {
    }
/*     */     }
/*     */     
/*     */ 
/*  79 */     int i = Util.getIntValue(paramHttpServletRequest.getParameter("f_weaver_belongto_userid"), 0);
/*  80 */     int j = Util.getIntValue(paramHttpServletRequest.getParameter("f_weaver_belongto_usertype"), 0);
/*  81 */     RecordSet localRecordSet = new RecordSet();
/*  82 */     if ((localUser != null) && (i != localUser.getUID()) && (i > 0))
/*     */     {
    
/*  84 */       int k = 0;
/*  85 */       String str2 = " SELECT belongto FROM HrmResource WHERE id= " + localUser.getUID();
/*  86 */       localRecordSet.executeSql(str2);
/*  87 */       int m; while (localRecordSet.next()) {
    
/*  88 */         m = localRecordSet.getInt("belongto");
/*  89 */         if (m == i) {
    
/*  90 */           k = 1;
/*  91 */           break;
/*     */         }
/*     */       }
/*     */       
/*  95 */       str2 = " SELECT id FROM HrmResource WHERE belongto= " + localUser.getUID();
/*  96 */       localRecordSet.executeSql(str2);
/*  97 */       while (localRecordSet.next()) {
    
/*  98 */         m = localRecordSet.getInt("id");
/*  99 */         if (m == i) {
    
/* 100 */           k = 1;
/* 101 */           break;
/*     */         }
/*     */       }
/*     */       
/* 105 */       if (k != 0) {
     localUser = User.getUser(i, j);
/*     */       }
/*     */     }
/* 108 */     return localUser;
/*     */   }
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */   public static User getUser(HttpServletRequest paramHttpServletRequest, HttpServletResponse paramHttpServletResponse, String paramString1, String paramString2)
/*     */   {
    
/* 120 */     return getUser(paramHttpServletRequest, paramHttpServletResponse, Util.getIntValue(paramString1, 0), Util.getIntValue(paramString2, 0));
/*     */   }
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */   public static User getUser(HttpServletRequest paramHttpServletRequest, HttpServletResponse paramHttpServletResponse, int paramInt1, int paramInt2)
/*     */   {
    
/* 131 */     User localUser = (User)paramHttpServletRequest.getSession(true).getAttribute("weaver_user@bean");
/* 132 */     if (localUser == null) {
    
/* 133 */       localObject = Util.getCookie(paramHttpServletRequest, "loginfileweaver");
/*     */       try {
    
/* 135 */         if ((Util.null2String((String)localObject).equals("")) || (Util.null2String((String)localObject).toLowerCase().equals("null"))) {
    
/* 136 */           paramHttpServletResponse.sendRedirect("/login/Login.jsp");
/* 137 */           return null;
/*     */         }
/* 139 */         paramHttpServletResponse.sendRedirect("/Refresh.jsp?loginfile=" + (String)localObject + "&message=19");
/* 140 */         return null;
/*     */       }
/*     */       catch (Exception localException) {
    }
/*     */     }
/*     */     
/*     */ 
/* 146 */     Object localObject = new RecordSet();
/* 147 */     if ((localUser != null) && (paramInt1 != localUser.getUID()) && (paramInt1 > 0))
/*     */     {
    
/* 149 */       int i = 0;
/* 150 */       String str = " SELECT belongto FROM HrmResource WHERE id= " + localUser.getUID();
/* 151 */       ((RecordSet)localObject).executeSql(str);
/* 152 */       int j; while (((RecordSet)localObject).next()) {
    
/* 153 */         j = ((RecordSet)localObject).getInt("belongto");
/* 154 */         if (j == paramInt1) {
    
/* 155 */           i = 1;
/* 156 */           break;
/*     */         }
/*     */       }
/*     */       
/* 160 */       str = " SELECT id FROM HrmResource WHERE belongto= " + localUser.getUID();
/* 161 */       ((RecordSet)localObject).executeSql(str);
/* 162 */       while (((RecordSet)localObject).next()) {
    
/* 163 */         j = ((RecordSet)localObject).getInt("id");
/* 164 */         if (j == paramInt1) {
    
/* 165 */           i = 1;
/* 166 */           break;
/*     */         }
/*     */       }
/*     */       
/* 170 */       if (i != 0) {
     localUser = User.getUser(paramInt1, paramInt2);
/*     */       }
/*     */     }
/* 173 */     return localUser;
/*     */   }
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */   public static User checkUser(HttpServletRequest paramHttpServletRequest, HttpServletResponse paramHttpServletResponse)
/*     */   {
    
/* 182 */     User localUser = (User)paramHttpServletRequest.getSession(true).getAttribute("weaver_user@bean");
/* 183 */     return localUser;
/*     */   }
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */   public static boolean checkUserRight(String paramString, User paramUser)
/*     */   {
    
/* 193 */     if (paramUser.getLoginid().equalsIgnoreCase("sysadmin")) return true;
/* 194 */     CheckUserRight localCheckUserRight = new CheckUserRight();
/* 195 */     boolean bool = localCheckUserRight.checkUserRight(paramString, paramUser);
/*     */     
/*     */ 
/* 198 */     if (!bool) {
    
/* 199 */       String str = "";
/*     */       try {
    
/* 201 */         HrmUserSettingComInfo localHrmUserSettingComInfo = new HrmUserSettingComInfo();
/* 202 */         str = localHrmUserSettingComInfo.getBelongtoshowByUserId("" + paramUser.getUID());
/*     */       }
/*     */       catch (Exception localException) {
    }
/*     */       
/* 206 */       if (str.equals("1")) {
    
/* 207 */         List localList = User.getBelongtoUsersByUserId(paramUser.getUID());
/* 208 */         if (localList != null) {
    
/* 209 */           for (Object localObject : localList) {
    
/* 210 */             bool = localCheckUserRight.checkUserRight(paramString, (User)localObject);
/* 211 */             if (bool) {
    
/*     */               break;
/*     */             }
/*     */           }
/*     */         }
/*     */       }
/*     */     }
/*     */     
/*     */ 
/* 220 */     return bool;
/*     */   }
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */   public static String getcheckUserRightUserId(String paramString, User paramUser)
/*     */   {
    
/* 229 */     return getcheckUserRightUserId(paramString, paramUser, true);
/*     */   }
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */   private static String getcheckUserRightUserId(String paramString, User paramUser, boolean paramBoolean)
/*     */   {
    
/* 239 */     if ((paramBoolean) && (paramUser.getLoginid().equalsIgnoreCase("sysadmin"))) return "1";
/* 240 */     String str1 = "";
/* 241 */     CheckUserRight localCheckUserRight = new CheckUserRight();
/* 242 */     boolean bool = localCheckUserRight.checkUserRight(paramString, paramUser);
/* 243 */     if (bool) {
     return "" + paramUser.getUID();
/*     */     }
/* 245 */     String str2 = "";
/*     */     try {
    
/* 247 */       HrmUserSettingComInfo localHrmUserSettingComInfo = new HrmUserSettingComInfo();
/* 248 */       str2 = localHrmUserSettingComInfo.getBelongtoshowByUserId("" + paramUser.getUID());
/*     */     }
/*     */     catch (Exception localException) {
    }
/* 251 */     if (str2.equals("1")) {
    
/* 252 */       List localList = User.getBelongtoUsersByUserId(paramUser.getUID());
/* 253 */       if (localList != null) {
    
/* 254 */         for (Object localObject : localList) {
    
/* 255 */           bool = localCheckUserRight.checkUserRight(paramString, (User)localObject);
/* 256 */           if (bool) {
    
/* 257 */             str1 = "" + ((User)localObject).getUID();
/* 258 */             break;
/*     */           }
/*     */         }
/*     */       }
/*     */     }
/*     */     
/* 264 */     return str1;
/*     */   }
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */   public static boolean checkUserRightSystemadmin(String paramString, User paramUser)
/*     */   {
    
/* 275 */     CheckUserRight localCheckUserRight = new CheckUserRight();
/*     */     
/*     */ 
/* 278 */     boolean bool = localCheckUserRight.checkUserRight(paramString, paramUser);
/*     */     
/*     */ 
/* 281 */     if (!bool) {
    
/* 282 */       String str = "";
/*     */       try {
    
/* 284 */         HrmUserSettingComInfo localHrmUserSettingComInfo = new HrmUserSettingComInfo();
/* 285 */         str = localHrmUserSettingComInfo.getBelongtoshowByUserId("" + paramUser.getUID());
/*     */       }
/*     */       catch (Exception localException) {
    }
/* 288 */       if (str.equals("1")) {
    
/* 289 */         List localList = User.getBelongtoUsersByUserId(paramUser.getUID());
/* 290 */         if (localList != null) {
    
/* 291 */           for (Object localObject : localList) {
    
/* 292 */             bool = localCheckUserRight.checkUserRight(paramString, (User)localObject);
/* 293 */             if (bool) {
    
/*     */               break;
/*     */             }
/*     */           }
/*     */         }
/*     */       }
/*     */     }
/*     */     
/*     */ 
/* 302 */     return bool;
/*     */   }
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */   public static String getcheckUserRightSystemadminUserId(String paramString, User paramUser)
/*     */   {
    
/* 311 */     return getcheckUserRightUserId(paramString, paramUser, false);
/*     */   }
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */   public static boolean checkUserRight(String paramString1, User paramUser, String paramString2)
/*     */   {
    
/* 322 */     if (paramUser.getLoginid().equalsIgnoreCase("sysadmin")) return true;
/* 323 */     CheckUserRight localCheckUserRight = new CheckUserRight();
/*     */     
/*     */ 
/* 326 */     boolean bool = localCheckUserRight.checkUserRight(paramString1, paramUser, paramString2);
/*     */     
/*     */ 
/* 329 */     if (!bool) {
    
/* 330 */       String str = "";
/*     */       try {
    
/* 332 */         HrmUserSettingComInfo localHrmUserSettingComInfo = new HrmUserSettingComInfo();
/* 333 */         str = localHrmUserSettingComInfo.getBelongtoshowByUserId("" + paramUser.getUID());
/*     */       }
/*     */       catch (Exception localException) {
    }
/* 336 */       if (str.equals("1")) {
    
/* 337 */         List localList = User.getBelongtoUsersByUserId(paramUser.getUID());
/* 338 */         if (localList != null) {
    
/* 339 */           for (Object localObject : localList) {
    
/* 340 */             bool = localCheckUserRight.checkUserRight(paramString1, (User)localObject, paramString2);
/* 341 */             if (bool) {
    
/*     */               break;
/*     */             }
/*     */           }
/*     */         }
/*     */       }
/*     */     }
/*     */     
/*     */ 
/* 350 */     return bool;
/*     */   }
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */   public static String getcheckUserRightUserId(String paramString1, User paramUser, String paramString2)
/*     */   {
    
/* 359 */     String str1 = "";
/* 360 */     if (paramUser.getLoginid().equalsIgnoreCase("sysadmin")) return "1";
/* 361 */     CheckUserRight localCheckUserRight = new CheckUserRight();
/* 362 */     boolean bool = localCheckUserRight.checkUserRight(paramString1, paramUser, paramString2);
/* 363 */     if (bool) {
     return "" + paramUser.getUID();
/*     */     }
/*     */     
/* 366 */     String str2 = "";
/*     */     try {
    
/* 368 */       HrmUserSettingComInfo localHrmUserSettingComInfo = new HrmUserSettingComInfo();
/* 369 */       str2 = localHrmUserSettingComInfo.getBelongtoshowByUserId("" + paramUser.getUID());
/*     */     }
/*     */     catch (Exception localException) {
    }
/* 372 */     if (str2.equals("1")) {
    
/* 373 */       List localList = User.getBelongtoUsersByUserId(paramUser.getUID());
/* 374 */       if (localList != null) {
    
/* 375 */         for (Object localObject : localList) {
    
/* 376 */           bool = localCheckUserRight.checkUserRight(paramString1, (User)localObject, paramString2);
/* 377 */           if (bool) {
    
/* 378 */             str1 = "" + ((User)localObject).getUID();
/* 379 */             break;
/*     */           }
/*     */         }
/*     */       }
/*     */     }
/*     */     
/* 385 */     return str1;
/*     */   }
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */   public static boolean checkUserRight(String paramString, User paramUser, int paramInt)
/*     */   {
    
/* 396 */     return checkUserRight(paramString, paramUser, "" + paramInt);
/*     */   }
/*     */   
/*     */   public static String getcheckUserRightUserId(String paramString, User paramUser, int paramInt) {
    
/* 400 */     return getcheckUserRightUserId(paramString, paramUser, "" + paramInt);
/*     */   }
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */   public static String getRightLevel(String paramString, User paramUser)
/*     */   {
    
/* 411 */     if (paramUser.getLoginid().equalsIgnoreCase("sysadmin")) return "2";
/* 412 */     CheckUserRight localCheckUserRight = new CheckUserRight();
/*     */     
/*     */ 
/* 415 */     String str1 = localCheckUserRight.getRightLevel(paramString, paramUser);
/* 416 */     int i = Util.getIntValue(str1, -1);
/*     */     
/* 418 */     String str2 = "";
/*     */     try {
    
/* 420 */       HrmUserSettingComInfo localHrmUserSettingComInfo = new HrmUserSettingComInfo();
/* 421 */       str2 = localHrmUserSettingComInfo.getBelongtoshowByUserId("" + paramUser.getUID());
/*     */     }
/*     */     catch (Exception localException) {
    }
/* 424 */     if (str2.equals("1")) {
    
/* 425 */       List localList = User.getBelongtoUsersByUserId(paramUser.getUID());
/* 426 */       if (localList != null) {
    
/* 427 */         for (Object localObject : localList) {
    
/* 428 */           str1 = localCheckUserRight.getRightLevel(paramString, (User)localObject);
/* 429 */           if (!str1.equals("-1")) {
    
/* 430 */             int j = Util.getIntValue(str1, -1);
/* 431 */             if (j > i) {
     i = j;
/*     */             }
/*     */           }
/*     */         }
/*     */       }
/*     */     }
/*     */     
/* 438 */     return "" + i;
/*     */   }
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */   public String getRightLevel(String paramString1, String paramString2)
/*     */   {
    
/* 448 */     CheckUserRight localCheckUserRight = new CheckUserRight();
/*     */     
/*     */ 
/* 451 */     String str1 = localCheckUserRight.getRightLevel(paramString1, paramString2);
/* 452 */     int i = Util.getIntValue(str1, -1);
/*     */     
/*     */ 
/* 455 */     String str2 = "";
/*     */     try {
    
/* 457 */       HrmUserSettingComInfo localHrmUserSettingComInfo = new HrmUserSettingComInfo();
/* 458 */       str2 = localHrmUserSettingComInfo.getBelongtoshowByUserId(paramString1);
/*     */     }
/*     */     catch (Exception localException) {
    }
/* 461 */     if (str2.equals("1")) {
    
/* 462 */       List localList = User.getBelongtoUsersByUserId(paramString1);
/* 463 */       if (localList != null) {
    
/* 464 */         for (Object localObject : localList) {
    
/* 465 */           str1 = localCheckUserRight.getRightLevel(paramString1, (User)localObject);
/* 466 */           if (!str1.equals("-1")) {
    
/* 467 */             int j = Util.getIntValue(str1, -1);
/* 468 */             if (j > i) {
     i = j;
/*     */             }
/*     */           }
/*     */         }
/*     */       }
/*     */     }
/*     */     
/*     */ 
/* 476 */     return "" + i;
/*     */   }
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */   public boolean checkUserRight(String paramString1, String paramString2, String paramString3)
/*     */   {
    
/* 487 */     CheckUserRight localCheckUserRight = new CheckUserRight();
/*     */     
/* 489 */     boolean bool = localCheckUserRight.checkUserRight(paramString1, paramString2, paramString3);
/*     */     
/*     */ 
/* 492 */     if (!bool) {
    
/* 493 */       String str = "";
/*     */       try {
    
/* 495 */         HrmUserSettingComInfo localHrmUserSettingComInfo = new HrmUserSettingComInfo();
/* 496 */         str = localHrmUserSettingComInfo.getBelongtoshowByUserId(paramString1);
/*     */       }
/*     */       catch (Exception localException) {
    }
/* 499 */       if (str.equals("1")) {
    
/* 500 */         List localList = User.getBelongtoUsersByUserId(paramString1);
/* 501 */         if (localList != null) {
    
/* 502 */           for (Object localObject : localList) {
    
/* 503 */             bool = localCheckUserRight.checkUserRight("" + ((User)localObject).getUID(), paramString2, paramString3);
/* 504 */             if (bool) {
    
/*     */               break;
/*     */             }
/*     */           }
/*     */         }
/*     */       }
/*     */     }
/*     */     
/* 512 */     return bool;
/*     */   }
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */   public static String getcheckUserRightUserId(String paramString1, String paramString2, String paramString3)
/*     */   {
    
/* 521 */     String str1 = "";
/* 522 */     CheckUserRight localCheckUserRight = new CheckUserRight();
/* 523 */     boolean bool = localCheckUserRight.checkUserRight(paramString1, paramString2, paramString3);
/* 524 */     if (bool) {
     return "" + paramString1;
/*     */     }
/*     */     
/* 527 */     String str2 = "";
/*     */     try {
    
/* 529 */       HrmUserSettingComInfo localHrmUserSettingComInfo = new HrmUserSettingComInfo();
/* 530 */       str2 = localHrmUserSettingComInfo.getBelongtoshowByUserId(paramString1);
/*     */     } catch (Exception localException) {
    }
/* 532 */     if (str2.equals("1")) {
    
/* 533 */       List localList = User.getBelongtoUsersByUserId(paramString1);
/* 534 */       if (localList != null) {
    
/* 535 */         for (Object localObject : localList) {
    
/* 536 */           bool = new CheckUserRight().checkUserRight("" + ((User)localObject).getUID(), paramString2, paramString3);
/* 537 */           if (bool) {
    
/* 538 */             str1 = "" + ((User)localObject).getUID();
/* 539 */             break;
/*     */           }
/*     */         }
/*     */       }
/*     */     }
/*     */     
/* 545 */     return str1;
/*     */   }
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */   public boolean checkUserRole(String paramString1, User paramUser, String paramString2)
/*     */   {
    
/* 556 */     CheckUserRight localCheckUserRight = new CheckUserRight();
/*     */     
/*     */ 
/* 559 */     boolean bool = localCheckUserRight.checkUserRole(paramString1, paramUser, paramString2);
/*     */     
/*     */ 
/* 562 */     if (!bool) {
    
/* 563 */       String str = "";
/*     */       try {
    
/* 565 */         HrmUserSettingComInfo localHrmUserSettingComInfo = new HrmUserSettingComInfo();
/* 566 */         str = localHrmUserSettingComInfo.getBelongtoshowByUserId("" + paramUser.getUID());
/*     */       }
/*     */       catch (Exception localException) {
    }
/* 569 */       if (str.equals("1")) {
    
/* 570 */         List localList = User.getBelongtoUsersByUserId(paramUser.getUID());
/* 571 */         if (localList != null) {
    
/* 572 */           for (Object localObject : localList) {
    
/* 573 */             bool = localCheckUserRight.checkUserRole(paramString1, (User)localObject, paramString2);
/* 574 */             if (bool) {
    
/*     */               break;
/*     */             }
/*     */           }
/*     */         }
/*     */       }
/*     */     }
/*     */     
/* 582 */     return bool;
/*     */   }
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */   public static String getcheckUserRoleUserId(String paramString1, User paramUser, String paramString2)
/*     */   {
    
/* 591 */     String str1 = "";
/* 592 */     CheckUserRight localCheckUserRight = new CheckUserRight();
/* 593 */     boolean bool = localCheckUserRight.checkUserRight(paramString1, paramUser, paramString2);
/* 594 */     if (bool) {
     return "" + paramUser.getUID();
/*     */     }
/*     */     
/* 597 */     String str2 = "";
/*     */     try {
    
/* 599 */       HrmUserSettingComInfo localHrmUserSettingComInfo = new HrmUserSettingComInfo();
/* 600 */       str2 = localHrmUserSettingComInfo.getBelongtoshowByUserId("" + paramUser.getUID());
/*     */     }
/*     */     catch (Exception localException) {
    }
/* 603 */     if (str2.equals("1")) {
    
/* 604 */       List localList = User.getBelongtoUsersByUserId(paramUser.getUID());
/* 605 */       if (localList != null) {
    
/* 606 */         for (Object localObject : localList) {
    
/* 607 */           bool = localCheckUserRight.checkUserRight(paramString1, (User)localObject, paramString2);
/* 608 */           if (bool) {
    
/* 609 */             str1 = "" + ((User)localObject).getUID();
/* 610 */             break;
/*     */           }
/*     */         }
/*     */       }
/*     */     }
/*     */     
/* 616 */     return str1;
/*     */   }
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */   public static boolean isUserOnline(String paramString)
/*     */   {
    
/* 627 */     LicenseCheckLogin localLicenseCheckLogin = new LicenseCheckLogin();
/* 628 */     localLicenseCheckLogin.checkOnlineUser();
/*     */     
/* 630 */     StaticObj localStaticObj = StaticObj.getInstance();
/* 631 */     ArrayList localArrayList = (ArrayList)localStaticObj.getObject("onlineuserids");
/* 632 */     if (localArrayList == null) return false;
/* 633 */     int i = localArrayList.indexOf(paramString);
/* 634 */     if (i == -1) return false;
/* 635 */     return true;
/*     */   }
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/* 644 */   public static String getOnlineUserIp(String paramString) {
     return HrmUserOnlineMap.getInstance().getClientIpByUidFromClusterMap(paramString); }
/*     */   
/*     */   private static User getUserfromDB(String paramString) {
    
/* 647 */     RecordSet localRecordSet = new RecordSet();
/* 648 */     User localUser = new User();
/* 649 */     localRecordSet.execute("SELECT id,firstname,lastname,systemlanguage,seclevel FROM HrmResourceManager WHERE loginid='" + paramString + "'");
/* 650 */     if (localRecordSet.next()) {
    
/* 651 */       localUser.setUid(localRecordSet.getInt("id"));
/* 652 */       localUser.setLoginid(paramString);
/* 653 */       localUser.setFirstname(localRecordSet.getString("firstname"));
/* 654 */       localUser.setLastname(localRecordSet.getString("lastname"));
/* 655 */       localUser.setLanguage(Util.getIntValue(localRecordSet.getString("systemlanguage"), 0));
/* 656 */       localUser.setSeclevel(localRecordSet.getString("seclevel"));
/* 657 */       localUser.setLogintype("1");
/*     */     }
/* 659 */     localRecordSet.execute("HrmResource_SelectByLoginID", paramString);
/* 660 */     if (localRecordSet.next()) {
    
/* 661 */       localUser.setUid(localRecordSet.getInt("id"));
/* 662 */       localUser.setLoginid(paramString);
/* 663 */       localUser.setFirstname(localRecordSet.getString("firstname"));
/* 664 */       localUser.setLastname(localRecordSet.getString("lastname"));
/* 665 */       localUser.setAliasname(localRecordSet.getString("aliasname"));
/* 666 */       localUser.setTitle(localRecordSet.getString("title"));
/* 667 */       localUser.setTitlelocation(localRecordSet.getString("titlelocation"));
/* 668 */       localUser.setSex(localRecordSet.getString("sex"));
/* 669 */       localUser.setLanguage(Util.getIntValue(localRecordSet.getString("systemlanguage"), 0));
/* 670 */       localUser.setTelephone(localRecordSet.getString("telephone"));
/* 671 */       localUser.setMobile(localRecordSet.getString("mobile"));
/* 672 */       localUser.setMobilecall(localRecordSet.getString("mobilecall"));
/* 673 */       localUser.setEmail(localRecordSet.getString("email"));
/* 674 */       localUser.setCountryid(localRecordSet.getString("countryid"));
/* 675 */       localUser.setLocationid(localRecordSet.getString("locationid"));
/* 676 */       localUser.setResourcetype(localRecordSet.getString("resourcetype"));
/* 677 */       localUser.setStartdate(localRecordSet.getString("startdate"));
/* 678 */       localUser.setEnddate(localRecordSet.getString("enddate"));
/* 679 */       localUser.setContractdate(localRecordSet.getString("contractdate"));
/* 680 */       localUser.setJobtitle(localRecordSet.getString("jobtitle"));
/* 681 */       localUser.setJobgroup(localRecordSet.getString("jobgroup"));
/* 682 */       localUser.setJobactivity(localRecordSet.getString("jobactivity"));
/* 683 */       localUser.setJoblevel(localRecordSet.getString("joblevel"));
/* 684 */       localUser.setSeclevel(localRecordSet.getString("seclevel"));
/* 685 */       localUser.setUserDepartment(Util.getIntValue(localRecordSet.getString("departmentid"), 0));
/* 686 */       localUser.setUserSubCompany1(Util.getIntValue(localRecordSet.getString("subcompanyid1"), 0));
/* 687 */       localUser.setUserSubCompany2(Util.getIntValue(localRecordSet.getString("subcompanyid2"), 0));
/* 688 */       localUser.setUserSubCompany3(Util.getIntValue(localRecordSet.getString("subcompanyid3"), 0));
/* 689 */       localUser.setUserSubCompany4(Util.getIntValue(localRecordSet.getString("subcompanyid4"), 0));
/* 690 */       localUser.setManagerid(localRecordSet.getString("managerid"));
/* 691 */       localUser.setAssistantid(localRecordSet.getString("assistantid"));
/* 692 */       localUser.setPurchaselimit(localRecordSet.getString("purchaselimit"));
/* 693 */       localUser.setCurrencyid(localRecordSet.getString("currencyid"));
/* 694 */       localUser.setLastlogindate(localRecordSet.getString("lastlogindate"));
/* 695 */       localUser.setLogintype("1");
/*     */     }
/* 697 */     return localUser;
/*     */   }
/*     */ }


/* Location:              C:\Users\Administrator\Desktop\解压包\weaver.zip!\weaver\hrm\HrmUserVarify.class
 * Java compiler version: 6 (50.0)
 * JD-Core Version:       0.7.1
 */
版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/weixin_40476233/article/details/120415302

智能推荐

5个超厉害的资源搜索网站,每一款都可以让你的资源满满!_最全资源搜索引擎-程序员宅基地

文章浏览阅读1.6w次,点赞8次,收藏41次。生活中我们无时不刻不都要在网站搜索资源,但就是缺少一个趁手的资源搜索网站,如果有一个比较好的资源搜索网站可以帮助我们节省一大半时间!今天小编在这里为大家分享5款超厉害的资源搜索网站,每一款都可以让你的资源丰富精彩!网盘传奇一款最有效的网盘资源搜索网站你还在为找网站里面的资源而烦恼找不到什么合适的工具而烦恼吗?这款网站传奇网站汇聚了4853w个资源,并且它每一天都会持续更新资源;..._最全资源搜索引擎

Book类的设计(Java)_6-1 book类的设计java-程序员宅基地

文章浏览阅读4.5k次,点赞5次,收藏18次。阅读测试程序,设计一个Book类。函数接口定义:class Book{}该类有 四个私有属性 分别是 书籍名称、 价格、 作者、 出版年份,以及相应的set 与get方法;该类有一个含有四个参数的构造方法,这四个参数依次是 书籍名称、 价格、 作者、 出版年份 。裁判测试程序样例:import java.util.*;public class Main { public static void main(String[] args) { List <Book>_6-1 book类的设计java

基于微信小程序的校园导航小程序设计与实现_校园导航微信小程序系统的设计与实现-程序员宅基地

文章浏览阅读613次,点赞28次,收藏27次。相比于以前的传统手工管理方式,智能化的管理方式可以大幅降低学校的运营人员成本,实现了校园导航的标准化、制度化、程序化的管理,有效地防止了校园导航的随意管理,提高了信息的处理速度和精确度,能够及时、准确地查询和修正建筑速看等信息。课题主要采用微信小程序、SpringBoot架构技术,前端以小程序页面呈现给学生,结合后台java语言使页面更加完善,后台使用MySQL数据库进行数据存储。微信小程序主要包括学生信息、校园简介、建筑速看、系统信息等功能,从而实现智能化的管理方式,提高工作效率。

有状态和无状态登录

传统上用户登陆状态会以 Session 的形式保存在服务器上,而 Session ID 则保存在前端的 Cookie 中;而使用 JWT 以后,用户的认证信息将会以 Token 的形式保存在前端,服务器不需要保存任何的用户状态,这也就是为什么 JWT 被称为无状态登陆的原因,无状态登陆最大的优势就是完美支持分布式部署,可以使用一个 Token 发送给不同的服务器,而所有的服务器都会返回同样的结果。有状态和无状态最大的区别就是服务端会不会保存客户端的信息。

九大角度全方位对比Android、iOS开发_ios 开发角度-程序员宅基地

文章浏览阅读784次。发表于10小时前| 2674次阅读| 来源TechCrunch| 19 条评论| 作者Jon EvansiOSAndroid应用开发产品编程语言JavaObjective-C摘要:即便Android市场份额已经超过80%,对于开发者来说,使用哪一个平台做开发仍然很难选择。本文从开发环境、配置、UX设计、语言、API、网络、分享、碎片化、发布等九个方面把Android和iOS_ios 开发角度

搜索引擎的发展历史

搜索引擎的发展历史可以追溯到20世纪90年代初,随着互联网的快速发展和信息量的急剧增加,人们开始感受到了获取和管理信息的挑战。这些阶段展示了搜索引擎在技术和商业模式上的不断演进,以满足用户对信息获取的不断增长的需求。

随便推点

控制对象的特性_控制对象特性-程序员宅基地

文章浏览阅读990次。对象特性是指控制对象的输出参数和输入参数之间的相互作用规律。放大系数K描述控制对象特性的静态特性参数。它的意义是:输出量的变化量和输入量的变化量之比。时间常数T当输入量发生变化后,所引起输出量变化的快慢。(动态参数) ..._控制对象特性

FRP搭建内网穿透(亲测有效)_locyanfrp-程序员宅基地

文章浏览阅读5.7w次,点赞50次,收藏276次。FRP搭建内网穿透1.概述:frp可以通过有公网IP的的服务器将内网的主机暴露给互联网,从而实现通过外网能直接访问到内网主机;frp有服务端和客户端,服务端需要装在有公网ip的服务器上,客户端装在内网主机上。2.简单的图解:3.准备工作:1.一个域名(www.test.xyz)2.一台有公网IP的服务器(阿里云、腾讯云等都行)3.一台内网主机4.下载frp,选择适合的版本下载解压如下:我这里服务器端和客户端都放在了/usr/local/frp/目录下4.执行命令# 服务器端给执_locyanfrp

UVA 12534 - Binary Matrix 2 (网络流‘最小费用最大流’ZKW)_uva12534-程序员宅基地

文章浏览阅读687次。题目:http://acm.hust.edu.cn/vjudge/contest/view.action?cid=93745#problem/A题意:给出r*c的01矩阵,可以翻转格子使得0表成1,1变成0,求出最小的步数使得每一行中1的个数相等,每一列中1的个数相等。思路:网络流。容量可以保证每一行和每一列的1的个数相等,费用可以算出最小步数。行向列建边,如果该格子是_uva12534

免费SSL证书_csdn alphassl免费申请-程序员宅基地

文章浏览阅读504次。1、Let's Encrypt 90天,支持泛域名2、Buypass:https://www.buypass.com/ssl/resources/go-ssl-technical-specification6个月,单域名3、AlwaysOnSLL:https://alwaysonssl.com/ 1年,单域名 可参考蜗牛(wn789)4、TrustAsia5、Alpha..._csdn alphassl免费申请

测试算法的性能(以选择排序为例)_算法性能测试-程序员宅基地

文章浏览阅读1.6k次。测试算法的性能 很多时候我们需要对算法的性能进行测试,最简单的方式是看算法在特定的数据集上的执行时间,简单的测试算法性能的函数实现见testSort()。【思想】:用clock_t计算某排序算法所需的时间,(endTime - startTime)/ CLOCKS_PER_SEC来表示执行了多少秒。【关于宏CLOCKS_PER_SEC】:以下摘自百度百科,“CLOCKS_PE_算法性能测试

Lane Detection_lanedetectionlite-程序员宅基地

文章浏览阅读1.2k次。fromhttps://towardsdatascience.com/finding-lane-lines-simple-pipeline-for-lane-detection-d02b62e7572bIdentifying lanes of the road is very common task that human driver performs. This is important ..._lanedetectionlite

推荐文章

热门文章

相关标签