UserInfoController.java 16.5 KB
Newer Older
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
1 2
/*
 * Copyright [2020] [MaxKey of copyright http://www.maxkey.top]
3
 * 
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
4 5 6
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
7
 * 
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
8
 *     http://www.apache.org/licenses/LICENSE-2.0
9
 * 
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
10 11 12 13 14 15
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
16
 
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
17

MaxKey单点登录官方's avatar
init  
MaxKey单点登录官方 已提交
18 19 20
package org.maxkey.web.contorller;

import java.beans.PropertyEditorSupport;
M
MaxKey 已提交
21
import java.io.IOException;
MaxKey单点登录官方's avatar
init  
MaxKey单点登录官方 已提交
22
import java.text.SimpleDateFormat;
M
MaxKey 已提交
23 24
import java.util.ArrayList;
import java.util.Comparator;
MaxKey单点登录官方's avatar
init  
MaxKey单点登录官方 已提交
25 26
import java.util.Date;
import java.util.HashMap;
M
MaxKey 已提交
27
import java.util.List;
MaxKey单点登录官方's avatar
init  
MaxKey单点登录官方 已提交
28
import java.util.Map;
M
MaxKey 已提交
29 30
import java.util.TreeSet;
import java.util.stream.Collectors;
MaxKey单点登录官方's avatar
init  
MaxKey单点登录官方 已提交
31 32 33 34

import javax.validation.Valid;

import org.apache.mybatis.jpa.persistence.JpaPageResults;
M
MaxKey 已提交
35 36 37
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
38
import org.maxkey.constants.ConstantsOperateMessage;
M
MaxKey 已提交
39
import org.maxkey.constants.ConstantsPasswordSetType;
M
MaxKey 已提交
40
import org.maxkey.crypto.password.PasswordReciprocal;
M
MaxKey 已提交
41 42
import org.maxkey.entity.ExcelImport;
import org.maxkey.entity.UserInfo;
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
43
import org.maxkey.persistence.service.UserInfoService;
M
MaxKey 已提交
44 45
import org.maxkey.util.DateUtils;
import org.maxkey.util.ExcelUtils;
MaxKey单点登录官方's avatar
init  
MaxKey单点登录官方 已提交
46 47 48 49 50 51 52 53 54 55 56 57 58
import org.maxkey.util.JsonUtils;
import org.maxkey.util.StringUtils;
import org.maxkey.web.WebContext;
import org.maxkey.web.message.Message;
import org.maxkey.web.message.MessageScope;
import org.maxkey.web.message.MessageType;
import org.maxkey.web.message.OperateType;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.beans.propertyeditors.CustomDateEditor;
import org.springframework.stereotype.Controller;
M
MaxKey 已提交
59
import org.springframework.util.CollectionUtils;
MaxKey单点登录官方's avatar
init  
MaxKey单点登录官方 已提交
60 61 62 63 64 65 66 67 68 69
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.annotation.InitBinder;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;

M
MaxKey 已提交
70
import com.google.common.collect.Lists;
MaxKey单点登录官方's avatar
init  
MaxKey单点登录官方 已提交
71 72 73 74 75 76

/**
 * @author Crystal.Sea
 *
 */
@Controller
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
77
@RequestMapping(value = { "/userinfo" })
MaxKey单点登录官方's avatar
init  
MaxKey单点登录官方 已提交
78 79
public class UserInfoController {
	final static Logger _logger = LoggerFactory.getLogger(UserInfoController.class);
80
	
MaxKey单点登录官方's avatar
init  
MaxKey单点登录官方 已提交
81 82 83 84
	@Autowired
	@Qualifier("userInfoService")
	private UserInfoService userInfoService;

85 86 87 88 89 90 91 92 93
	
	/**
	 * 查询用户列表
	 * @param user
	 * @return
	 */
	@RequestMapping(value={"/grid"})
	@ResponseBody
	public JpaPageResults<UserInfo> forwardUsersList(@ModelAttribute("userInfo") UserInfo userInfo){
M
MaxKey 已提交
94
		userInfo.setInstId(WebContext.getUserInfo().getInstId());
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
		return userInfoService.queryPageResults(userInfo);
		
	}
	
	@RequestMapping(value={"/forwardAdd"})
	public ModelAndView forwardSelectUserType(){
		ModelAndView modelAndView=new ModelAndView("/userinfo/userAdd");
		//List<UserType> userTypeList=userTypeService.query(null);
		//modelAndView.addObject("userTypeList", userTypeList);
		return modelAndView;
	}
	
	@RequestMapping(value={"/list"})
	public ModelAndView usersList(){
		return new ModelAndView("/userinfo/usersList");
	}
	
	@RequestMapping(value={"/select"})
	public ModelAndView usersSelect(){
		ModelAndView modelAndView= new ModelAndView("/userinfo/userinfoSelect");
		return modelAndView;
	}
	
	/**
	 * 新增
	 * @param userInfo
	 * @param result
	 * @return
	 */
	@RequestMapping(value="/add") 
	public ModelAndView addUsers(@Valid  @ModelAttribute("userInfo")UserInfo userInfo,BindingResult result) {
		_logger.debug(userInfo.toString());
		if(result.hasErrors()){
			// new Message(WebContext.getValidErrorText(),result);
		}
		
M
MaxKey 已提交
131
		userInfo.setId(WebContext.genId());
M
MaxKey 已提交
132
		userInfo.setInstId(WebContext.getUserInfo().getInstId());
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
		//userInfo.setNameZHShortSpell(StringUtils.hanYu2Pinyin(userInfo.getDisplayName(), true));
		//userInfo.setNameZHSpell(StringUtils.hanYu2Pinyin(userInfo.getDisplayName(), false));
		if( userInfoService.insert(userInfo)) {
			  new Message(WebContext.getI18nValue(ConstantsOperateMessage.INSERT_SUCCESS),userInfo,MessageType.success,OperateType.add,MessageScope.DB);
		}
		
		 new Message(WebContext.getI18nValue(ConstantsOperateMessage.INSERT_ERROR),MessageType.error);
		return   WebContext.forward("forwardUpdate/"+userInfo.getId());
	}
	
	@RequestMapping(value={"/forwardUpdate/{id}"})
	public ModelAndView forwardUpdateUsers(@PathVariable("id")String id){
		ModelAndView modelAndView=new ModelAndView("/userinfo/userUpdate");
		UserInfo userInfo=userInfoService.get(id);
		if(userInfo.getPicture()!=null){
			WebContext.getSession().setAttribute(userInfo.getId(), userInfo.getPicture());
		}
		
		modelAndView.addObject("model", userInfo);
		return modelAndView;
	}
MaxKey单点登录官方's avatar
init  
MaxKey单点登录官方 已提交
154 155 156 157 158 159 160

	/**
	 * 查询用户,根据id
	 * @param id
	 * @return
	 */
	@ResponseBody
161
	@RequestMapping(value="/getUsers/{id}") 
MaxKey单点登录官方's avatar
init  
MaxKey单点登录官方 已提交
162 163 164 165 166
	public UserInfo getUserInfo(@PathVariable("id")String id) {
		_logger.debug(id);
		UserInfo userInfo = userInfoService.get(id);
		if(userInfo!=null&&userInfo.getDecipherable()!=null){
			try{
M
MaxKey 已提交
167
				userInfo.setPassword(PasswordReciprocal.getInstance().decoder(userInfo.getDecipherable()));
MaxKey单点登录官方's avatar
init  
MaxKey单点登录官方 已提交
168 169 170 171 172 173
			}catch (Exception e) {
			}
			userInfo.setDecipherable(userInfo.getPassword());
		}
		return userInfo;
	}
174 175
	
	
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
176 177 178 179 180
    @ResponseBody
    @RequestMapping(value = "/randomPassword")
    public String randomPassword() {
        return userInfoService.randomPassword();
    }
181
	   
MaxKey单点登录官方's avatar
init  
MaxKey单点登录官方 已提交
182 183 184 185 186 187 188
	/**
	 * 修改用户
	 * @param userInfo
	 * @param result
	 * @return
	 */

189 190 191 192 193 194 195 196 197 198 199 200
	@RequestMapping(value="/update") 
	public ModelAndView updateUsers(@Valid  @ModelAttribute("userInfo")UserInfo userInfo,BindingResult result) {
		_logger.debug(userInfo.toString());
		if(result.hasErrors()){
			// new Message(WebContext.getValidErrorText(),result);
		}
		_logger.info(userInfo.getExtraAttributeName());
		_logger.info(userInfo.getExtraAttributeValue());
		//userInfo.setNameZHShortSpell(StringUtils.hanYu2Pinyin(userInfo.getDisplayName(), true));
		//userInfo.setNameZHSpell(StringUtils.hanYu2Pinyin(userInfo.getDisplayName(), false));
		convertExtraAttribute(userInfo) ;
		_logger.info(userInfo.getExtraAttribute());
M
MaxKey 已提交
201
		userInfo.setInstId(WebContext.getUserInfo().getInstId());
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
		if(userInfoService.update(userInfo)) {
			new Message(WebContext.getI18nValue(ConstantsOperateMessage.UPDATE_SUCCESS),userInfo,MessageType.success,OperateType.add,MessageScope.DB);
			
		}
	    new Message(WebContext.getI18nValue(ConstantsOperateMessage.UPDATE_ERROR),MessageType.error);
		return   WebContext.forward("forwardUpdate/"+userInfo.getId());
	}
	
	
	/**
	 * 批量删除用户
	 * @param id
	 * @return
	 */
	@ResponseBody
	@RequestMapping(value="/batchDelete")  
	public Message batchDeleteUsers(@RequestParam("id")String id) {
		_logger.debug(id);
M
MaxKey 已提交
220
		if(userInfoService.deleteBatch(StringUtils.string2List(id, ","))) {
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
			return  new Message(WebContext.getI18nValue(ConstantsOperateMessage.DELETE_SUCCESS),MessageType.success);
			
		} else {
			return  new Message(WebContext.getI18nValue(ConstantsOperateMessage.DELETE_ERROR),MessageType.error);
		}
	}
	
	/**
	 * 根据用户id删除用户
	 * 
	 * @param id
	 * @return
	 */
	@ResponseBody
	@RequestMapping(value="/delete")  
	public Message deleteUsersById(@RequestParam("id") String id) {
		_logger.debug(id);
M
MaxKey 已提交
238
		if(userInfoService.deleteBatch(id)) {
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
			//provisioningPrepare.prepare(userInfo, OPERATEACTION.DELETE_ACTION);
			return  new Message(WebContext.getI18nValue(ConstantsOperateMessage.DELETE_SUCCESS),MessageType.success);
		} else {
			return  new Message(WebContext.getI18nValue(ConstantsOperateMessage.DELETE_ERROR),MessageType.error);
		}
	}
	
	protected void convertExtraAttribute(UserInfo userInfo) {
		if(userInfo.getExtraAttributeValue()!=null){
			String []extraAttributeLabel=userInfo.getExtraAttributeName().split(",");
			String []extraAttributeValue=userInfo.getExtraAttributeValue().split(",");
			Map<String,String> extraAttributeMap=new HashMap<String,String> ();
			for(int i=0;i<extraAttributeLabel.length;i++){
				extraAttributeMap.put(extraAttributeLabel[i], extraAttributeValue[i]);
			}
			String extraAttribute=JsonUtils.object2Json(extraAttributeMap);
			userInfo.setExtraAttribute(extraAttribute);
		}
	}
	
	@RequestMapping(value={"/forwardChangePassword/{id}"})
	public ModelAndView forwardChangePassword(@PathVariable("id")String id){
		ModelAndView modelAndView=new ModelAndView("/userinfo/changePassword");
		UserInfo userInfo=userInfoService.get(id);
		
		modelAndView.addObject("model", userInfo);
		return modelAndView;
	}
	
	@RequestMapping(value={"/forwardChangeUserinfoStatus/{id}"})
	public ModelAndView forwardChangeUserinfoStatus(@PathVariable("id")String id){
		ModelAndView modelAndView=new ModelAndView("/userinfo/changeUserinfoStatus");
		UserInfo userInfo=userInfoService.get(id);
		
		modelAndView.addObject("model", userInfo);
		return modelAndView;
	}
	
	@ResponseBody
	@RequestMapping(value="/changePassword")  
	public Message changePassword( @ModelAttribute("userInfo")UserInfo userInfo) {
		_logger.debug(userInfo.getId());
M
MaxKey 已提交
281
		userInfo.setPasswordSetType(ConstantsPasswordSetType.PASSWORD_NORMAL);
M
MaxKey 已提交
282
		if(userInfoService.changePassword(userInfo,true)) {
283 284 285 286 287 288 289
			return  new Message(WebContext.getI18nValue(ConstantsOperateMessage.UPDATE_SUCCESS),MessageType.success);
			
		} else {
			return  new Message(WebContext.getI18nValue(ConstantsOperateMessage.UPDATE_ERROR),MessageType.error);
		}
	}
	
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
290 291
    @RequestMapping(value = "/import")
    public ModelAndView importing(@ModelAttribute("excelImportFile")ExcelImport excelImportFile)  {
M
MaxKey 已提交
292 293 294 295 296 297
        if (excelImportFile.isExcelNotEmpty() ) {
            try {
                List<UserInfo> userInfoList = Lists.newArrayList();
                Workbook workbook = excelImportFile.biuldWorkbook();
                int recordCount = 0;
                int sheetSize = workbook.getNumberOfSheets();
M
MaxKey 已提交
298
                for (int i = 0; i < sheetSize; i++) {//遍历sheet页
M
MaxKey 已提交
299 300 301 302 303 304 305
                    Sheet sheet = workbook.getSheetAt(i);
                    int rowSize = sheet.getLastRowNum() + 1;
                    for (int j = 1; j < rowSize; j++) {//遍历行
                        Row row = sheet.getRow(j);
                        if (row == null || j <3 ) {//略过空行和前3行
                            continue;
                        } else {//其他行是数据行
M
MaxKey 已提交
306 307
                        	UserInfo userInfo = buildUserFromSheetRow(row);
                            userInfoList.add(userInfo);
M
MaxKey 已提交
308 309 310 311 312 313 314 315
                            recordCount ++;
                            _logger.debug("record {} user {} account {}",recordCount,userInfo.getDisplayName(),userInfo.getUsername());
                        }
                    }
                }
                // 数据去重
                if(!CollectionUtils.isEmpty(userInfoList)){
                    userInfoList = userInfoList.stream().collect(Collectors.collectingAndThen(Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(o -> o.getUsername()))), ArrayList::new));
M
MaxKey 已提交
316
                    if( userInfoService.insertBatch(userInfoList)) {
M
MaxKey 已提交
317 318 319 320 321 322 323 324 325 326
                    	new Message(WebContext.getI18nValue(ConstantsOperateMessage.INSERT_SUCCESS), null, MessageType.success, OperateType.add, MessageScope.DB);
                    }else {
                    	new Message(WebContext.getI18nValue(ConstantsOperateMessage.INSERT_ERROR), MessageType.error);
                    }
                }
            } catch (IOException e) {
                e.printStackTrace();
            }finally {
            	excelImportFile.closeWorkbook();
            }
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
327
        }else {
M
MaxKey 已提交
328
        	new Message(WebContext.getI18nValue(ConstantsOperateMessage.INSERT_ERROR), MessageType.error);
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
329 330
        }
        
M
MaxKey 已提交
331
        return new ModelAndView("/userinfo/usersImport");
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
332 333
    }
    
334 335 336 337 338
	@InitBinder
	public void binder(WebDataBinder binder) {
		binder.registerCustomEditor(String.class, new PropertyEditorSupport() {
		    @Override
			public void setAsText(String value) {
339
		        	if(StringUtils.isEmpty(value)){
340 341 342 343 344
		        		setValue(null);
		        	}else{
		        		setValue(value);
		        	}
		    }
Y
yapeng.li 已提交
345

346 347 348 349 350 351
		    
		});
		 SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
	        dateFormat.setLenient(false);  
	        binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
	}
M
MaxKey 已提交
352
	
M
MaxKey 已提交
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
	
	public UserInfo buildUserFromSheetRow(Row row) {
		UserInfo userInfo = new UserInfo();
        userInfo.setCreatedDate(DateUtils.formatDateTime(new Date()));
		// 登录账号
		userInfo.setUsername(ExcelUtils.getValue(row, 0));
		// 密码
		userInfo.setPassword(ExcelUtils.getValue(row, 1));
		// 用户显示
		userInfo.setDisplayName(ExcelUtils.getValue(row, 2));
		// 姓
		userInfo.setFamilyName(ExcelUtils.getValue(row, 3));
		// 名
		userInfo.setGivenName(ExcelUtils.getValue(row, 4));
		// 中间名
		userInfo.setMiddleName(ExcelUtils.getValue(row, 5));
		// 昵称
		userInfo.setNickName(ExcelUtils.getValue(row, 6));
		// 性别
		String gender = ExcelUtils.getValue(row, 7);
		userInfo.setGender(gender.equals("") ? 1 : Integer.valueOf(gender));
		// 语言偏好
		userInfo.setPreferredLanguage(ExcelUtils.getValue(row, 8));
		// 时区
		userInfo.setTimeZone(ExcelUtils.getValue(row, 9));
		// 用户类型
		userInfo.setUserType(ExcelUtils.getValue(row, 10));
		// 员工编码
		userInfo.setEmployeeNumber(ExcelUtils.getValue(row, 11));
		// AD域账号
		userInfo.setWindowsAccount(ExcelUtils.getValue(row, 12));
		// 所属机构
		userInfo.setOrganization(ExcelUtils.getValue(row, 13));
		// 分支机构
		userInfo.setDivision(ExcelUtils.getValue(row, 14));
		// 部门编号
		userInfo.setDepartmentId(ExcelUtils.getValue(row, 15));
		// 部门名称
		userInfo.setDepartment(ExcelUtils.getValue(row, 16));
		// 成本中心
		userInfo.setCostCenter(ExcelUtils.getValue(row, 17));
		// 职位
		userInfo.setJobTitle(ExcelUtils.getValue(row, 18));
		// 级别
		userInfo.setJobLevel(ExcelUtils.getValue(row, 19));
		// 上级经理
		userInfo.setManager(ExcelUtils.getValue(row, 20));
		// 助理
		userInfo.setAssistant(ExcelUtils.getValue(row, 21));
		// 入职时间
		userInfo.setEntryDate(ExcelUtils.getValue(row, 22));
		// 离职时间
		userInfo.setQuitDate(ExcelUtils.getValue(row, 23));
		// 工作-国家
		userInfo.setWorkCountry(ExcelUtils.getValue(row, 24));
		// 工作-省
		userInfo.setWorkRegion(ExcelUtils.getValue(row, 25));
		// 工作-城市
		userInfo.setTimeZone(ExcelUtils.getValue(row, 26));
		// 工作-地址
		userInfo.setWorkLocality(ExcelUtils.getValue(row, 27));
		// 邮编
		userInfo.setWorkPostalCode(ExcelUtils.getValue(row, 28));
		// 传真
		userInfo.setWorkFax(ExcelUtils.getValue(row, 29));
		// 工作电话
		userInfo.setWorkPhoneNumber(ExcelUtils.getValue(row, 30));
		// 工作邮件
		userInfo.setWorkEmail(ExcelUtils.getValue(row, 31));
		// 证件类型 todo 现在数据库中存储的是tinyint
//      userInfo.setIdType(ExcelUtils.getValue(row, 32));
		// 证件号码
		userInfo.setIdCardNo(ExcelUtils.getValue(row, 33));
		// 出生日期
		userInfo.setBirthDate(ExcelUtils.getValue(row, 34));
		// 婚姻状态 todo 现在数据字段类型是 tinyint
//      userInfo.setMarried(ExcelUtils.getValue(row, 35));
		// 开始工作时间
		userInfo.setStartWorkDate(ExcelUtils.getValue(row, 36));
		// 个人主页
		userInfo.setWebSite(ExcelUtils.getValue(row, 37));
		// 即时通讯
		userInfo.setDefineIm(ExcelUtils.getValue(row, 38));
		// 国家
		userInfo.setHomeCountry(ExcelUtils.getValue(row, 39));
		// 省
		userInfo.setHomeRegion(ExcelUtils.getValue(row, 40));
		// 城市
		userInfo.setHomeLocality(ExcelUtils.getValue(row, 41));
		// 家庭地址
		userInfo.setHomeStreetAddress(ExcelUtils.getValue(row, 42));
		// 家庭邮编
		userInfo.setHomePostalCode(ExcelUtils.getValue(row, 43));
		// 家庭传真
		userInfo.setHomeFax(ExcelUtils.getValue(row, 44));
		// 家庭电话
		userInfo.setHomePhoneNumber(ExcelUtils.getValue(row, 45));
		// 家庭邮箱
		userInfo.setHomeEmail(ExcelUtils.getValue(row, 46));
		userInfoService.passwordEncoder(userInfo);
        userInfo.setStatus(1);
M
MaxKey 已提交
454
        userInfo.setInstId(WebContext.getUserInfo().getInstId());
M
MaxKey 已提交
455 456
        return userInfo;
	}
M
MaxKey 已提交
457

MaxKey单点登录官方's avatar
init  
MaxKey单点登录官方 已提交
458
}