package com.trs.ggzyexchange.schedul;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.trs.ggzyexchange.api.vo.Result;
import com.trs.ggzyexchange.controller.AreaDataName;
import com.trs.ggzyexchange.controller.BaseController;
import com.trs.ggzyexchange.entity.*;
import com.trs.ggzyexchange.enums.ClassIfy;
import com.trs.ggzyexchange.enums.JobLock;
import com.trs.ggzyexchange.service.*;
import com.trs.ggzyexchange.utils.TenderDetailsVoUtils;
import org.apache.commons.lang3.ObjectUtils;
import org.quartz.Job;
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import javax.servlet.http.HttpServletRequest;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
/**
*
* 中标结果公示 定时任务
*
*
* @author trs
* @since 2023-02-16
*/
@Component
public class GcBidpublicitySchedul implements Job {
private Logger logger = LoggerFactory.getLogger(GcBidpublicitySchedul.class);
@Autowired
private GcNoticeandfileService gcNoticeandfileService;
@Autowired
private AreaDataName areaDataName;
@Autowired
private GcBidpublicityService gcBidpublicityService;
@Autowired
private TenderDetailsVoService tenderDetailsVoService;
@Autowired
private ScheduledTashService scheduledTashService;
@Autowired
private GcAttachmentService gcAttachmentService;
public void queryPageListUpdateEs() throws JsonProcessingException {
/**
* 查询当前在定时任务表当中的最新时间
*/
QueryWrapper scheduledTashQueryWrapper = new QueryWrapper();
scheduledTashQueryWrapper.eq("table_name_value","gc_bidpublicity");
Page pageScheduledTash = new Page(1, 1);
Page page = scheduledTashService.page(pageScheduledTash, scheduledTashQueryWrapper);
List records = page.getRecords();
ScheduledTash scheduledTash = null;
if(records.size() > 0){
scheduledTash = records.get(0);
}
Long time = null;
if(ObjectUtils.isEmpty(scheduledTash)){
try {
/**
* 如果scheduledTash为空,证明没有当前定时任务,设置当前的定时任务的时间为0 查询表gcNoticeandfile表当中的最新时间
*/
time = gcBidpublicityService.maxDataTimeStamp();
ScheduledTash scheduledTashTash = new ScheduledTash();
scheduledTashTash.setTime(0L);
time = 0L;
scheduledTashTash.setTableNameValue("gc_bidpublicity");
scheduledTashTash.setUpdateTime(new Date());
scheduledTashTash.setCreateTime(new Date());
scheduledTashService.saveOrUpdate(scheduledTashTash,scheduledTashQueryWrapper);
}catch (Exception e){
e.printStackTrace();
}
}else {
/**
* 如果scheduledTash为空,证明没有当前定时任务,设置当前的定时任务的时间为0 查询表gcNoticeandfile表当中的最新时间
*/
time = scheduledTash.getTime();
}
try {
//查询表gcNoticeandfile表当中的最新时间
Long newTime = gcBidpublicityService.maxDataTimeStamp();
ScheduledTash scheduledTashTash = new ScheduledTash();
scheduledTashTash.setTime(newTime);
scheduledTashTash.setTableNameValue("gc_bidpublicity");
scheduledTashTash.setUpdateTime(new Date());
scheduledTashService.saveOrUpdate(scheduledTashTash,scheduledTashQueryWrapper);
}catch (Exception e){
e.printStackTrace();
}
if(!ObjectUtils.isEmpty(time)){
try {
QueryWrapper GcBidpublicityQueryWrapper = new QueryWrapper();
GcBidpublicityQueryWrapper.gt("DATA_TIMESTAMP",time);
int count = gcBidpublicityService.count(GcBidpublicityQueryWrapper);
Integer pageSize = 1000;
Integer pageNum = (int)Math.ceil((double)count/pageSize);
for(int i = 1; i <= pageNum;i++){
try {
List tenderDetailsVoListAll = getTenderDetailsVoListAll(i, pageSize,time);
gcNoticeandfileService.parseTenderDetailsVo(tenderDetailsVoListAll);
}catch (Exception e){
e.printStackTrace();
}
}
}catch (Exception e){
e.printStackTrace();
}
}
}
public List getTenderDetailsVoListAll(Integer pageNo,Integer pageSize,Long time){
Page page = new Page(pageNo, pageSize);
IPage pageList = gcBidpublicityService.queryGcBidpublicityAllListByTime(page,time);
for (TenderDetailsVo record : pageList.getRecords()) {
try {
record.setNoticeTypeCode(ClassIfy.ANNOUNCEMENT_OF_BID_WINNING_RESULTS.getCode());
record.setNoticeTypeName(ClassIfy.ANNOUNCEMENT_OF_BID_WINNING_RESULTS.getName());
record.setTransactionTypeCode(ClassIfy.ENGINEERING_CONSTRUCTION.getCode());
record.setTransactionTypeName(ClassIfy.ENGINEERING_CONSTRUCTION.getName());
record = tenderDetailsVoService.getTenderDetailsVoAllOrther(record);
String bidSectionCodes = record.getBidSectionCodes();
if(!ObjectUtils.isEmpty(bidSectionCodes)) {
int i1 = bidSectionCodes.indexOf(",");
int i2 = bidSectionCodes.indexOf(";");
int i3 = bidSectionCodes.indexOf("
");
int i4 = bidSectionCodes.indexOf("ltbrgt");
String splitBidSectionCode = null;
String[] split = null;
boolean flag = false;
if (i1 > 0) {
splitBidSectionCode = bidSectionCodes.split(",")[0];
split = bidSectionCodes.split(",");
flag = true;
}
if (i2 > 0) {
splitBidSectionCode = bidSectionCodes.split(";")[0];
split = bidSectionCodes.split(";");
flag = true;
}
if (i3 > 0) {
splitBidSectionCode = bidSectionCodes.split("
")[0];
split = bidSectionCodes.split("
");
flag = true;
}
if (i4 > 0) {
splitBidSectionCode = bidSectionCodes.split("ltbrgt")[0];
split = bidSectionCodes.split("ltbrgt");
flag = true;
}
if (!flag) {
splitBidSectionCode = bidSectionCodes;
split = bidSectionCodes.split(",");
}
List attachmentList = new ArrayList();
if (!ObjectUtils.isEmpty(split)) {
if (split.length >= 1) {
for (String bidSectionCode : split) {
try {
String bidSectionCodeClean = bidSectionCode.replaceAll(">", "").replaceAll("<", "");
String bidSectionCodeClean2 = bidSectionCodeClean.replaceAll("gt", "").replaceAll("lt", "");
//通过标包编号查询对应的附件信息
QueryWrapper gcAttachmentQueryWrapper = new QueryWrapper();
gcAttachmentQueryWrapper.eq("ATTACHMENT_SET_CODE", "WIN_BID_NOTICE");//add
gcAttachmentQueryWrapper.eq("isshow", "0");//add
//gcAttachmentQueryWrapper.eq("BID_SECTION_CODE",bidSectionCode);
gcAttachmentQueryWrapper.like("BID_SECTION_CODE", bidSectionCodeClean2);
List list = gcAttachmentService.list(gcAttachmentQueryWrapper);
if (attachmentList.size() > 0) {
break;
}
if (!ObjectUtils.isEmpty(list)) {
attachmentList.addAll(list);
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
String noticeContent = record.getNoticeContent();
String file = "";
if (!ObjectUtils.isEmpty(attachmentList)) {
if (attachmentList.size() > 0) {
file = "
附件:
";
}
}
for (GcAttachment gcAttachment : attachmentList) {
try {
String attachmentName = gcAttachment.getAttachmentName();
String url = gcAttachment.getUrl();
file += "" + attachmentName + "
";
} catch (Exception e) {
e.printStackTrace();
}
}
//招标文件拼接地址
if (!ObjectUtils.isEmpty(noticeContent) && noticeContent != "") {
file = noticeContent + file;
}
record.setNoticeContent(file);
}
TenderDetailsVoUtils.isNull(record);
}catch (Exception e){
e.printStackTrace();
}
}
return pageList.getRecords();
}
@Override
public void execute(JobExecutionContext jobExecutionContext) throws JobExecutionException {
try {
if(JobLock.GcBidpublicityFlag){
JobLock.GcBidpublicityFlag = false;
logger.info("执行GcBidpublicity", new SimpleDateFormat().format(new Date()));
try {
queryPageListUpdateEs();
} catch (Exception e) {
e.printStackTrace();
}
JobLock.GcBidpublicityFlag = true;
}else{
logger.info("不执行GcBidpublicity", new SimpleDateFormat().format(new Date()));
}
}catch (Exception e){
e.printStackTrace();
JobLock.GcBidpublicityFlag = true;
}
}
}