|
|
@@ -1,144 +0,0 @@
|
|
|
-package com.java110.api.listener.user;
|
|
|
-
|
|
|
-import com.alibaba.fastjson.JSONObject;
|
|
|
-import com.java110.api.listener.AbstractServiceApiListener;
|
|
|
-import com.java110.intf.user.IUserInnerServiceSMO;
|
|
|
-import com.java110.dto.user.UserDto;
|
|
|
-import com.java110.utils.constant.CommonConstant;
|
|
|
-import com.java110.utils.constant.ServiceCodeConstant;
|
|
|
-import com.java110.utils.exception.ListenerExecuteException;
|
|
|
-import com.java110.utils.util.Assert;
|
|
|
-import com.java110.utils.util.BeanConvertUtil;
|
|
|
-import com.java110.utils.util.PinYinUtil;
|
|
|
-import com.java110.utils.util.StringUtil;
|
|
|
-import com.java110.core.annotation.Java110Listener;
|
|
|
-import com.java110.core.context.DataFlowContext;
|
|
|
-import com.java110.entity.center.AppService;
|
|
|
-import com.java110.core.event.service.api.ServiceDataFlowEvent;
|
|
|
-import com.java110.vo.api.staff.ApiStaffDataVo;
|
|
|
-import com.java110.vo.api.staff.ApiStaffVo;
|
|
|
-import org.springframework.beans.factory.annotation.Autowired;
|
|
|
-import org.springframework.http.*;
|
|
|
-
|
|
|
-import java.util.ArrayList;
|
|
|
-import java.util.List;
|
|
|
-
|
|
|
-/**
|
|
|
- * 查询员工信息
|
|
|
- * Created by Administrator on 2019/4/2.
|
|
|
- */
|
|
|
-@Java110Listener("queryStaffServiceListener")
|
|
|
-public class QueryStaffServiceListener extends AbstractServiceApiListener {
|
|
|
-
|
|
|
- @Autowired
|
|
|
- private IUserInnerServiceSMO userInnerServiceSMOImpl;
|
|
|
-
|
|
|
- @Override
|
|
|
- public int getOrder() {
|
|
|
- return 0;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- @Override
|
|
|
- public String getServiceCode() {
|
|
|
- return ServiceCodeConstant.SERVICE_CODE_QUERY_STAFF_INFOS;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public HttpMethod getHttpMethod() {
|
|
|
- return HttpMethod.GET;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- protected void validate(ServiceDataFlowEvent event, JSONObject reqJson) {
|
|
|
- Assert.hasKeyAndValue(reqJson,"page","请求报文中未包含page节点");
|
|
|
- Assert.hasKeyAndValue(reqJson,"row","请求报文中未包含rows节点");
|
|
|
- if (!reqJson.containsKey("storeId")) {
|
|
|
- String storeId = event.getDataFlowContext().getRequestCurrentHeaders().get("store-id");
|
|
|
- reqJson.put("storeId", storeId);
|
|
|
- }
|
|
|
- Assert.hasKeyAndValue(reqJson,"storeId","请求报文中未包含storeId节点");
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- protected void doSoService(ServiceDataFlowEvent event, DataFlowContext context, JSONObject reqJson) {
|
|
|
-
|
|
|
- UserDto userDto = BeanConvertUtil.covertBean(reqJson, UserDto.class);
|
|
|
-
|
|
|
- int count = userInnerServiceSMOImpl.getStaffCount(userDto);
|
|
|
-
|
|
|
- List<ApiStaffDataVo> staffs = null;
|
|
|
-
|
|
|
- if (count > 0) {
|
|
|
- staffs = BeanConvertUtil.covertBeanList(userInnerServiceSMOImpl.getStaffs(userDto), ApiStaffDataVo.class);
|
|
|
- refreshInitials(staffs);
|
|
|
- } else {
|
|
|
- staffs = new ArrayList<>();
|
|
|
- }
|
|
|
-
|
|
|
- ApiStaffVo apiStaffVo = new ApiStaffVo();
|
|
|
-
|
|
|
- apiStaffVo.setTotal(count);
|
|
|
- apiStaffVo.setRecords((int) Math.ceil((double) count / (double) reqJson.getInteger("row")));
|
|
|
- apiStaffVo.setStaffs(staffs);
|
|
|
-
|
|
|
- ResponseEntity<String> responseEntity = new ResponseEntity<String>(JSONObject.toJSONString(apiStaffVo), HttpStatus.OK);
|
|
|
-
|
|
|
- context.setResponseEntity(responseEntity);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 刷入首字母
|
|
|
- * @param staffs
|
|
|
- */
|
|
|
- private void refreshInitials(List<ApiStaffDataVo> staffs) {
|
|
|
-
|
|
|
- for(ApiStaffDataVo staffDataVo : staffs){
|
|
|
- if(StringUtil.isEmpty(staffDataVo.getName())){
|
|
|
- continue;
|
|
|
- }
|
|
|
- staffDataVo.setInitials(PinYinUtil.getFirstSpell(staffDataVo.getName()).toUpperCase().charAt(0)+"");
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 查询用户信息
|
|
|
- * @param tmpObj
|
|
|
- */
|
|
|
- private void queryUserInfoByUserId( DataFlowContext dataFlowContext,JSONObject tmpObj,AppService appService){
|
|
|
-
|
|
|
- String userId = tmpObj.getString("userId");
|
|
|
-
|
|
|
- if(StringUtil.isEmpty(userId)){
|
|
|
- return ;
|
|
|
- }
|
|
|
-
|
|
|
- ResponseEntity responseEntity= null;
|
|
|
-
|
|
|
- String requestUrl = appService.getUrl();
|
|
|
- HttpHeaders header = new HttpHeaders();
|
|
|
- header.add(CommonConstant.HTTP_SERVICE.toLowerCase(),ServiceCodeConstant.SERVICE_CODE_QUERY_USER_USERINFO);
|
|
|
-
|
|
|
- //先查询商户服务查询员工userId
|
|
|
- requestUrl = requestUrl + "?userId="+userId;
|
|
|
- dataFlowContext.getRequestHeaders().put("REQUEST_URL",requestUrl);
|
|
|
- HttpEntity<String> httpEntity = new HttpEntity<String>("", header);
|
|
|
- doRequest(dataFlowContext,appService,httpEntity);
|
|
|
- responseEntity = dataFlowContext.getResponseEntity();
|
|
|
-
|
|
|
- if(responseEntity.getStatusCode() != HttpStatus.OK){
|
|
|
- throw new ListenerExecuteException(1999,"查询用户信息异常 "+responseEntity.getBody());
|
|
|
- }
|
|
|
- tmpObj.putAll(JSONObject.parseObject(responseEntity.getBody().toString()));
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- public IUserInnerServiceSMO getUserInnerServiceSMOImpl() {
|
|
|
- return userInnerServiceSMOImpl;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUserInnerServiceSMOImpl(IUserInnerServiceSMO userInnerServiceSMOImpl) {
|
|
|
- this.userInnerServiceSMOImpl = userInnerServiceSMOImpl;
|
|
|
- }
|
|
|
-}
|