123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273 |
- /*
- * Copyright [2020] [MaxKey of copyright http://www.maxkey.top]
- *
- * 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
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * 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.
- */
-
- package org.maxkey.persistence.service;
- import java.io.IOException;
- import java.io.InputStream;
- import java.util.ArrayList;
- import java.util.Comparator;
- import java.util.List;
- import java.util.TreeSet;
- import java.util.stream.Collectors;
- import org.apache.mybatis.jpa.persistence.JpaBaseService;
- import org.apache.poi.hssf.usermodel.HSSFWorkbook;
- import org.apache.poi.ss.usermodel.Cell;
- import org.apache.poi.ss.usermodel.CellType;
- import org.apache.poi.ss.usermodel.Row;
- import org.apache.poi.ss.usermodel.Sheet;
- import org.apache.poi.ss.usermodel.Workbook;
- import org.apache.poi.xssf.usermodel.XSSFWorkbook;
- import org.maxkey.entity.Organizations;
- import org.maxkey.persistence.kafka.KafkaIdentityAction;
- import org.maxkey.persistence.kafka.KafkaIdentityTopic;
- import org.maxkey.persistence.kafka.KafkaPersistService;
- import org.maxkey.persistence.mapper.OrganizationsMapper;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Repository;
- import org.springframework.util.CollectionUtils;
- import org.springframework.web.multipart.MultipartFile;
- import com.google.common.collect.Lists;
- @Repository
- public class OrganizationsService extends JpaBaseService<Organizations>{
- @Autowired
- KafkaPersistService kafkaPersistService;
-
- public OrganizationsService() {
- super(OrganizationsMapper.class);
- }
- /* (non-Javadoc)
- * @see com.connsec.db.service.BaseService#getMapper()
- */
- @Override
- public OrganizationsMapper getMapper() {
- // TODO Auto-generated method stub
- return (OrganizationsMapper)super.getMapper();
- }
-
- public boolean insert(Organizations organization) {
- if(super.insert(organization)){
- kafkaPersistService.send(
- KafkaIdentityTopic.ORG_TOPIC, organization, KafkaIdentityAction.CREATE_ACTION);
- return true;
- }
- return false;
- }
-
- public boolean update(Organizations organization) {
- if(super.update(organization)){
- kafkaPersistService.send(
- KafkaIdentityTopic.ORG_TOPIC, organization, KafkaIdentityAction.UPDATE_ACTION);
- return true;
- }
- return false;
- }
-
- public boolean delete(Organizations organization) {
- if(super.delete(organization)){
- kafkaPersistService.send(
- KafkaIdentityTopic.ORG_TOPIC, organization, KafkaIdentityAction.DELETE_ACTION);
- return true;
- }
- return false;
- }
-
- public boolean importing(MultipartFile file) {
- if(file ==null){
- return false;
- }
- InputStream is = null;
- Workbook wb = null;
- List<Organizations> orgsList = null;
- try {
- is = file.getInputStream();
-
- String xls = ".xls";
- String xlsx = ".xlsx";
- int columnSize = 46;
- orgsList = Lists.newArrayList();
- if (file.getOriginalFilename().toLowerCase().endsWith(xls)) {
- wb = new HSSFWorkbook(is);
- } else if (file.getOriginalFilename().toLowerCase().endsWith(xlsx)) {
- wb = new XSSFWorkbook(is);
- } else {
- throw new RuntimeException("maxKey用户导入没有Excel类型");
- }
- int sheetSize = wb.getNumberOfSheets();
- //遍历sheet页
- for (int i = 0; i < sheetSize; i++) {
- Sheet sheet = wb.getSheetAt(i);
- int rowSize = sheet.getLastRowNum() + 1;
- //遍历行
- for (int j = 1; j < rowSize; j++) {
- Row row = sheet.getRow(j);
- //略过空行和前3行
- if (row == null || j <3 ) {
- continue;
- } else {
- //其他行是数据行
- Organizations organization =new Organizations();
- for (int k = 0; k < columnSize; k++) {
- if (k == 0) {
- // 上级编码
- Cell cell = row.getCell(k);
- organization.setParentId(getValue(cell));
- } else if (k == 1) {
- // 上级名称
- Cell cell = row.getCell(k);
- organization.setParentName(getValue(cell));
- } else if (k == 2) {
- // 机构编码
- Cell cell = row.getCell(k);
- organization.setId(getValue(cell));
- } else if (k == 3) {
- // 机构名称
- Cell cell = row.getCell(k);
- organization.setName(getValue(cell));
- } else if (k == 4) {
- // 机构全称
- Cell cell = row.getCell(k);
- organization.setFullName(getValue(cell));
- } else if (k == 5) {
- // 编码路径
- Cell cell = row.getCell(k);
- organization.setCodePath(getValue(cell));
- } else if (k == 6) {
- // 名称路径
- Cell cell = row.getCell(k);
- organization.setNamePath(getValue(cell));
- } else if (k == 7) {
- // 机构类型
- Cell cell = row.getCell(k);
- organization.setType(getValue(cell));
- } else if (k == 8) {
- // 所属分支机构
- Cell cell = row.getCell(k);
- organization.setDivision(getValue(cell));
- } else if (k == 9) {
- // 级别
- Cell cell = row.getCell(k);
- String level=getValue(cell);
- organization.setLevel(level.equals("") ? "1" : level);
- } else if (k == 10) {
- // 排序
- Cell cell = row.getCell(k);
- String sortIndex=getValue(cell);
- organization.setSortIndex(sortIndex.equals("") ? "1" : sortIndex);
- } else if (k == 11) {
- // 联系人
- Cell cell = row.getCell(k);
- organization.setContact(getValue(cell));
- } else if (k == 12) {
- // 联系电话
- Cell cell = row.getCell(k);
- organization.setPhone(getValue(cell));
- }else if (k == 13) {
- // 邮箱
- Cell cell = row.getCell(k);
- organization.setEmail(getValue(cell));
- }else if (k == 14) {
- // 传真
- Cell cell = row.getCell(k);
- organization.setFax(getValue(cell));
- }else if (k == 24) {
- // 工作-国家
- Cell cell = row.getCell(k);
- organization.setCountry(getValue(cell));
- }else if (k == 25) {
- // 工作-省
- Cell cell = row.getCell(k);
- organization.setRegion(getValue(cell));
- }else if (k == 26) {
- // 工作-城市
- Cell cell = row.getCell(k);
- organization.setLocality(getValue(cell));
- }else if (k == 27) {
- // 工作-地址
- Cell cell = row.getCell(k);
- organization.setLocality(getValue(cell));
- }else if (k == 28) {
- // 邮编
- Cell cell = row.getCell(k);
- organization.setPostalCode(getValue(cell));
- }else if (k == 29) {
- // 详细描述
- Cell cell = row.getCell(k);
- organization.setDescription(getValue(cell));
- }
- }
- organization.setStatus("1");
- orgsList.add(organization);
- }
-
- }
- }
- // 数据去重
- if(CollectionUtils.isEmpty(orgsList)){
- orgsList = orgsList.stream().collect(Collectors.collectingAndThen(Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(o -> o.getId()))), ArrayList::new));
- }
-
- } catch (IOException e) {
- e.printStackTrace();
- }finally {
- if (is != null) {
- try {
- is.close();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- if(wb != null) {
- try {
- wb.close();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- }
-
- return batchInsert(orgsList);
- }
- /**
- * 根据数据格式返回数据
- *
- * @param cell
- * @return
- */
- public static String getValue(Cell cell) {
- if (cell == null) {
- return "";
- } else if (cell.getCellType() == CellType.BOOLEAN) {
- return String.valueOf(cell.getBooleanCellValue());
- } else if (cell.getCellType() == CellType.NUMERIC) {
- cell.setBlank();
- return String.valueOf(cell.getStringCellValue().trim());
- } else {
- return String.valueOf(cell.getStringCellValue().trim());
- }
- }
- }
|