use of com.itrus.portal.db.AppService in project portal by ixinportal.
the class EvidenceSaveContractService method saveBody.
// 存证核验处理方法(pdf电子合同)
public Map<String, Object> saveBody(Map<String, Object> result1, ApplicationInfo applicationInfo1, AppService appService1, EvidenceSaveService evidenceSaveService, Date applyDate, String evidenceSn, String genSn, String signedBase64, String evidencePackage, String hashAlg, String hashvalue, Date dateVp, Date dateVc, List<String> certs, RealNameAuthentication realNameAuthentication, RealNameAuthentication realNameAuthenticationTime, RealNameAuthentication realNameAuthenticationOss, Map<String, Object> mapCharging) {
Map<String, Object> result = result1;
ApplicationInfo applicationInfo = applicationInfo1;
AppService appService = appService1;
List<Object> objs = new ArrayList<Object>();
String info = null;
// 证据服务记录
EvidenceBasicInformation basicInformation = null;
// 本次证据包大小
int fileSize = evidencePackage.getBytes().length;
// 定义一个证据的提交次数
int count = 0;
String failureReason = null;
String sn = genSn;
if (StringUtils.isNotBlank(evidenceSn)) {
sn = evidenceSn;
}
try {
// 得到证据包json
JSONObject jsonEvidenceContent = JSONObject.parseObject(evidencePackage);
// 获取证书固定服务配置
EvidenceServiceConfiguration serviceConfiguration = null;
serviceConfiguration = CacheCustomer.getEVIDENCE_SERVICE_CONFIG();
if (serviceConfiguration == null) {
List<EvidenceServiceConfiguration> serviceconfig = sqlSession.selectList("com.itrus.portal.db.EvidenceServiceConfigurationMapper.selectByExample");
if (!serviceconfig.isEmpty()) {
serviceConfiguration = serviceconfig.get(0);
CacheCustomer.setEVIDENCE_SERVICE_CONFIG(serviceConfiguration);
} else {
result.put("status", -22);
result.put("message", "缺少服务配置");
return result;
}
}
// 验签信息入库
EvidenceClientSignature clientSignature = new EvidenceClientSignature();
clientSignature.setHashAlgorithm(hashAlg);
clientSignature.setHashvalue(hashvalue);
clientSignature.setName("0");
// ---- 关联证书
clientSignature.setCertId(Long.parseLong(applicationInfo.getCertBase64()));
clientSignature.setSignatureType("2");
clientSignature.setIdentiType("1");
clientSignature.setSignaturevalue(signedBase64);
clientSignature.setCreateTime(dateVp);
clientSignature.setEvidenceSn(sn);
objs.add(clientSignature);
clientSignature = null;
// 密钥别名定义
String alias = null;
// 判断是否需要签名或时间戳
if (evidenceSaveService.getFixationWay() != null && evidenceSaveService.getFixationWay() != 1) {
// 判断是否需要签名
if (evidenceSaveService.getFixationWay() == 2 || evidenceSaveService.getFixationWay() == 4) {
// 定义签名参数
Map<String, Object> param = new HashMap<String, Object>();
String url = null;
// 判断签名类型配置是否为空
if (StringUtils.isNotBlank(serviceConfiguration.getSignatureType())) {
// 得到配置证书
EvidenceCertificate evidenceCertificate = null;
evidenceCertificate = CacheCustomer.getEVIDENCE_CERTIFICATE_MAP().get((long) serviceConfiguration.getSignatureCertificate());
if (evidenceCertificate == null) {
evidenceCertificate = certificateService.selectById((long) serviceConfiguration.getSignatureCertificate());
}
// 得到服务配置的签名证书的密钥别名
alias = CacheCustomer.getMAP_COMFIG().get((long) serviceConfiguration.getSignatureCertificate());
if (StringUtils.isEmpty(alias)) {
alias = secretKeyService.getAliasByCertId((long) serviceConfiguration.getSignatureCertificate());
}
// 配置签名url 和 参数 1.裸签名 2.p7分离式签名 3.p7非分离式签名 (本期只做2)
switch(Integer.parseInt(serviceConfiguration.getSignatureType())) {
case 1:
param.put("alias", alias);
param.put("hashAlg", serviceConfiguration.getArithmetic());
param.put("contentType", "CT_HASH");
param.put("content", HMACSHA1.getDigest(serviceConfiguration.getArithmetic(), evidencePackage));
url = realNameAuthentication.getRealNameddress() + SIGNATURE_SIGN;
break;
case 2:
param.put("alias", alias);
param.put("hashAlg", serviceConfiguration.getArithmetic());
param.put("detached", true);
param.put("contentType", "CT_HASH");
param.put("content", HMACSHA1.getDigest(serviceConfiguration.getArithmetic(), evidencePackage));
url = realNameAuthentication.getRealNameddress() + P7_SIGN;
break;
case 3:
param.put("alias", alias);
param.put("hashAlg", serviceConfiguration.getArithmetic());
param.put("detached", false);
param.put("contentType", "CT_HASH");
param.put("content", HMACSHA1.getDigest(serviceConfiguration.getArithmetic(), evidencePackage));
url = realNameAuthentication.getRealNameddress() + P7_SIGN;
break;
}
// 异步处理p7签名
// HttpAsyncClientUtil.getInstance().execute(
// url,
// AuthService.getHeader(),
// param,
// new EvidenceSignTask(
// url,
// param,
// sn,
// Long.parseLong(evidenceCertificate.getCert())));
// 异步处理p7签名
// OkHttpClientManagerSign.postAsyn(
// url,
// AuthService.getHeader().get("Authorization").toString(),
// param,
// new EvidenceSignTask(
// url,
// param,
// sn,
// Long.parseLong(evidenceCertificate.getCert())));
String strP7 = null;
try {
long p7Sign = System.currentTimeMillis();
strP7 = OkHttpClientManagerSign.post(url, AuthService.getHeader().get("Authorization").toString(), param);
log.error("p7Sign time is [" + (System.currentTimeMillis() - p7Sign) + "]");
} catch (Exception e) {
e.printStackTrace();
LogUtil.evidencelog(sqlSession, sn, "存证接口_天威签名", "天威签名失败,证据编号:" + sn + ", 请求参数:" + param.toString() + ", 请求地址:" + url + ", 返回结果:" + strP7 + ", 失败原因:" + e.toString());
result.put("status", 0);
result.put("message", "天威签名失败");
return result;
}
JSONObject jsonRepP7Sign = JSONObject.parseObject(strP7);
if (jsonRepP7Sign.getIntValue("code") != 0) {
// 天威签名失败
LogUtil.evidencelog(sqlSession, sn, "存证接口_天威签名", "天威签名失败,证据编号:" + sn + ", 请求参数:" + param.toString() + ", 请求地址:" + url + ", 返回结果:" + strP7 + ", 失败原因:" + jsonRepP7Sign);
result.put("status", 0);
result.put("message", "天威签名失败");
return result;
} else {
// 天威签名服务记录入库
EvidenceClientSignature signature = new EvidenceClientSignature();
signature.setHashAlgorithm(param.get("hashAlg").toString());
signature.setName("1");
signature.setEvidenceSn(sn);
signature.setSignatureType("2");
signature.setCertId(Long.parseLong(evidenceCertificate.getCert()));
signature.setHashvalue(param.get("content").toString());
signature.setSignaturevalue(jsonRepP7Sign.getString("signedData"));
signature.setCreateTime(new Date());
objs.add(signature);
}
evidenceCertificate = null;
}
}
// 判断是否需要签名时间戳
if (evidenceSaveService.getFixationWay() == 3 || evidenceSaveService.getFixationWay() == 4) {
// 对证据包HASH
String plainHash = HMACSHA1.getDigest(serviceConfiguration.getArithmetic(), evidencePackage);
// 异步处理时间戳 --- 本期是实现新版本接口
long timeSign = System.currentTimeMillis();
Map<String, Object> retTime = EvidenceSaveServiceApi.genTimeStamp(realNameAuthenticationTime, plainHash, serviceConfiguration.getArithmetic(), sn, null);
log.error("timeSign time is [" + (System.currentTimeMillis() - timeSign) + "]");
if (!(boolean) retTime.get("retStatus") || retTime.get("obj") == null) {
result.put("status", 0);
result.put("message", "天威时间戳签名失败");
return result;
}
objs.add(retTime.get("obj"));
}
}
alias = null;
Map<String, Object> retSaveMap = new HashMap<String, Object>();
// 判断证据编号是否为空 true -> 证据编码为空 代表第一次存证 ,false ->证据编码不为空 代表不是第一次存证
if (StringUtils.isEmpty(evidenceSn)) {
basicInformation = new EvidenceBasicInformation();
basicInformation.setReceiptStatus(0);
basicInformation.setStatus(0);
basicInformation.setIsCallback(0);
basicInformation.setCreateTime(new Date());
basicInformation.setEndTime(EvidenceSaveServiceApi.convertDate(evidenceSaveService.getSaveTime()));
basicInformation.setEvidenceSize(fileSize);
basicInformation.setEvidenceSn(genSn);
basicInformation.setAppService(appService.getId());
basicInformation.setEvidenceStatus(1);
basicInformation.setApplicationInfo(applicationInfo.getId());
basicInformation.setOutAppService(evidenceSaveService.getAppServiceName());
basicInformation.setSaveServiceNmae(appService.getAppServiceName());
basicInformation.setServicePlatformName(applicationInfo.getName());
basicInformation.setServiceClientName(applicationInfo.getServiceClientName());
basicInformation.setServiceClientId(applicationInfo.getServiceClientId());
if (StringUtils.isNotEmpty(failureReason)) {
basicInformation.setFailureReason(failureReason);
basicInformation.setEvidenceStatus(0);
result.put("status", 0);
}
// 对要素 (接收 核验 必填) 操作进行处理
long saveFactorTime = System.currentTimeMillis();
retSaveMap = saveFactor(retSaveMap, evidenceSaveService, genSn, jsonEvidenceContent, basicInformation, realNameAuthentication, realNameAuthenticationOss, serviceConfiguration, true, applyDate.getTime());
log.error("saveFactorTime time is [" + (System.currentTimeMillis() - saveFactorTime) + "]");
} else {
result.put("status", 0);
result.put("message", "提交证据失败,系统暂不支持补交功能。");
return result;
}
if (retSaveMap.get("status") != null) {
result.put("status", retSaveMap.get("status"));
result.put("message", retSaveMap.get("message"));
return result;
} else {
List<Object> lists = (List<Object>) retSaveMap.get("objs");
for (Object obj : lists) {
objs.add(obj);
}
}
basicInformation = (EvidenceBasicInformation) retSaveMap.get("basicInformation");
if (basicInformation.getEvidenceStatus() != null && basicInformation.getEvidenceStatus() == 0) {
result.put("status", 0);
result.put("message", basicInformation.getEvidenceStatus());
return result;
}
// 得到加密证书别名
alias = CacheCustomer.getMAP_COMFIG().get((long) serviceConfiguration.getEncryptionCertificate());
if (StringUtils.isEmpty(alias)) {
alias = secretKeyService.getAliasByCertId((long) serviceConfiguration.getEncryptionCertificate());
}
// 内部加密存储证据包
String urlSave = realNameAuthentication.getRealNameddress() + "/storage/save";
Map<String, Object> mapSave = new HashMap<String, Object>();
mapSave.put("type", "ST_E");
mapSave.put("bucketName", realNameAuthenticationOss.getKeyCode());
mapSave.put("objectName", applicationInfo.getServiceClientId() + "/" + sn + (count + 1));
mapSave.put("contentType", "CT_BASE64_DATA");
mapSave.put("content", Base64.encode(evidencePackage.getBytes("utf-8")));
mapSave.put("alias", alias);
mapSave.put("digestZValue", false);
mapSave.put("encAlg", serviceConfiguration.getEncryptionAlgorithm());
String saveFactor = null;
if (retSaveMap.get("saveFactor") != null) {
saveFactor = retSaveMap.get("saveFactor").toString();
}
// 异步处理存储
// long saveTime = System.currentTimeMillis();
// HttpAsyncClientUtil.getInstance().execute(
// urlSave,
// AuthService.getHeader(),
// mapSave,
// new EvidenceSavePackageTask(
// urlSave,
// mapSave,
// null,
// (StringUtils.isEmpty(evidenceSn) ? genSn : evidenceSn),
// fileSize,
// null,
// applyDate,
// Integer.toString(evidenceSaveService.getSaveTime()),
// saveFactor));
// log.error("saveTime time is [" + (System.currentTimeMillis() - saveTime) + "]");
log.error("save is " + (!(evidenceSaveService.getEncryptionWay() == null || evidenceSaveService.getEncryptionWay() == 0)));
if (!(evidenceSaveService.getEncryptionWay() == null || evidenceSaveService.getEncryptionWay() == 0)) {
// String retSave = null;
// try {
// long saveTime = System.currentTimeMillis();
// retSave = OkHttpClientManagerSave.post(urlSave, AuthService.getHeader().get("Authorization").toString(), mapSave);
// log.error("saveTime time is [" + (System.currentTimeMillis() - saveTime) + "]");
// } catch (Exception e) {
// e.printStackTrace();
// LogUtil.evidencelog(sqlSession, sn, "存证接口_存储数据包", "存储数据包失败,证据编号:"
// + sn + ", 请求地址:"
// + urlSave + ",返回结果" + retSave + ", 失败原因:" +e.toString());
//
// result.put("status", 0);
// result.put("message", "证据存储失败");
// return result;
// }
// JSONObject jsonSave = JSONObject.parseObject(retSave);
// if(jsonSave.getIntValue("code") != 0) {//天威签名失败
// LogUtil.evidencelog(sqlSession, sn, "存证接口_存储数据包", "存储数据包失败,证据编号:"
// + sn + ", 请求地址:" + urlSave
// + ",返回结果" + retSave + ", 失败原因:" + jsonSave.getString("message"));
//
// result.put("status", 0);
// result.put("message", "证据存储失败");
// return result;
//
// } else {
// EvidenceEnclosure enclosure = new EvidenceEnclosure();
// enclosure.setBuid(jsonSave.getString("buid"));
// enclosure.setEvidenceSn(sn);
// enclosure.setFilesize(Integer.toString(fileSize));
// enclosure.setPdfType("1");
// enclosure.setApplicationTime(applyDate);
// enclosure.setCreateTime(new Date());
// enclosure.setSaveTime(Integer.toString(evidenceSaveService.getSaveTime()));
// if(mapSave.get("type") != null)
// enclosure.setType(mapSave.get("type").toString());
// if(mapSave.get("contentType") != null)
// enclosure.setContentType(mapSave.get("contentType").toString());
// if(mapSave.get("bucketName") != null)
// enclosure.setBucketName(mapSave.get("bucketName").toString());
// if(mapSave.get("objectName") != null)
// enclosure.setObjectName(mapSave.get("objectName").toString());
// if(mapSave.get("alias") != null)
// enclosure.setAlias(mapSave.get("alias").toString());
// enclosure.setFixationTime(new Date());
// if(saveFactor != null){
// enclosure.setSaveFactor(saveFactor);
// }
// objs.add(enclosure);
// }
long saveTime = System.currentTimeMillis();
OkHttpClientManagerSave.postAsyn(urlSave, AuthService.getHeader().get("Authorization").toString(), mapSave, new EvidenceSavePackageTask(urlSave, mapSave, null, sn, fileSize, null, applyDate, Integer.toString(evidenceSaveService.getSaveTime()), saveFactor));
log.error("saveTime time is [" + (System.currentTimeMillis() - saveTime) + "]");
}
if ((int) result.get("status") == 1) {
} else {
basicInformation.setEvidenceStatus(0);
if (StringUtils.isEmpty(basicInformation.getFailureReason())) {
if (result.get("message") != null) {
basicInformation.setFailureReason(result.get("message").toString());
}
} else {
if (result.get("message") != null) {
basicInformation.setFailureReason(basicInformation.getFailureReason() + "," + result.get("message").toString());
}
}
}
objs.add(basicInformation);
// 记录计费流水
if ((int) mapCharging.get("retCode") == 1) {
Map<String, Object> mapStoreCg = storeChargingService.storeCharging(appService.getServiceConfigName(), appService.getServiceConfigId(), applicationInfo, appService, null, "EvidenceBasicInformation", evidenceSaveService.getBaseSpace(), EvidenceSaveServiceApi.getSize(fileSize), StringUtils.isBlank(evidenceSn), sn);
// + ",totalSize__ : " + EvidenceSaveServiceApi.getSize(fileSize));
if ((int) mapStoreCg.get("retCode") != 1) {
result.put("status", -4);
result.put("message", "服务计费失败");
return result;
}
}
boolean l = false;
for (Object o : objs) {
if (o == null)
l = true;
}
log.error("objs count is [" + objs.size() + "]" + ", objsIncNull is" + l);
queueThread.putListQueue(objs);
} catch (Exception e) {
e.printStackTrace();
if (null == info) {
info = "系统处理异常!";
}
LogUtil.evidencelog(sqlSession, sn, "存证接口", "存证失败,证据编号:" + sn + ", 失败原因:" + e.toString());
result.put("status", -5);
result.put("message", "系统服务错误,请联系管理员");
return result;
} finally {
result.remove("saveFactor");
result.remove("basicInformation");
}
return result;
}
use of com.itrus.portal.db.AppService in project portal by ixinportal.
the class SaveServiceImpl method updateEvidenceSaveService.
/**
* 修改存证服务
* @param evidenceSaveService
* @param appService
* @param id
*/
public void updateEvidenceSaveService(EvidenceSaveService evidenceSaveService, AppService appService, Long id) {
DefaultTransactionDefinition def = new DefaultTransactionDefinition();
def.setPropagationBehavior(TransactionDefinition.PROPAGATION_REQUIRED);
TransactionStatus status = transactionManager.getTransaction(def);
try {
// 修改存证服务配置表
EvidenceSaveService evidenceSaveService0 = selectById(evidenceSaveService.getId());
evidenceSaveService.setAppService(evidenceSaveService0.getAppService());
sqlSession.update("com.itrus.portal.db.EvidenceSaveServiceMapper.updateByPrimaryKey", evidenceSaveService);
// 根据服务id获取第二次存证服务
EvidenceSaveServiceCopy evidenceSaveServiceCopy = selectByEvidenceSaveServiceCopy(appService.getId());
evidenceSaveServiceCopy.setEncryptionWay(evidenceSaveService.getEncryptionWay());
evidenceSaveServiceCopy.setFixationWay(evidenceSaveService.getFixationWay());
evidenceSaveServiceCopy.setSaveTime(evidenceSaveService.getSaveTime());
evidenceSaveServiceCopy.setBaseSpace(evidenceSaveService.getBaseSpace());
evidenceSaveServiceCopy.setFactorBusinessInfo(evidenceSaveService.getFactorBusinessInfo());
evidenceSaveServiceCopy.setFactorIdVerify(evidenceSaveService.getFactorIdVerify());
evidenceSaveServiceCopy.setFactorEventVerify(evidenceSaveService.getFactorEventVerify());
evidenceSaveServiceCopy.setFactorCertSave(evidenceSaveService.getFactorCertSave());
evidenceSaveServiceCopy.setFactorContent(evidenceSaveService.getFactorContent());
evidenceSaveServiceCopy.setAppService(evidenceSaveService.getAppService());
sqlSession.update("com.itrus.portal.db.EvidenceSaveServiceCopyMapper.updateByPrimaryKey", evidenceSaveServiceCopy);
// 修改应用服务表
AppService appService0 = appServiceImpl.selectById(appService.getId());
appService.setCreator(appService0.getCreator());
appService.setCreateTime(appService0.getCreateTime());
appService.setType(appService0.getType());
appService.setServiceConfigName(appService0.getServiceConfigName());
appService.setServiceConfigId(appService0.getServiceConfigId());
appService.setModifyTime(new Date());
appService.setModifier(id);
appService.setIsDelete(appService0.getIsDelete());
sqlSession.update("com.itrus.portal.db.AppServiceMapper.updateByPrimaryKey", appService);
sqlSession.flushStatements();
transactionManager.commit(status);
} catch (Exception e) {
e.printStackTrace();
} finally {
if (!status.isCompleted())
transactionManager.rollback(status);
}
}
use of com.itrus.portal.db.AppService in project portal by ixinportal.
the class EvidenceSaveServiceApi method generate.
/**
* 保存证件包到本地
* @param evidenceContent
* @param fileName
* @return
* @throws Exception
*/
// public void saveEvidence(String evidenceContent, String fileName) {
// try {
// File file = new File(systemConfigService.getpdfurl(), fileName);
// if(!file.exists()) {
// file.createNewFile();
// }
// FileOutputStream fos = new FileOutputStream(file);
// fos.write(evidenceContent.getBytes("UTF-8"));
// fos.close();
// } catch (Exception e) {
// e.printStackTrace();
// }
// }
/**
* 核验处理方法
* @param result
* 返回值
* @param applicationInfo
* 应用
* @param evidenceSaveService
* 服务配置
* @param evidenceSn
* 证据编号
* @param signedBase64
* 签名值
* @param evidencePackage
* 证据包
* @return
*/
/*
private Map<String, Object> saveBody(Map<String, Object> result,ApplicationInfo applicationInfo,
AppService appService,EvidenceSaveService evidenceSaveService, String hashAlg, String evidenceSn,
String signedBase64, String evidencePackage, Date date, RealNameAuthentication realNameAuthentication,
RealNameAuthentication realNameAuthenticationTime, Map<String, Object> mapCharging){
// 定义时间戳固定时间
Date genTime = null;
String failureReason = null;
try {
// 得到证据申请对象认证要素配置
String factorCertSave = evidenceSaveService.getFactorCertSave();
JSONObject jsonCs = JSONArray.parseArray(factorCertSave).getJSONObject(0);
// 解析证据包 base64 转 String
String evidenceContent = Base64Util.getFromBASE64(evidencePackage);
JSONObject jsonEvidenceContent = JSONObject.parseObject(evidenceContent);
// 定义证据附件对象
EvidenceEnclosure enclosure = new EvidenceEnclosure();
enclosure.setEvidenceSn(evidenceSn);
sqlSession.insert("com.itrus.portal.db.EvidenceEnclosureMapper.insert", enclosure);
// 判断是否需要验证委托人的P7签名
if(jsonCs.getBooleanValue("c_isVerify")) {
// 验证委托人的P7签名
// 核验时间
Date dateVp = new Date();
// 整合参数
Map<String, Object> param = new HashMap<String, Object>();
param.put("contentType", "CT_HASH");
param.put("signedData", signedBase64);
param.put("content", HMACSHA1.getDigest(hashAlg, evidenceContent));
// 整合url e4867c41307ac3343b78b016f32fcfeb1fbb14db
String url = realNameAuthentication.getRealNameddress() + SIGNATURE_VERIFY_P7;
// 验签得到第三方返回结果
String rep_verify_p7 = HttpClientUtil.postForm(url, AuthService.getHeader(), param);
JSONObject jsonVerifyP7 = JSONObject.parseObject(rep_verify_p7);
EvidenceClientSignature clientSignature = new EvidenceClientSignature();
clientSignature.setHashAlgorithm(hashAlg);
if(param.get("content") != null)
clientSignature.setHashvalue(param.get("content").toString());
clientSignature.setName("0");
clientSignature.setSignatureType("2");
clientSignature.setSignaturevalue(signedBase64);
clientSignature.setCreateTime(new Date());
clientSignature.setEvidenceEnclosure(evidenceSn);
sqlSession.insert("com.itrus.portal.db.EvidenceClientSignatureMapper.insert",
clientSignature);
// 添加核验结果
EvidenceCheck check = new EvidenceCheck();
check.setCheckTime(dateVp);
check.setVewestCheckTime(dateVp);
check.setCheckContent("签名原文完整、真实、是否被篡改");
check.setClientSignature(clientSignature.getId());
if(jsonVerifyP7.getIntValue("code") == 0) {
check.setCheckSuccessTime(dateVp);
check.setCheckStatus("1");
} else {
check.setCheckStatus("0");
check.setUnreason(jsonVerifyP7.getString("message"));
failureReason = mergeFactor(failureReason, "委托人P7验签失败:" + jsonVerifyP7.getString("message"));
}
sqlSession.insert("com.itrus.portal.db.EvidenceCheckMapper.insert",
check);
// 得到证书集合
List<String> certs = null;
if(jsonVerifyP7.get("signerCerts") != null) {
certs = (List<String>) jsonVerifyP7.get("signerCerts");
}
int loseCertCount = 0;
if(certs != null){
// 核验证书并保存
for(String cert:certs) {
EvidenceCert evidenceCert = new EvidenceCert();
if(StringUtils.isNotEmpty(cert)) {
// 解析证书Base64
UserCert userCert = CertUtil.getCertFromBase64(cert);
evidenceCert.setCertSerialnumber(userCert.getCertSn());
evidenceCert.setSubjectdn(userCert.getCertDn());
evidenceCert.setIssuerdn(userCert.getIssuerDn());
if(userCert.getCertBuf() != null)
evidenceCert.setEvidenceBuf(userCert.getCertBuf().toString());
evidenceCert.setStartTime(userCert.getCertStartTime());
evidenceCert.setEndTime(userCert.getCertEndTime());
}
evidenceCert.setCertBase64(cert);
evidenceCert.setCreateTime(new Date());
evidenceCert.setClientSignature(clientSignature.getId());
// 验证证书
Date dateVc = new Date();
String urlCertVerify = realNameAuthentication.getRealNameddress() + CERT_VERIFY;
Map<String, Object> mapCertVerify = new HashMap<String, Object>();
mapCertVerify.put("cert", cert);
mapCertVerify.put("verifyFlag", "7");
String rep_cert_verify = HttpClientUtil.postForm(urlCertVerify, AuthService.getHeader(), mapCertVerify);
JSONObject jsonCertVerify = JSONObject.parseObject(rep_cert_verify);
// 添加证书核验结果
EvidenceCheck checkCert = new EvidenceCheck();
checkCert.setCheckTime(dateVc);
checkCert.setVewestCheckTime(dateVc);
checkCert.setCheckContent("1.验证证书有效期/n2.验证证书颁发者签名/n3.验证证书是否吊销");
checkCert.setEvidenceCert(evidenceCert.getId());
if(jsonVerifyP7.getIntValue("code") == 0) {
check.setCheckSuccessTime(dateVc);
check.setCheckStatus("1");
} else {
check.setCheckStatus("0");
check.setUnreason(jsonCertVerify.getString("message"));
if(loseCertCount == 0)
failureReason = mergeFactor(failureReason, "委托人验证证书存在失败");
loseCertCount++;
}
sqlSession.insert("com.itrus.portal.db.EvidenceCheckMapper.insert",
checkCert);
}
}
}
// 定义证书固定服务配置
EvidenceServiceConfiguration serviceConfiguration = null;
// 密钥别名定义
String alias = null;
// 判断是否需要签名或时间戳
if(evidenceSaveService.getFixationWay() != null && evidenceSaveService.getFixationWay() != 1) {
// 得到证书固定服务配置
List<EvidenceServiceConfiguration> serviceconfig = sqlSession
.selectList("com.itrus.portal.db.EvidenceServiceConfigurationMapper.selectByExample");
if (null != serviceconfig && !serviceconfig.isEmpty()) {
serviceConfiguration = serviceconfig.get(0);
}
// 判断是否需要签名
if(evidenceSaveService.getFixationWay() == 2 ||evidenceSaveService.getFixationWay() == 4) {
// 定义签名参数
Map<String, Object> param = new HashMap<String, Object>();
String url = null;
// 判断签名类型配置是否为空
if(StringUtils.isNotBlank(serviceConfiguration.getSignatureType())) {
// 得到配置证书
EvidenceCertificate evidenceCertificate = certificateService.selectById(
(long)serviceConfiguration.getSignatureCertificate());
// 得到服务配置的签名证书的密钥别名
alias = secretKeyService.getAliasByCertId(
(long)serviceConfiguration.getSignatureCertificate());
// 配置签名url 和 参数 1.裸签名 2.p7分离式签名 3.p7非分离式签名 (本期只做2)
switch (Integer.parseInt(serviceConfiguration.getSignatureType())) {
case 1:
param.put("alias", alias);
param.put("hashAlg", serviceConfiguration.getArithmetic());
param.put("contentType", "CT_HASH");
url = realNameAuthentication.getRealNameddress() + SIGNATURE_SIGN;
break;
case 2:
param.put("alias", alias);
param.put("hashAlg", serviceConfiguration.getArithmetic());
param.put("detached", true);
param.put("contentType", "CT_HASH");
param.put("content", HMACSHA1.getDigest(serviceConfiguration.getArithmetic(), evidenceContent));
url = realNameAuthentication.getRealNameddress() + P7_SIGN;
break;
case 3:
param.put("alias", alias);
param.put("hashAlg", serviceConfiguration.getArithmetic());
param.put("detached", false);
param.put("contentType", "CT_HASH");
param.put("content", HMACSHA1.getDigest(serviceConfiguration.getArithmetic(), evidenceContent));
url = realNameAuthentication.getRealNameddress() + P7_SIGN;
break;
}
// 证据包签名
String rep_p7_sign = HttpClientUtil.postForm(url, AuthService.getHeader(), param);
JSONObject jsonRepP7Sign = JSONObject.parseObject(rep_p7_sign);
// 存储天威签名服务记录
EvidenceClientSignature clientSignature = new EvidenceClientSignature();
clientSignature.setHashAlgorithm(param.get("hashAlg").toString());
clientSignature.setName("1");
clientSignature.setEvidenceEnclosure(enclosure.getId());
clientSignature.setSignatureType("2");
clientSignature.setHashvalue(param.get("content").toString());
clientSignature.setSignaturevalue(jsonRepP7Sign.getString("signedData"));
clientSignature.setCreateTime(new Date());
if(jsonRepP7Sign.getIntValue("code") != 0) {
failureReason = mergeFactor(failureReason, "天威签名失败");
}
sqlSession.insert("com.itrus.portal.db.EvidenceClientSignatureMapper.insert", clientSignature);
EvidenceCert cert = new EvidenceCert();
// 解析证书Base64
UserCert userCert = CertUtil.getCertFromBase64(evidenceCertificate.getCert());
cert.setCertSerialnumber(userCert.getCertSn());
cert.setSubjectdn(userCert.getCertDn());
cert.setIssuerdn(userCert.getIssuerDn());
if(userCert.getCertBuf() != null)
cert.setEvidenceBuf(userCert.getCertBuf().toString());
cert.setStartTime(userCert.getCertStartTime());
cert.setEndTime(userCert.getCertEndTime());
cert.setCertBase64(evidenceCertificate.getCert());
cert.setCreateTime(new Date());
cert.setClientSignature(clientSignature.getId());
sqlSession.insert("com.itrus.portal.db.EvidenceCertMapper.insert", cert);
}
}
// 判断是否需要签名时间戳
if(evidenceSaveService.getFixationWay() == 3 ||evidenceSaveService.getFixationWay() == 4) {
// 证据包时间戳
String repTimeStr = null;
boolean blTimeSign = false;
try {
repTimeStr = genTimeStamp(realNameAuthenticationTime,
HMACSHA1.getDigest(serviceConfiguration.getArithmetic(), evidenceContent).getBytes("utf-8"),
serviceConfiguration.getArithmetic());
blTimeSign = true;
} catch (Exception e) {
e.printStackTrace();
String oper = "存证接口_时间戳签名-异常";
String info = "错误原因:" + e.toString();
LogUtil.evidencelog(sqlSession, oper, info);
}
// 判断签名时间戳是否成功
if(StringUtils.isNotEmpty(repTimeStr) && blTimeSign) {
genTime = new Date();
EvidenceClientTimeStamp clientTimeStamp = new EvidenceClientTimeStamp();
clientTimeStamp.setHashAlgorithm(serviceConfiguration.getArithmetic());
clientTimeStamp.setEvidenceEnclosure(enclosure.getId());
clientTimeStamp.setName("1");
clientTimeStamp.setCreateTime(new Date());
clientTimeStamp.setCertificate(repTimeStr);
clientTimeStamp.setSignatureTime(genTime);
sqlSession.insert("com.itrus.portal.db.EvidenceClientTimeStampMapper.insert", clientTimeStamp);
} else {
failureReason = mergeFactor(failureReason, "天威时间戳签名失败");
}
}
}
// 本次证据包大小
int fileSize = evidencePackage.getBytes().length;
// 证据服务记录
EvidenceBasicInformation basicInformation = null;
// 判断证据编号是否为空 true -> 证据编码为空 代表第一次存证 ,false ->证据编码不为空 代表不是第一次存证
if(StringUtils.isEmpty(evidenceSn)) {
// 生成证据编号
evidenceSn = UniqueIDUtils.genAppServiceUID(
applicationInfo, appService.getAppServiceName(), sqlSession,3);
basicInformation = new EvidenceBasicInformation();
basicInformation.setReceiptStatus(0);
basicInformation.setStatus(0);
basicInformation.setCreateTime(new Date());
basicInformation.setEndTime(convertDate(evidenceSaveService.getSaveTime()));
basicInformation.setEvidenceSize(fileSize);
basicInformation.setEvidenceSn(evidenceSn);
basicInformation.setAppService(appService.getId());
basicInformation.setOutAppService(evidenceSaveService.getAppServiceName());
basicInformation.setSaveServiceNmae(appService.getAppServiceName());
basicInformation.setServicePlatformName(applicationInfo.getName());
basicInformation.setServiceClientName(applicationInfo.getServiceClientName());
basicInformation.setServiceClientId(applicationInfo.getServiceClientId());
if(StringUtils.isNotEmpty(failureReason)) {
basicInformation.setFailureReason(failureReason);
basicInformation.setEvidenceStatus(0);
result.put("status", 0);
}
// 对要素 (接收 核验 必填) 操作进行处理
result = saveFactor(result, evidenceSaveService, evidenceSn, jsonEvidenceContent,
basicInformation, realNameAuthentication, realNameAuthenticationTime, enclosure,
serviceConfiguration, applicationInfo.getServiceClientId(), true);
} else {
EvidenceBasicInformationExample basicInformationExample = new EvidenceBasicInformationExample();
EvidenceBasicInformationExample.Criteria beCriteria = basicInformationExample.createCriteria();
beCriteria.andEvidenceSnEqualTo(evidenceSn);
List<EvidenceBasicInformation> basicInformationList = sqlSession
.selectList("com.itrus.portal.db.EvidenceBasicInformationMapper.selectByExample",
basicInformationExample);
if(basicInformationList.size() == 0 || basicInformationList.isEmpty()){
result.put("status", 0);
result.put("message", "未找到对应证据编号信息");
return result;
}
basicInformation = basicInformationList.get(0);
if(basicInformation.getEvidenceStatus() == 0) {
result.put("status", 0);
result.put("message", "本次证据补交失败。对应证据编号已存在核验失败信息,原因:" + basicInformation.getFailureReason());
return result;
}
basicInformation.setEvidenceSize(basicInformation.getEvidenceSize() + fileSize);
basicInformation.setAppService(appService.getId());
// 对要素 (接收 核验) 操作进行处理
result = saveFactor(result, evidenceSaveService, evidenceSn, jsonEvidenceContent,
basicInformation, realNameAuthentication, realNameAuthenticationTime, enclosure,
serviceConfiguration, applicationInfo.getServiceClientId(), false);
}
if((int) result.get("status") == 1){
// 得到加密证书别名
String encryptionAlias = secretKeyService.getAliasByCertId(
(long)serviceConfiguration.getEncryptionCertificate());
// 内部加密存储证据包
String urlSave = realNameAuthentication.getRealNameddress() + "/storage/save";
Map<String, Object> mapSave = new HashMap<String, Object>();
mapSave.put("type", "ST_E");
// mapSave.put("bucketName", applicationInfo.getServiceClientId());
mapSave.put("bucketName", "hood");
mapSave.put("objectName", evidenceSn);
mapSave.put("contentType", "CT_BASE64_DATA");
mapSave.put("content", evidencePackage);
mapSave.put("alias", encryptionAlias);
mapSave.put("digestZValue", false);
mapSave.put("encAlg", serviceConfiguration.getEncryptionAlgorithm());
String rep_save = HttpClientUtil.postForm(urlSave, AuthService.getHeader(), mapSave);
JSONObject jsonSave = JSONObject.parseObject(rep_save);
if(jsonSave.getIntValue("code") == 0) {
// 存证成功操作
enclosure = (EvidenceEnclosure) result.get("enclosure");
enclosure.setBuid(jsonSave.getString("buid"));
enclosure.setEvidenceSn(evidenceSn);
enclosure.setFilesize(Integer.toString(fileSize));
enclosure.setPdfType("1");
enclosure.setType("ST_E");
enclosure.setContentType("CT_BASE64_DATA");
enclosure.setBucketName(mapSave.get("bucketName").toString());
enclosure.setObjectName(mapSave.get("objectName").toString());
enclosure.setAlias(alias);
enclosure.setFilesize(Integer.toString(fileSize));
enclosure.setApplicationTime(date);
if(genTime != null )
enclosure.setFixationTime(genTime);
else
enclosure.setFixationTime(new Date());
enclosure.setCreateTime(new Date());
enclosure.setSaveTime(Integer.toString(evidenceSaveService.getSaveTime()));
enclosure.setSaveFactor(result.get("saveFactor").toString());
result.remove("saveFactor");
result.remove("enclosure");
sqlSession.update("com.itrus.portal.db.EvidenceEnclosureMapper.updateByPrimaryKey",
enclosure);
} else {
result.put("status", 0);
result.put("message", "存证失败");
return result;
}
}
// 调用计费
// 判断是否为第一次提交
boolean isNew;
if(StringUtils.isBlank(evidenceSn))
isNew = true;
else
isNew = false;
// 记录计费流水
if((int)mapCharging.get("retCode") == 1) {
Map<String, Object> mapStoreCg = storeChargingService.storeCharging(appService.getServiceConfigName(), appService.getServiceConfigId(),
applicationInfo, appService, basicInformation.getId(), "EvidenceBasicInformation",
fileSize, evidenceSaveService.getBaseSpace(), isNew);
if((int)mapStoreCg.get("retCode") != 1){
result.put("status", -4);
result.put("message", mapStoreCg.get("retMsg"));
}
}
if((int)result.get("status") == 1) {
basicInformation.setEvidenceStatus(1);
result.put("status", "1");
result.put("message", "成功");
result.put("evidenceSn", basicInformation.getEvidenceSn());
// 生成存证回执报告
Map<String, Object> mapRet = reportTemplate.returnreceipt(
basicInformation.getEvidenceSn(), applicationInfo);
log.debug("mapRet__ : " + mapRet);
if(mapRet.get("status") != null && (int)mapRet.get("status") == 0) {
result.put("pdfBase64", mapRet.get("pdfBase64"));
basicInformation.setReceiptStatus(1);
}
} else {
basicInformation.setEvidenceStatus(0);
if(StringUtils.isEmpty(basicInformation.getFailureReason())) {
if(result.get("message") != null)
basicInformation.setFailureReason(result.get("message").toString());
} else {
if(result.get("message") != null)
basicInformation.setFailureReason(basicInformation.getFailureReason() + "," + result.get("message").toString());
}
}
sqlSession.update("com.itrus.portal.db.EvidenceBasicInformationMapper.updateByPrimaryKey",
basicInformation);
} catch (Exception e) {
//返回用户信息
e.printStackTrace();
result.put("status", -5);
result.put("message", "服务器出错,请联系管理员");
String oper = "存证接口-异常";
// String info = "证据编码" + + ",错误原因:" + e.toString();
String info = "错误原因:" + e.toString();
LogUtil.evidencelog(sqlSession, oper, info);
return result;
}
return result;
}
// 核验要素
private Map<String, Object> saveFactor(Map<String, Object> result, EvidenceSaveService evidenceSaveService, String evidenceSn,
JSONObject jsonEvidenceContent, EvidenceBasicInformation basicInformation, RealNameAuthentication realNameAuthentication,
RealNameAuthentication realNameAuthenticationTime, EvidenceEnclosure enclosure, EvidenceServiceConfiguration serviceConfiguration,
String clientId, Boolean bl){
// 定义证据要素字段
String saveFactor = null;
// 证据存证的业务类型
String type = null;
// 定义主体身份
Map<String, EvidenceMainInformation> mapIdCache = new HashMap<String, EvidenceMainInformation>();
// 可信身份缓存信息
List<EvidenceTrustedIdentity> tiCacheList = new ArrayList<>();
try {
// 得到业务基本信息要素配置
String factorBusinessInfo = evidenceSaveService.getFactorBusinessInfo();
JSONArray jsonBiArray = JSONArray.parseArray(factorBusinessInfo);
for(int i=0;i<jsonBiArray.size();i++) {
JSONObject object = jsonBiArray.getJSONObject(i);
String name = object.getString("name");
String content = jsonEvidenceContent.getString(name);
JSONObject jsonContent;
switch (i) {
// 事件发生平台
case 0:
jsonContent = JSONObject.parseObject(content);
// 判断是否接收
if(object.getBooleanValue("b_isReception")
&& StringUtils.isEmpty(basicInformation.getCompanyName())) {
// 判断是否必填
if(bl && object.getBooleanValue("b_isRequired")
&& (StringUtils.isEmpty(jsonContent.getString("hapPrincipalName"))
|| StringUtils.isEmpty(jsonContent.getString("hapPlatformDomain")))) {
result.put("status", 0);
result.put("message", "提交的参数信息不完整,缺少事件发生平台必要参数值");
return result;
}
if(StringUtils.isEmpty(saveFactor) || !saveFactor.contains("证据基本信息"))
saveFactor = mergeFactor(saveFactor, "证据基本信息");
basicInformation.setCompanyName(jsonContent.getString("hapPrincipalName"));
basicInformation.setEventPlatformName(jsonContent.getString("hapPlatformName"));
basicInformation.setDomainName(jsonContent.getString("hapPlatformDomain"));
}
break;
// 业务类型
case 1:
// 判断是否接收
if(object.getBooleanValue("b_isReception")
&& StringUtils.isEmpty(basicInformation.getType())) {
// 判断是否必填
if(bl && object.getBooleanValue("b_isRequired") && StringUtils.isEmpty(content)) {
result.put("status", 0);
result.put("message", "提交的参数信息不完整,缺少业务类型参数值");
return result;
}
if(StringUtils.isEmpty(saveFactor) || !saveFactor.contains("证据基本信息"))
saveFactor = mergeFactor(saveFactor, "证据基本信息");
basicInformation.setType(content);
type = content;
}
break;
// 业务描述
case 2:
// 判断是否接收
if(object.getBooleanValue("b_isReception")
&& StringUtils.isEmpty(basicInformation.getDescription())) {
if(StringUtils.isEmpty(saveFactor) || !saveFactor.contains("证据基本信息"))
saveFactor = mergeFactor(saveFactor, "证据基本信息");
basicInformation.setDescription(content);
}
break;
// 业务单号
case 3:
// 判断是否接收
if(object.getBooleanValue("b_isReception")
&& StringUtils.isEmpty(basicInformation.getServiceNumber())) {
if(StringUtils.isEmpty(saveFactor) || !saveFactor.contains("证据基本信息"))
saveFactor = mergeFactor(saveFactor, "证据基本信息");
basicInformation.setServiceNumber(content);
}
break;
}
}
if(basicInformation.getId() == null) {
// 存储证据基本信息
sqlSession.insert("com.itrus.portal.db.EvidenceBasicInformationMapper.insert", basicInformation);
sqlSession.flushStatements();
}
enclosure.setBasicInformation(basicInformation.getId());
sqlSession.update("com.itrus.portal.db.EvidenceEnclosureMapper.updateByPrimaryKey",
enclosure);
// 得到身份认证要素配置
String factorIdVerify = evidenceSaveService.getFactorIdVerify();
JSONArray jsonIdArray = JSONArray.parseArray(factorIdVerify);
// 得到证据包中的身份认证数据
JSONObject jsonAuthId = jsonEvidenceContent.getJSONObject("authId");
for(int i=0;i<jsonIdArray.size();i++){
JSONObject object = jsonIdArray.getJSONObject(i);
String name = object.getString("name");
JSONArray jsonContentArray = jsonAuthId.getJSONArray(name);
switch (i) {
// 主体身份
case 0:
// 查询信息是否已经存证
List<EvidenceSubjectIdentity> subjectIdentities = null;
if(!bl) {
EvidenceSubjectIdentityExample se = new EvidenceSubjectIdentityExample();
EvidenceSubjectIdentityExample.Criteria sec = se.createCriteria();
sec.andBasicInformationEqualTo(basicInformation.getId());
subjectIdentities = sqlSession
.selectList("com.itrus.portal.db.EvidenceMainInformationMapper.selectByExample", se);
}
// 判断是否接收
if(object.getBooleanValue("i_isReception")
&& subjectIdentities == null) {
for(int j=0;j<jsonContentArray.size();j++) {
JSONObject jsonContent = jsonContentArray.getJSONObject(j);
// 判断是否必填
if(bl && object.getBooleanValue("i_isRequired") && (StringUtils.isEmpty(jsonContent.getString("name"))
|| StringUtils.isEmpty(jsonContent.getString("dataId"))
|| StringUtils.isEmpty(jsonContent.getString("type")))){
result.put("status", 0);
result.put("message", "提交的参数信息不完整,缺少主体身份参数值");
return result;
}
// 查询该条信息数据库里是否存证
EvidenceMainInformation mainInformation = null;
EvidenceMainInformationExample mainInformationExample = new EvidenceMainInformationExample();
EvidenceMainInformationExample.Criteria mainExampleCriteria = mainInformationExample.createCriteria();
mainExampleCriteria.andSubjectNameEqualTo(jsonContent.getString("name"));
mainExampleCriteria.andIdentificationEqualTo(jsonContent.getString("dataId"));
List<EvidenceMainInformation> mainInformationList = sqlSession
.selectList("com.itrus.portal.db.EvidenceMainInformationMapper.selectByExample", mainInformationExample);
if(mainInformationList.size() != 0 && !mainInformationList.isEmpty()){
mainInformation = mainInformationList.get(0);
}
if(mainInformation == null){
// 存储证据主体信息
mainInformation = new EvidenceMainInformation();
mainInformation.setSubjectName(jsonContent.getString("name"));
mainInformation.setIdentification(jsonContent.getString("dataId"));
mainInformation.setMainType(jsonContent.getString("type"));
mainInformation.setCreateTime(new Date());
sqlSession.insert("com.itrus.portal.db.EvidenceMainInformationMapper.insert", mainInformation);
sqlSession.flushStatements();
}
mapIdCache.put(mainInformation.getSubjectName() + mainInformation.getIdentification(), mainInformation);
// 存储证据主体身份关系
EvidenceSubjectIdentity subjectIdentity = new EvidenceSubjectIdentity();
subjectIdentity.setBasicInformation(basicInformation.getId());
subjectIdentity.setMainInformation(mainInformation.getId());
sqlSession.insert("com.itrus.portal.db.EvidenceSubjectIdentityMapper.insert", subjectIdentity);
}
if(jsonContentArray.size() != 0)
saveFactor = mergeFactor(saveFactor, object.getString("i_factor"));
}
break;
// 身份意愿鉴别
case 1:
// 查询信息是否已经存证
List<EvidenceDesireIdentify> desireIdentifys = null;
if(!bl) {
EvidenceDesireIdentifyExample de = new EvidenceDesireIdentifyExample();
EvidenceDesireIdentifyExample.Criteria dec = de.createCriteria();
dec.andBasicInformationEqualTo(basicInformation.getId());
desireIdentifys = sqlSession
.selectList("com.itrus.portal.db.EvidenceDesireIdentifyMapper.selectByExample", de);
}
// 判断是否接收
if(object.getBooleanValue("i_isReception") && desireIdentifys == null) {
for(int j=0;j<jsonContentArray.size();j++) {
JSONObject jsonContent = jsonContentArray.getJSONObject(j);
// 判断主体是否存在
String idCacheKey = jsonContent.getString("name") + jsonContent.getString("dataId");
EvidenceMainInformation mainInformation = null;
if(mapIdCache.get(idCacheKey) == null || "".equals(mapIdCache.get(idCacheKey))) {
EvidenceMainInformationExample mainInformationExample = new EvidenceMainInformationExample();
EvidenceMainInformationExample.Criteria mainExampleCriteria = mainInformationExample.createCriteria();
mainExampleCriteria.andSubjectNameEqualTo(jsonContent.getString("name"));
mainExampleCriteria.andIdentificationEqualTo(jsonContent.getString("dataId"));
List<EvidenceMainInformation> mainInformationList = sqlSession
.selectList("com.itrus.portal.db.EvidenceMainInformationMapper.selectByExample", mainInformationExample);
if(mainInformationList != null)
mainInformation = mainInformationList.get(0);
mapIdCache.put(mainInformation.getSubjectName() + mainInformation.getIdentification(), mainInformation);
} else {
mainInformation = mapIdCache.get(idCacheKey);
}
if(mainInformation == null || "".equals(mainInformation)) {
result.put("status", 0);
result.put("message", "判断主体为空");
return result;
}
// 得到短信验证方式内容
JSONObject smsWayContent = jsonContent.getJSONObject("smsWayContent");
// 判断是否必填
if(bl && object.getBooleanValue("i_isRequired") && (StringUtils.isEmpty(jsonContent.getString("name"))
|| StringUtils.isEmpty(jsonContent.getString("dataId"))
|| StringUtils.isEmpty(smsWayContent.getString("phone"))
|| StringUtils.isEmpty(smsWayContent.getString("sendTime"))
|| StringUtils.isEmpty(smsWayContent.getString("content"))
|| StringUtils.isEmpty(smsWayContent.getString("verifyCode"))
|| StringUtils.isEmpty(smsWayContent.getString("smsService"))
|| StringUtils.isEmpty(smsWayContent.getString("verifySmsTime"))
|| StringUtils.isEmpty(jsonContent.getString("verifierType")))){
result.put("status", 0);
result.put("message", "提交的参数信息不完整,缺少身份意愿鉴别参数值");
return result;
}
// 存储身份意愿鉴别信息
EvidenceDesireIdentify desireIdentify = new EvidenceDesireIdentify();
desireIdentify.setVerifier(jsonContent.getString("verifier"));
// desireIdentify.setVerifierTime(jsonContent.getDate("time"));
desireIdentify.setVerifierType(jsonContent.getString("verifierType"));
desireIdentify.setPhone(smsWayContent.getString("phone"));
desireIdentify.setSendOutTime(smsWayContent.getDate("sendTime"));
desireIdentify.setSmsContent(smsWayContent.getString("content"));
desireIdentify.setVerificationCode(smsWayContent.getString("verifyCode"));
desireIdentify.setSmsServer(smsWayContent.getString("smsService"));
desireIdentify.setVerificationTime(smsWayContent.getDate("verifySmsTime"));
desireIdentify.setBasicInformation(basicInformation.getId());
desireIdentify.setMainInformation(mainInformation.getId());
desireIdentify.setCreateTime(new Date());
desireIdentify.setEvidenceEnclosure(enclosure.getId());
sqlSession.insert("com.itrus.portal.db.EvidenceDesireIdentifyMapper.insert", desireIdentify);
}
if(jsonContentArray.size() != 0)
saveFactor = mergeFactor(saveFactor, object.getString("i_factor"));
}
break;
// 身份实名认证
case 2:
// 查询信息是否已经存证
List<EvidenceRealName> realNames = null;
if(!bl) {
// 查询是否存在企业提交信息
EvidenceRealNameExample realNameExample = new EvidenceRealNameExample();
EvidenceRealNameExample.Criteria rnec = realNameExample.createCriteria();
rnec.andBasicInformationEqualTo(basicInformation.getId());
realNames = sqlSession
.selectList("com.itrus.portal.db.EvidenceRealNameMapper.selectByExample", realNameExample);
}
// 判断是否接收
if(object.getBooleanValue("i_isReception")
&& realNames == null) {
for(int j=0;j<jsonContentArray.size();j++) {
JSONObject jsonContent = jsonContentArray.getJSONObject(j);
// 判断主体是否存在
String idCacheKey = jsonContent.getString("name") + jsonContent.getString("dataId");
EvidenceMainInformation mainInformation = null;
if(mapIdCache.get(idCacheKey) == null || "".equals(mapIdCache.get(idCacheKey))) {
EvidenceMainInformationExample mainInformationExample = new EvidenceMainInformationExample();
EvidenceMainInformationExample.Criteria mainExampleCriteria = mainInformationExample.createCriteria();
mainExampleCriteria.andSubjectNameEqualTo(jsonContent.getString("name"));
mainExampleCriteria.andIdentificationEqualTo(jsonContent.getString("dataId"));
List<EvidenceMainInformation> mainInformationList = sqlSession
.selectList("com.itrus.portal.db.EvidenceMainInformationMapper.selectByExample", mainInformationExample);
if(mainInformationList != null)
mainInformation = mainInformationList.get(0);
mapIdCache.put(mainInformation.getSubjectName() + mainInformation.getIdentification(), mainInformation);
} else {
mainInformation = mapIdCache.get(idCacheKey);
}
if(mainInformation == null || "".equals(mainInformation)) {
result.put("status", 0);
result.put("message", "判断主体为空");
return result;
}
// 判断是否必填
if(bl && object.getBooleanValue("i_isRequired") && (StringUtils.isEmpty(jsonContent.getString("name"))
|| StringUtils.isEmpty(jsonContent.getString("dataId"))
|| StringUtils.isEmpty(jsonContent.getString("authenticatorType"))
|| StringUtils.isEmpty(jsonContent.getString("time"))
)){
result.put("status", 0);
result.put("message", "提交的参数信息不完整,缺少身份实名认证参数值");
return result;
}
// 身份实名认证表
EvidenceRealName realName = new EvidenceRealName();
realName.setEventVerifierType(jsonContent.getString("authenticatorType"));
realName.setEventVerifier(jsonContent.getString("authenticator"));
realName.setCertificationTime(jsonContent.getDate("time"));
realName.setType(mainInformation.getMainType());
realName.setMainInformation(mainInformation.getId());
realName.setEvidenceEnclosure(enclosure.getId());
realName.setBasicInformation(basicInformation.getId());
if(StringUtils.isNotEmpty(jsonContent.getString("orderNumber")))
realName.setSerialnumber(jsonContent.getString("orderNumber"));
// 存储身份实名认证信息
// 判断主体类型 1. 企业 2. 个人
if(mainInformation.getMainType().equals("1") && StringUtils.isEmpty(realName.getSerialnumber())) {
EvidenceCompaniesSubmit companiesSubmit = new EvidenceCompaniesSubmit();
JSONObject anthEnt = jsonContent.getJSONObject("anthEnt");
if(bl && object.getBooleanValue("i_isRequired")
&& ((StringUtils.isEmpty(anthEnt.getJSONObject("businessLicense").getString("blCode"))
&& StringUtils.isEmpty(anthEnt.getJSONObject("businessLicense").getString("img")))
|| (StringUtils.isEmpty(anthEnt.getJSONObject("organization").getString("orgCode"))
&& StringUtils.isEmpty(anthEnt.getJSONObject("organization").getString("img"))))){
result.put("status", 0);
result.put("message", "提交的参数信息不完整,缺少身份实名认证参数值");
return result;
}
// 法人
JSONObject corporation = anthEnt.getJSONObject("corporation");
EvidenceRepresentative representative = new EvidenceRepresentative();
representative.setName(corporation.getString("idName"));
representative.setType(corporation.getString("idType"));
representative.setCertificateid(corporation.getString("idCode"));
representative.setCreateTime(new Date());
// 1.身份证 2.其他
if(corporation.getIntValue("idType") == 1) {
if(StringUtils.isNotEmpty(corporation.getString("idImg1"))) {
// 存储图片
File frontImg = saveImg(evidenceSn
, corporation.getString("idImg1"), IMG_ID_IMG_FRONT);
representative.setPhotoCodeImg(frontImg.getName());
representative.setPhotoCodeImgHash(HMACSHA1.genSha1HashOfFile(frontImg));
}
if(StringUtils.isNotEmpty(corporation.getString("idImg2"))) {
// 存储图片
File frontImg = saveImg(evidenceSn
, corporation.getString("idImg2"), IMG_ID_IMG_BACK);
representative.setInformationImg(frontImg.getName());
representative.setInformationImgHash(HMACSHA1.genSha1HashOfFile(frontImg));
}
} else {
if(StringUtils.isNotEmpty(corporation.getString("idImg1"))){
// 存储图片
File frontImg = saveImg(evidenceSn
, corporation.getString("idImg1"), IMG_ID_IMG_FRONT);
representative.setPhotoCodeImg(frontImg.getName());
representative.setPhotoCodeImgHash(HMACSHA1.genSha1HashOfFile(frontImg));
}
}
// 存储法人信息
sqlSession.insert("com.itrus.portal.db.EvidenceRepresentativeMapper.insert", representative);
// 代理人
JSONObject agent = anthEnt.getJSONObject("agent");
EvidenceTheAgent theAgent = new EvidenceTheAgent();
theAgent.setName(agent.getString("idName"));
theAgent.setType(agent.getString("idType"));
theAgent.setCertificateid(agent.getString("idCode"));
theAgent.setCreateTime(new Date());
// 1.身份证 2.其他
if(agent.getIntValue("idType") == 1) {
if(StringUtils.isNotEmpty(agent.getString("idImg1"))) {
// 存储图片
File frontImg = saveImg(evidenceSn
, agent.getString("idImg1"), IMG_ID_IMG_FRONT);
theAgent.setPhotoCodeImg(frontImg.getName());
theAgent.setPhotoCodeImgHash(HMACSHA1.genSha1HashOfFile(frontImg));
}
if(StringUtils.isNotEmpty(agent.getString("idImg2"))) {
// 存储图片
File frontImg = saveImg(evidenceSn
, agent.getString("idImg2"), IMG_ID_IMG_BACK);
theAgent.setInformationImg(frontImg.getName());
theAgent.setInformationImgHash(HMACSHA1.genSha1HashOfFile(frontImg));
}
} else {
if(StringUtils.isNotEmpty(agent.getString("idImg1"))){
// 存储图片
File frontImg = saveImg(evidenceSn
, agent.getString("idImg1"), IMG_ID_IMG_FRONT);
representative.setPhotoCodeImg(frontImg.getName());
representative.setPhotoCodeImgHash(HMACSHA1.genSha1HashOfFile(frontImg));
}
}
// 存储代理人信息
sqlSession.insert("com.itrus.portal.db.EvidenceTheAgentMapper.insert", theAgent);
// 营业执照
JSONObject businessLicense = anthEnt.getJSONObject("businessLicense");
companiesSubmit.setBusCertificateid(businessLicense.getString("blCode"));
if(StringUtils.isNotEmpty(businessLicense.getString("img"))){
// 存储图片
File frontImg = saveImg(evidenceSn
, businessLicense.getString("img"), IMG_BL);
companiesSubmit.setPhotoCodeImg(frontImg.getName());
companiesSubmit.setPhotoCodeImgHash(HMACSHA1.genSha1HashOfFile(frontImg));
}
// 组织机构代码
JSONObject organization = anthEnt.getJSONObject("organization");
companiesSubmit.setOrgCertificateid(organization.getString("orgCode"));
if(StringUtils.isNotEmpty(organization.getString("img"))){
// 存储图片
File frontImg = saveImg(evidenceSn
, organization.getString("img"), IMG_ORG);
companiesSubmit.setInformationImg(frontImg.getName());
companiesSubmit.setInformationImgHash(HMACSHA1.genSha1HashOfFile(frontImg));
}
companiesSubmit.setTheAgent(theAgent.getId().intValue());
companiesSubmit.setRepresentative(representative.getId().intValue());
companiesSubmit.setBusinessName(jsonContent.getString("name"));
companiesSubmit.setCreateTime(new Date());
sqlSession.insert("com.itrus.portal.db.EvidenceCompaniesSubmitMapper.insert", companiesSubmit);
sqlSession.flushStatements();
realName.setCompaniesSubmit(companiesSubmit.getId().intValue());
} else if(jsonContent.getIntValue("type") == 2
&& StringUtils.isEmpty(realName.getSerialnumber())) {
JSONObject jsonAnthPerson = jsonContent.getJSONObject("anthPerson");
EvidenceIndividual individual = new EvidenceIndividual();
individual.setName(jsonContent.getString("name"));
individual.setCreateTime(new Date());
// 必填判断
if(bl && object.getBooleanValue("i_isRequired") && (
StringUtils.isEmpty(jsonAnthPerson.getString("idType"))
|| StringUtils.isEmpty(jsonAnthPerson.getString("idCode"))
)){
result.put("status", 0);
result.put("message", "提交的参数信息不完整,缺少身份实名认证参数值");
return result;
}
individual.setType(jsonAnthPerson.getString("idType"));
individual.setCertificateid(jsonAnthPerson.getString("idCode"));
// 1.身份证 2.其他
if(jsonAnthPerson.getIntValue("idType") == 1) {
if(StringUtils.isNotEmpty(jsonAnthPerson.getString("idImg1"))
&& StringUtils.isNotEmpty(jsonAnthPerson.getString("idImg2"))){
// 存储图片
File frontImg = saveImg(evidenceSn
, jsonAnthPerson.getString("idImg1"), IMG_ID_IMG_FRONT);
individual.setPhotoCodeImg(frontImg.getName());
individual.setPhotoCodeImgHash(HMACSHA1.genSha1HashOfFile(frontImg));
File frontImg2 = saveImg(evidenceSn
, jsonAnthPerson.getString("idImg2"), IMG_ID_IMG_BACK);
individual.setInformationImg(frontImg2.getName());
individual.setInformationImgHash(HMACSHA1.genSha1HashOfFile(frontImg2));
}
} else {
if(StringUtils.isNotEmpty(jsonAnthPerson.getString("idImg1"))){
// 存储图片
File frontImg = saveImg(evidenceSn
, jsonAnthPerson.getString("idImg1"), IMG_ID_IMG_BACK);
individual.setPhotoCodeImg(frontImg.getName());
individual.setPhotoCodeImgHash(HMACSHA1.genSha1HashOfFile(frontImg));
}
}
sqlSession.insert("com.itrus.portal.db.EvidenceIndividualMapper.insert", individual);
sqlSession.flushStatements();
realName.setIndividual(individual.getId().intValue());
}
sqlSession.insert("com.itrus.portal.db.EvidenceRealNameMapper.insert", realName);
}
if(jsonContentArray.size() != 0)
saveFactor = mergeFactor(saveFactor, object.getString("i_factor"));
}
break;
// 可信身份标识
case 3:
// 查询信息是否已经存证
List<EvidenceTrustedIdentity> trustedIdentities = null;
if(!bl) {
EvidenceTrustedIdentityExample tie = new EvidenceTrustedIdentityExample();
EvidenceTrustedIdentityExample.Criteria tiec = tie.createCriteria();
tiec.andBasicInformationEqualTo(basicInformation.getId());
tiec.andEventContentIsNull();
trustedIdentities = sqlSession
.selectList("com.itrus.portal.db.EvidenceTrustedIdentityMapper.selectByExample", tie);
}
// 判断是否接收
if(object.getBooleanValue("i_isReception")
&& trustedIdentities == null ) {
for(int j=0;j<jsonContentArray.size();j++){
JSONObject jsonContent = jsonContentArray.getJSONObject(j);
// 判断主体是否存在
String idCacheKey = jsonContent.getString("name") + jsonContent.getString("dataId");
EvidenceMainInformation mainInformation = null;
if(mapIdCache.get(idCacheKey) == null || "".equals(mapIdCache.get(idCacheKey))) {
EvidenceMainInformationExample mainInformationExample = new EvidenceMainInformationExample();
EvidenceMainInformationExample.Criteria mainExampleCriteria = mainInformationExample.createCriteria();
mainExampleCriteria.andSubjectNameEqualTo(jsonContent.getString("name"));
mainExampleCriteria.andIdentificationEqualTo(jsonContent.getString("dataId"));
List<EvidenceMainInformation> mainInformationList = sqlSession
.selectList("com.itrus.portal.db.EvidenceMainInformationMapper.selectByExample", mainInformationExample);
if(!mainInformationList.isEmpty()) {
mainInformation = mainInformationList.get(0);
mapIdCache.put(mainInformation.getSubjectName() + mainInformation.getIdentification(), mainInformation);
}
} else {
mainInformation = mapIdCache.get(idCacheKey);
}
if(mainInformation == null || "".equals(mainInformation)) {
result.put("status", 0);
result.put("message", "判断主体为空");
return result;
}
log.debug("type __ : " + type + ", equals__ :" + "1".equals(type));
// 判断是否必填
if(bl && object.getBooleanValue("i_isRequired") && (
StringUtils.isEmpty(jsonContent.getString("name"))
|| StringUtils.isEmpty(jsonContent.getString("dataId"))
|| StringUtils.isEmpty(jsonContent.getString("type"))
|| (("1".equals(type) && StringUtils.isEmpty(jsonContent.getString("certSn")))
|| (!"1".equals(type) && StringUtils.isEmpty(jsonContent.getString("certBase64"))))
)){
result.put("status", 0);
result.put("message", "提交的参数信息不完整,缺少可信身份标识参数值");
return result;
}
EvidenceTrustedIdentity trustedIdentity = new EvidenceTrustedIdentity();
// 判断证据base64 字段是否为空
if(!"1".equals(type) && StringUtils.isNotEmpty(jsonContent.getString("certBase64"))){
trustedIdentity.setCertBase64(jsonContent.getString("certBase64"));
// 解析证书Base64
UserCert userCert = CertUtil.getCertFromBase64(jsonContent.getString("certBase64"));
trustedIdentity.setCertSerialnumber(userCert.getCertSn());
trustedIdentity.setSubjectdn(userCert.getCertDn());
trustedIdentity.setIssuerdn(userCert.getIssuerDn());
trustedIdentity.setIssuer(getCertCn(userCert.getIssuerDn()));
if(userCert.getCertBuf() != null)
trustedIdentity.setEvidenceBuf(userCert.getCertBuf().toString());
trustedIdentity.setStartTime(userCert.getCertStartTime());
trustedIdentity.setEndTime(userCert.getCertEndTime());
}
trustedIdentity.setCertSerialnumber(jsonContent.getString("certSn"));
trustedIdentity.setIdentiType(jsonContent.getString("type"));
trustedIdentity.setMainInformation(mainInformation.getId());
trustedIdentity.setBasicInformation(basicInformation.getId());
trustedIdentity.setEvidenceEnclosure(enclosure.getId());
sqlSession.insert("com.itrus.portal.db.EvidenceTrustedIdentityMapper.insert", trustedIdentity);
tiCacheList.add(trustedIdentity);
}
if(jsonContentArray.size() != 0)
saveFactor = mergeFactor(saveFactor, object.getString("i_factor"));
}
break;
}
}
// 默认true 当电子合同为pdf格式时 改为false
boolean blEvent = true;
// 得到身份认证要素配置
String factorEventVerify = evidenceSaveService.getFactorEventVerify();
JSONArray jsonEvArray = JSONArray.parseArray(factorEventVerify);
EvidenceEventContent eventContent = new EvidenceEventContent();
// 得到证据包中的事件数据
JSONObject jsonEvent = jsonEvidenceContent.getJSONObject("event");
for(int i=0;i<jsonEvArray.size();i++){
JSONObject object = jsonEvArray.getJSONObject(i);
String name = object.getString("name");
switch (i) {
// 事件认证
case 0:
// 查询信息是否已经存证
List<EvidenceEventContent> eventContents = null;
if(!bl) {
EvidenceEventContentExample ece = new EvidenceEventContentExample();
EvidenceEventContentExample.Criteria ecec = ece.createCriteria();
ecec.andBasicInformationEqualTo(basicInformation.getId());
eventContents = sqlSession
.selectList("com.itrus.portal.db.EvidenceEventContentMapper.selectByExample", ece);
}
if(eventContents != null) {
eventContent = eventContents.get(0);
}
// 判断是否接收
if(object.getBooleanValue("e_isReception")
&& eventContents == null) {
// 得到证据包中的事件认证
JSONObject jsonAuthEvent = jsonEvidenceContent.getJSONObject("authEvent");
// 得到事件内容中的信息
JSONObject jsonEventContent = jsonAuthEvent.getJSONObject(name);
// 内容描述
JSONObject jsonPdfDpt = jsonEventContent.getJSONObject("description");
// 判断必填
if(bl && object.getBooleanValue("e_isRequired") && (
StringUtils.isEmpty(jsonEventContent.getString("pdfBase64"))
|| StringUtils.isEmpty(jsonPdfDpt.getString("title"))
|| StringUtils.isEmpty(jsonPdfDpt.getString("size"))
|| StringUtils.isEmpty(jsonPdfDpt.getString("page"))
)){
result.put("status", 0);
result.put("message", "提交的参数信息不完整,缺少事件认证参数值");
return result;
}
// 存储事件内容信息
eventContent.setIsPdf(jsonAuthEvent.getBooleanValue("ispdf"));
eventContent.setContractTitle(jsonPdfDpt.getString("title"));
eventContent.setContractNumber(jsonPdfDpt.getString("code"));
eventContent.setValidStartTime(jsonPdfDpt.getDate("validStartTime"));
eventContent.setValidEndTime(jsonPdfDpt.getDate("validEndTime"));
eventContent.setDataFormat(jsonPdfDpt.getString("dataFormat"));
eventContent.setEventSize(jsonPdfDpt.getString("size"));
eventContent.setThePages(jsonPdfDpt.getInteger("page"));
eventContent.setCreateTime(new Date());
eventContent.setBasicInformation(basicInformation.getId());
eventContent.setEvidenceEnclosure(enclosure.getId());
sqlSession.insert("com.itrus.portal.db.EvidenceEventContentMapper.insert", eventContent);
// 判断类型是否是pdf电子合同
if("1".equals(type)) {
// 定义存储路径和存储名称
String bucketName = "hood";
String pdfName = evidenceSn + "UserUp.pdf";
// 得到加密证书别名
String encryptionAlias = secretKeyService.getAliasByCertId(
(long)serviceConfiguration.getEncryptionCertificate());
// 存储pdfBase64 到原子服务
String retSave = storageSave("ST_O", bucketName, pdfName, "CT_BASE64_DATA",
jsonEventContent.get("pdfBase64").toString(), null, null, null,
null, null, false, null, realNameAuthentication.getRealNameddress());
JSONObject jsonRetSave = JSONObject.parseObject(retSave);
if(jsonRetSave.getIntValue("code") != 0) {
result.put("status", 0);
result.put("message", "存储用户pdfBase64失败");
return result;
} else {
String pdfSaveFile = systemConfigService.getpdfurl()+ File.separator + bucketName + File.separator + evidenceSn;
File filePathStr = new File(pdfSaveFile, pdfName);
// 判断目录是否存在
File fileUrl = new File(pdfSaveFile);
if(!fileUrl.exists()) {
fileUrl.mkdir();
}
// 用户pdfBase64转pdf存储到本地
boolean pdfSaveBl = Base64Util.genFileFromBase64(jsonEventContent.getString("pdfBase64"),
filePathStr.getPath());
boolean blStr = false;
if(StringUtils.isNotEmpty(jsonEventContent.getString("pdfBase64"))) {
blStr = true;
}
if(pdfSaveBl) {
EvidenceEnclosure evidenceEnclosure = new EvidenceEnclosure();
evidenceEnclosure.setEvidenceSn(evidenceSn);
evidenceEnclosure.setBuid(jsonRetSave.getString("buid"));
evidenceEnclosure.setPdfType("2");
evidenceEnclosure.setType("ST_E");
evidenceEnclosure.setContentType("CT_BASE64_DATA");
evidenceEnclosure.setBucketName(bucketName);
evidenceEnclosure.setObjectName(pdfName);
evidenceEnclosure.setAlias(encryptionAlias);
evidenceEnclosure.setApplicationTime(new Date());
evidenceEnclosure.setFixationTime(new Date());
evidenceEnclosure.setCreateTime(new Date());
evidenceEnclosure.setBasicInformation(basicInformation.getId());
sqlSession.insert("com.itrus.portal.db.EvidenceEnclosureMapper.insert", evidenceEnclosure);
}
// pdf转图片
// int pdfToPng = Pdf.pdf2png(filePathStr.getPath());
// log.debug("pdfToPng :" + pdfToPng);
}
// 调用pdf验章接口
Map<String, Object> mapPdfVerify = new HashMap<String, Object>();
String urlPdfVerify = realNameAuthentication.getRealNameddress() + PDF_VERIFY;
mapPdfVerify.put("pdfContent", jsonEventContent.get("pdfBase64"));
String rep_pdf_verify = HttpClientUtil.postForm(urlPdfVerify, AuthService.getHeader(), mapPdfVerify);
JSONObject jsonPdfVerify = JSONObject.parseObject(rep_pdf_verify);
if(jsonPdfVerify.getInteger("code") == 0){
eventContent.setEventStatus(1);
} else {
eventContent.setEventStatus(0);
eventContent.setFailureReason(jsonPdfVerify.getString("message"));
basicInformation.setEvidenceStatus(0);
if(StringUtils.isEmpty(basicInformation.getFailureReason()))
basicInformation.setFailureReason(jsonPdfVerify.getString("message"));
else
basicInformation.setFailureReason(basicInformation.getFailureReason() + "," + jsonPdfVerify.getString("message"));
sqlSession.update("com.itrus.portal.db.EvidenceBasicInformationMapper.updateByPrimaryKey",
basicInformation);
}
String retVerifyTi = null;
String retVerifyBehavior = null;
String retVerifyTime = null;
if(StringUtils.isNotEmpty(rep_pdf_verify)
&& StringUtils.isNotEmpty(jsonPdfVerify.getString("signInfos"))) {
// 解析pdf验章返回信息
JSONArray jsonArraySignInfos = jsonPdfVerify.getJSONArray("signInfos");
List<String> listStr = new ArrayList<>();
int noId = 0;
for(int k=0;k<jsonArraySignInfos.size();k++) {
// 循环得到pdf验章返回数据
JSONObject json = jsonArraySignInfos.getJSONObject(k);
// 解析签名者证书base64编码
UserCert userCert1 = CertUtil.getCertFromBase64(json.getString("signerCert"));
boolean blt = true;
// 对应可信身份
EvidenceTrustedIdentity trustedIdentity1 = null;
// 循环已经存在的证书序列号 判断证书序列号是否存在
for(String strCertSn:listStr){
if(userCert1 != null && strCertSn.equals(userCert1.getCertSn())){
blt = false;
}
}
// 循环可信身份list缓存 判断证书序列号是否相同
if(!tiCacheList.isEmpty() && tiCacheList != null){
for(EvidenceTrustedIdentity identity:tiCacheList) {
if(identity.getCertSerialnumber().equals(userCert1.getCertSn())){
trustedIdentity1 = identity;
}
}
}
if(trustedIdentity1 == null) {
noId--;
}
if(blt) {
// 事件对象定义
EvidenceTrustedIdentity trustedIdentity = new EvidenceTrustedIdentity();
trustedIdentity.setBasicInformation(basicInformation.getId());
trustedIdentity.setEventContent(eventContent.getId());
trustedIdentity.setEvidenceEnclosure(enclosure.getId());
if(trustedIdentity1 != null){
trustedIdentity.setMainInformation(trustedIdentity1.getMainInformation());
// 整合证书信息存储到对应可信身份表
trustedIdentity1.setCertBase64(json.getString("signerCert"));
trustedIdentity1.setSubjectdn(userCert1.getCertDn());
trustedIdentity1.setIssuerdn(userCert1.getIssuerDn());
trustedIdentity1.setIssuer(getCertCn(userCert1.getIssuerDn()));
if(userCert1.getCertBuf() != null){
trustedIdentity1.setEvidenceBuf(userCert1.getCertBuf().toString());
}
trustedIdentity1.setStartTime(userCert1.getCertStartTime());
trustedIdentity1.setEndTime(userCert1.getCertEndTime());
sqlSession.update("com.itrus.portal.db.EvidenceTrustedIdentityMapper.updateByPrimaryKey",
trustedIdentity1);
} else {
trustedIdentity.setMainInformation((long)noId);
}
trustedIdentity.setCertBase64(json.getString("signerCert"));
trustedIdentity.setCreateTime(new Date());
trustedIdentity.setCertSerialnumber(userCert1.getCertSn());
trustedIdentity.setSubjectdn(userCert1.getCertDn());
trustedIdentity.setIssuerdn(userCert1.getIssuerDn());
trustedIdentity.setIssuer(getCertCn(userCert1.getIssuerDn()));
if(userCert1.getCertBuf() != null){
trustedIdentity.setEvidenceBuf(userCert1.getCertBuf().toString());
}
trustedIdentity.setStartTime(userCert1.getCertStartTime());
trustedIdentity.setEndTime(userCert1.getCertEndTime());
// 事件对象核验结果
trustedIdentity.setCheckTime(new Date());
if(json.getIntValue("vcResult") == 0) {
trustedIdentity.setCheckStatus("1");
trustedIdentity.setCheckSuccessTime(new Date());
} else {
if(StringUtils.isEmpty(retVerifyTi))
retVerifyTi = "事件对象核验失败";
trustedIdentity.setCheckStatus("0");
if(json.getIntValue("vcResult") == 30006)
trustedIdentity.setUnreason("未找到对应的受信任CA证书");
else if(json.getIntValue("vcResult") == 30007)
trustedIdentity.setUnreason("证书已吊销");
else if(json.getIntValue("vcResult") == 30008)
trustedIdentity.setUnreason("证书不在有效期内");
else if(json.getIntValue("vcResult") == 30009)
trustedIdentity.setUnreason("无效的证书签名");
else if(json.getIntValue("vcResult") == 300010)
trustedIdentity.setUnreason("其他证书验证错误");
else
trustedIdentity.setUnreason("非正常其他证书验证错误");
}
trustedIdentity.setVewestCheckTime(new Date());
trustedIdentity.setCheckContent("1.验证证书有效期/n2.验证证书颁发者签名/n3.验证证书是否吊销");
sqlSession.insert("com.itrus.portal.db.EvidenceTrustedIdentityMapper.insert", trustedIdentity);
}
listStr.add(userCert1.getCertSn());
// 验证时间戳
EvidenceEventTime eventTime = new EvidenceEventTime();
if(trustedIdentity1 != null){
eventTime.setMainInformation(trustedIdentity1.getMainInformation());
} else {
eventTime.setMainInformation((long)noId);
}
eventTime.setEventContent(eventContent.getId());
eventTime.setCertificate(json.getJSONObject("timeStamp").getString("signature"));
eventTime.setHashAlgorithm(json.getJSONObject("timeStamp").getString("hashAlg"));
eventTime.setHashvalue(json.getJSONObject("timeStamp").getString("hashData"));
eventTime.setCertBase64(json.getJSONObject("timeStamp").getString("tsCert"));
if(StringUtils.isNotEmpty(json.getJSONObject("timeStamp").getString("time"))) {
eventTime.setSignatureTime(json.getJSONObject("timeStamp").getDate("time"));
} else {
eventTime.setSignatureTime(json.getDate("stampTime"));
}
eventTime.setCreateTime(new Date());
// 解析时间戳证书 Base64
UserCert userCert = CertUtil.getCertFromBase64(json.getJSONObject("timeStamp").getString("tsCert"));
eventTime.setCertificateDn(userCert.getCertDn());
eventTime.setIssuerdn(userCert.getIssuerDn());
// 时间核验结果
eventTime.setCheckTime(new Date());
if(json.getIntValue("vtsResult") == 0) {
eventTime.setCheckStatus("1");
eventTime.setCheckSuccessTime(new Date());
} else {
if(StringUtils.isEmpty(retVerifyTime))
retVerifyTime = "事件时间核验失败";
eventTime.setCheckStatus("0");
if(json.getIntValue("vtsResult") == 60002)
eventTime.setUnreason("验证时戳失败");
else
eventTime.setUnreason("其他验证时戳错误");
}
eventTime.setVewestCheckTime(new Date());
eventTime.setCheckContent("签名原文完整、真实、是否被篡改");
sqlSession.insert("com.itrus.portal.db.EvidenceEventTimeMapper.insert", eventTime);
// 事件行为定义
EvidenceEventBehavior eventBehavior = new EvidenceEventBehavior();
eventBehavior.setHashAlgorithm(json.getString("hashAlg"));
eventBehavior.setSignaturevalue(json.getString("signature"));
eventBehavior.setEventContent(eventContent.getId());
if(trustedIdentity1 != null){
eventBehavior.setMainInformation(trustedIdentity1.getMainInformation());
} else {
eventBehavior.setMainInformation((long)noId);
}
// 事件行为核验结果
eventBehavior.setCheckTime(new Date());
if(json.getIntValue("vdsResult") == 0) {
eventBehavior.setCheckStatus("1");
eventBehavior.setCheckSuccessTime(new Date());
} else {
if(StringUtils.isEmpty(retVerifyBehavior))
retVerifyBehavior = "事件行为核验失败";
eventBehavior.setCheckStatus("0");
if(json.getIntValue("vdsResult") == 40002)
eventBehavior.setUnreason("验证签名失败");
else
eventBehavior.setUnreason("其他验证签名错误");
}
eventBehavior.setVewestCheckTime(new Date());
eventBehavior.setCheckContent("签名原文完整、真实、是否被篡改");
sqlSession.insert("com.itrus.portal.db.EvidenceEventBehaviorMapper.insert", eventBehavior);
}
// 整合错误信息
if(StringUtils.isNotEmpty(eventContent.getFailureReason())) {
eventContent.setFailureReason(eventContent.getFailureReason());
}
if(StringUtils.isNotEmpty(retVerifyTi)) {
if(StringUtils.isNotEmpty(eventContent.getFailureReason()))
eventContent.setFailureReason(eventContent.getFailureReason() + "," + retVerifyTi);
else
eventContent.setFailureReason(retVerifyTi);
}
if(StringUtils.isNotEmpty(retVerifyBehavior)) {
if(StringUtils.isNotEmpty(eventContent.getFailureReason()))
eventContent.setFailureReason(retVerifyBehavior);
else
eventContent.setFailureReason(eventContent.getFailureReason() + "," + retVerifyBehavior);
}
if(StringUtils.isNotEmpty(retVerifyTime)) {
if(StringUtils.isNotEmpty(eventContent.getFailureReason()))
eventContent.setFailureReason(retVerifyTime);
else
eventContent.setFailureReason(eventContent.getFailureReason() + "," + retVerifyTime);
}
sqlSession.update("com.itrus.portal.db.EvidenceEventContentMapper.updateByPrimaryKey",
eventContent);
if(eventContent.getEventStatus() == 0) {
if(basicInformation.getEvidenceStatus() == 0) {
basicInformation.setFailureReason(basicInformation.getFailureReason() + eventContent.getFailureReason());
} else {
basicInformation.setEvidenceStatus(0);
basicInformation.setFailureReason(eventContent.getFailureReason());
}
sqlSession.update("com.itrus.portal.db.EvidenceBasicInformationMapper.updateByPrimaryKey",
basicInformation);
}
}
// 当电子合同为pdf时 修改为false
blEvent = false;
} else {
result.put("status", 0);
result.put("message", "只接受pdf电子合同");
return result;
eventContent.setFailureReason("电子合同不为pdf");
eventContent.setEventStatus(0);
}
saveFactor = mergeFactor(saveFactor, object.getString("e_factor"));
}
break;
// 事件对象认证 (本期不做)
case 1:
// 查询信息是否已经存证
List<EvidenceTrustedIdentity> trustedIdentities = null;
if(!bl) {
EvidenceTrustedIdentityExample tie = new EvidenceTrustedIdentityExample();
EvidenceTrustedIdentityExample.Criteria tiec = tie.createCriteria();
tiec.andBasicInformationEqualTo(basicInformation.getId());
tiec.andEventContentIsNotNull();
trustedIdentities = sqlSession
.selectList("com.itrus.portal.db.EvidenceTrustedIdentityMapper.selectByExample", tie);
}
// 判断是否接收
if(blEvent && object.getBooleanValue("e_isReception")
&& (trustedIdentities.size() == 0 || trustedIdentities.isEmpty())) {
JSONArray jsonEventObject = jsonEvent.getJSONArray(name);
for(int j=0;j<jsonEventObject.size();j++) {
// 得到事件对象认证对应信息
JSONObject jsonObject = jsonEventObject.getJSONObject(j);
// 判断主体是否存在
String idCacheKey = jsonObject.getString("name") + jsonObject.getString("dataId");
EvidenceMainInformation mainInformation = null;
if(mapIdCache.get(idCacheKey) == null || "".equals(mapIdCache.get(idCacheKey))) {
EvidenceMainInformationExample mainInformationExample = new EvidenceMainInformationExample();
EvidenceMainInformationExample.Criteria mainExampleCriteria = mainInformationExample.createCriteria();
mainExampleCriteria.andSubjectNameEqualTo(jsonObject.getString("name"));
mainExampleCriteria.andIdentificationEqualTo(jsonObject.getString("dataId"));
List<EvidenceMainInformation> mainInformationList = sqlSession
.selectList("com.itrus.portal.db.EvidenceMainInformationMapper.selectByExample", mainInformationExample);
if(mainInformationList != null)
mainInformation = mainInformationList.get(0);
mapIdCache.put(mainInformation.getSubjectName() + mainInformation.getIdentification(), mainInformation);
} else {
mainInformation = mapIdCache.get(idCacheKey);
}
if(mainInformation == null || "".equals(mainInformation)) {
result.put("status", 0);
result.put("message", "判断主体为空");
return result;
}
// 必填判断
if(bl && object.getBooleanValue("e_isRequired") && (
StringUtils.isEmpty(jsonObject.getString("name"))
|| StringUtils.isEmpty(jsonObject.getString("dataId"))
|| StringUtils.isEmpty(jsonObject.getString("time"))
|| StringUtils.isEmpty(jsonObject.getString("certBase64"))
|| StringUtils.isEmpty(jsonObject.getString("authenticatorThen"))
|| StringUtils.isEmpty(jsonObject.getString("verifyResult"))
)) {
result.put("status", 0);
result.put("message", "提交的参数信息不完整,缺少事件对象认证参数值");
return result;
}
EvidenceTrustedIdentity trustedIdentity = new EvidenceTrustedIdentity();
// 判断是否需要调验证证书接口
if(blEvent){
// 验证证书
String urlCertVerify = realNameAuthentication.getRealNameddress() + CERT_VERIFY;
Map<String, Object> mapCertVerify = new HashMap<String, Object>();
mapCertVerify.put("cert", jsonObject.getString("certBase64"));
mapCertVerify.put("verifyFlag", "7");
String rep_cert_verify = HttpClientUtil.postForm(urlCertVerify, AuthService.getHeader(), mapCertVerify);
JSONObject jsonCertVerify = JSONObject.parseObject(rep_cert_verify);
if(StringUtils.isNotEmpty(rep_cert_verify) && jsonCertVerify.getIntValue("code") == 0) {
// 解析证书Base64
UserCert userCert = CertUtil.getCertFromBase64(jsonObject.getString("certBase64"));
trustedIdentity.setCertSerialnumber(userCert.getCertSn());
trustedIdentity.setSubjectdn(userCert.getCertDn());
trustedIdentity.setIssuerdn(userCert.getIssuerDn());
trustedIdentity.setEvidenceBuf(userCert.getCertBuf().toString());
trustedIdentity.setStartTime(userCert.getCertStartTime());
trustedIdentity.setEndTime(userCert.getCertEndTime());
trustedIdentity.setCheckTime(new Date());
trustedIdentity.setCheckStatus("1");
} else {
trustedIdentity.setCheckTime(new Date());
trustedIdentity.setCheckStatus("0");
trustedIdentity.setUnreason(jsonCertVerify.getString("message"
+ ""));
result.put("status", 0);
result.put("message", "验证证书失败");
return result;
}
}
trustedIdentity.setBasicInformation(basicInformation.getId());
trustedIdentity.setMainInformation(mainInformation.getId());
trustedIdentity.setEvidenceEnclosure(enclosure.getId());
trustedIdentity.setEventVerifier(jsonObject.getString("authenticatorThen"));
trustedIdentity.setVerificationResult(jsonObject.getString("verifyResult"));
trustedIdentity.setCreateTime(new Date());
sqlSession.insert("com.itrus.portal.db.EvidenceTrustedIdentityMapper.insert", trustedIdentity);
}
if(jsonEventObject.size() != 0)
saveFactor = mergeFactor(saveFactor, object.getString("e_factor"));
}
break;
// 事件意愿认证
case 2:
// 查询信息是否已经存证
List<EvidenceEventDesire> eventDesires = null;
if(!bl) {
EvidenceEventDesireExample ede = new EvidenceEventDesireExample();
EvidenceEventDesireExample.Criteria edec = ede.createCriteria();
edec.andEventContenteEqualTo(eventContent.getId());
eventDesires = sqlSession
.selectList("com.itrus.portal.db.EvidenceEventDesireMapper.selectByExample", ede);
}
// 判断是否接收
if((object.getJSONObject("e_isReception").getBooleanValue("e_isReception1")
|| object.getJSONObject("e_isReception").getBooleanValue("e_isReception2"))
&& (eventDesires.size() == 0 || eventDesires.isEmpty())) {
JSONArray jsonEventWill = jsonEvent.getJSONArray(name);
for(int j=0;j<jsonEventWill.size();j++){
// 得到事件意愿认证对应信息
JSONObject jsonWill = jsonEventWill.getJSONObject(j);
// 判断主体是否存在 不存在则获取
String idCacheKey = jsonWill.getString("name") + jsonWill.getString("dataId");
EvidenceMainInformation mainInformation = null;
if(mapIdCache.get(idCacheKey) == null || "".equals(mapIdCache.get(idCacheKey))) {
EvidenceMainInformationExample mainInformationExample = new EvidenceMainInformationExample();
EvidenceMainInformationExample.Criteria mainExampleCriteria = mainInformationExample.createCriteria();
mainExampleCriteria.andSubjectNameEqualTo(jsonWill.getString("name"));
mainExampleCriteria.andIdentificationEqualTo(jsonWill.getString("dataId"));
List<EvidenceMainInformation> mainInformationList = sqlSession
.selectList("com.itrus.portal.db.EvidenceMainInformationMapper.selectByExample", mainInformationExample);
if(mainInformationList != null)
mainInformation = mainInformationList.get(0);
mapIdCache.put(mainInformation.getSubjectName() + mainInformation.getIdentification(), mainInformation);
} else {
mainInformation = mapIdCache.get(idCacheKey);
}
if(mainInformation == null || "".equals(mainInformation)) {
result.put("status", 0);
result.put("message", "判断主体为空");
return result;
}
if(bl && object.getBooleanValue("e_isRequired") && (
StringUtils.isEmpty(jsonWill.getString("name"))
|| StringUtils.isEmpty(jsonWill.getString("dataId"))
|| StringUtils.isEmpty(jsonWill.getString("way"))
)) {
result.put("status", 0);
result.put("message", "提交的参数信息不完整,缺少事件意愿认证参数值");
return result;
}
EvidenceEventDesire eventDesire = new EvidenceEventDesire();
// 1.证书授权 2.短信验证
if(jsonWill.getIntValue("way") == 1) {
JSONObject jsonCertContent = jsonWill.getJSONObject("certAccreditContent");
if(bl && object.getBooleanValue("e_isRequired") && (
StringUtils.isEmpty(jsonCertContent.getString("certBase64"))
|| StringUtils.isEmpty(jsonCertContent.getString("challengeCode"))
|| StringUtils.isEmpty(jsonCertContent.getString("answerCode"))
|| StringUtils.isEmpty(jsonCertContent.getString("verifyTime"))
)) {
result.put("status", 0);
result.put("message", "提交的参数信息不完整,缺少事件意愿认证参数值");
return result;
}
// 验证证书
String urlCertVerify = realNameAuthentication.getRealNameddress() + CERT_VERIFY;
Map<String, Object> mapCertVerify = new HashMap<String, Object>();
mapCertVerify.put("cert", jsonCertContent.getString("certBase64"));
mapCertVerify.put("verifyFlag", "7");
String rep_cert_verify = HttpClientUtil.postForm(
urlCertVerify, AuthService.getHeader(), mapCertVerify);
JSONObject jsonCertVerify = JSONObject.parseObject(rep_cert_verify);
if(StringUtils.isNotEmpty(rep_cert_verify) && jsonCertVerify.getIntValue("code") == 0) {
// 解析证书Base64
UserCert userCert = CertUtil.getCertFromBase64(jsonCertVerify.getString("certBase64"));
eventDesire.setCertSerialnumber(userCert.getCertSn());
eventDesire.setSubjectdn(userCert.getCertDn());
eventDesire.setIssuerdn(userCert.getIssuerDn());
eventDesire.setEvidenceBuf(userCert.getCertBuf().toString());
eventDesire.setStartTime(userCert.getCertStartTime());
eventDesire.setEndTime(userCert.getCertEndTime());
} else {
result.put("status", 0);
result.put("message", "验证证书失败");
return result;
}
eventDesire.setChallengeCode(jsonCertContent.getString("challengeCode"));
eventDesire.setAnswerCode(jsonCertContent.getString("answerCode"));
eventDesire.setClientDevice(jsonCertContent.getString("clientFacility"));
eventDesire.setVerificationTime(jsonCertContent.getDate("verifyTime"));
eventDesire.setWaysExpression("证书授权");
} else if(jsonWill.getIntValue("way") == 2) {
JSONObject jsonSmsContent = jsonWill.getJSONObject("verifySmsContent");
if(bl && object.getBooleanValue("e_isRequired") && (
StringUtils.isEmpty(jsonSmsContent.getString("phone"))
|| StringUtils.isEmpty(jsonSmsContent.getString("sendTime"))
|| StringUtils.isEmpty(jsonSmsContent.getString("smsContent"))
|| StringUtils.isEmpty(jsonSmsContent.getString("verifyCode"))
|| StringUtils.isEmpty(jsonSmsContent.getString("verifyTime"))
)) {
result.put("status", 0);
result.put("message", "提交的参数信息不完整,缺少事件意愿认证参数值");
return result;
}
eventDesire.setPhone(jsonSmsContent.getString("phone"));
eventDesire.setSmsContent(jsonSmsContent.getString("smsContent"));
eventDesire.setVerificationCode(jsonSmsContent.getString("verifyCode"));
eventDesire.setSendOutTime(jsonSmsContent.getDate("sendTime"));
eventDesire.setVerificationTime(jsonSmsContent.getDate("verifyTime"));
eventDesire.setWaysExpression("短信验证");
}
eventDesire.setMainInformation(mainInformation.getId());
eventDesire.setEventContente(eventContent.getId());
eventDesire.setCreateTime(new Date());
eventDesire.setEventVerifier(jsonWill.getString("authenticatorThen"));
eventDesire.setVerificationResult(jsonWill.getString("verifyResult"));
sqlSession.insert("com.itrus.portal.db.EvidenceEventDesireMapper.insert", eventDesire);
}
if(jsonEventWill.size() != 0)
saveFactor = mergeFactor(saveFactor, object.getString("e_factor"));
}
break;
// 事件时间认证 (本期不做)
case 3:
// 查询信息是否已经存证
List<EvidenceEventTime> eventTimes = null;
if(!bl) {
EvidenceEventTimeExample ete = new EvidenceEventTimeExample();
EvidenceEventTimeExample.Criteria etec = ete.createCriteria();
etec.andEventContentEqualTo(eventContent.getId());
eventTimes = sqlSession
.selectList("com.itrus.portal.db.EvidenceEventTimeMapper.selectByExample", ete);
}
// 判断是否接收
if(blEvent && object.getBooleanValue("e_isReception")
&& (eventTimes.size() == 0 || eventTimes.isEmpty())) {
JSONArray jsonEventTime = jsonEvent.getJSONArray(name);
for(int j=0;j<jsonEventTime.size();j++) {
// 得到事件时间认证队员信息
JSONObject jsonTime = jsonEventTime.getJSONObject(j);
// 判断主体是否存在
String idCacheKey = jsonTime.getString("name") + jsonTime.getString("dataId");
EvidenceMainInformation mainInformation = null;
if(mapIdCache.get(idCacheKey) == null || "".equals(mapIdCache.get(idCacheKey))) {
EvidenceMainInformationExample mainInformationExample = new EvidenceMainInformationExample();
EvidenceMainInformationExample.Criteria mainExampleCriteria = mainInformationExample.createCriteria();
mainExampleCriteria.andSubjectNameEqualTo(jsonTime.getString("name"));
mainExampleCriteria.andIdentificationEqualTo(jsonTime.getString("dataId"));
List<EvidenceMainInformation> mainInformationList = sqlSession
.selectList("com.itrus.portal.db.EvidenceMainInformationMapper.selectByExample", mainInformationExample);
if(mainInformationList != null)
mainInformation = mainInformationList.get(0);
mapIdCache.put(mainInformation.getSubjectName() + mainInformation.getIdentification(), mainInformation);
} else {
mainInformation = mapIdCache.get(idCacheKey);
}
if(mainInformation == null || "".equals(mainInformation)) {
result.put("status", 0);
result.put("message", "判断主体为空");
return result;
}
JSONObject jsonContent = jsonTime.getJSONObject("jsonTime");
// 必填验证
if(bl && object.getBooleanValue("e_isRequired") && (
StringUtils.isEmpty(jsonTime.getString("name"))
|| StringUtils.isEmpty(jsonTime.getString("dataId"))
|| StringUtils.isEmpty(jsonTime.getString("type"))
|| StringUtils.isEmpty(jsonTime.getString("time"))
|| StringUtils.isEmpty(jsonTime.getString("authenticatorThen"))
|| StringUtils.isEmpty(jsonTime.getString("verifyResult"))
|| StringUtils.isEmpty(jsonTime.getString("hashVal"))
|| StringUtils.isEmpty(jsonTime.getString("hashArithmetic"))
|| StringUtils.isEmpty(jsonTime.getString("signatureValTime"))
|| StringUtils.isEmpty(jsonTime.getString("timeSource"))
|| StringUtils.isEmpty(jsonTime.getString("signTime"))
|| StringUtils.isEmpty(jsonTime.getString("signatureCert"))
)) {
result.put("status", 0);
result.put("message", "提交的参数信息不完整,缺少事件时间认证参数值");
return result;
}
EvidenceEventTime eventTime = new EvidenceEventTime();
// 判断是否需要调
if(blEvent){
// 验证时间戳
byte[] arg = jsonContent.getBytes("signatureValTime");
byte[] arg1 = jsonContent.getBytes("hashVal");
org.json.JSONObject jsonTimeVerify = TsaVerifier.verifyTimeStamp(arg, arg1);
if(jsonTimeVerify != null) {
// 解析证书base64
UserCert userCert = CertUtil
.getCertFromBase64(jsonTimeVerify.getString("certBase64"));
eventTime.setCertificateDn(userCert.getCertDn());
} else {
result.put("status", 0);
result.put("message", "验证证书失败");
return result;
}
}
eventTime.setCreateTime(new Date());
eventTime.setEventContent(eventContent.getId());
eventTime.setMainInformation(mainInformation.getId());
sqlSession.insert("com.itrus.portal.db.EvidenceEventTimeMapper.insert", eventTime);
}
if(jsonEventTime.size() != 0)
saveFactor = mergeFactor(saveFactor, object.getString("e_factor"));
}
break;
// 事件地点认证
case 4:
// 查询信息是否已经存证
List<EvidenceEventNetworkAddress> eventNetworkAddresses = null;
if(!bl) {
EvidenceEventNetworkAddressExample nae = new EvidenceEventNetworkAddressExample();
EvidenceEventNetworkAddressExample.Criteria naec = nae.createCriteria();
naec.andEventContentEqualTo(eventContent.getId());
eventNetworkAddresses = sqlSession
.selectList("com.itrus.portal.db.EvidenceEventNetworkAddressMapper.selectByExample", nae);
}
// 判断是否接收
if(object.getBooleanValue("e_isReception")
&& (eventNetworkAddresses == null || eventNetworkAddresses.isEmpty())) {
JSONArray jsonNetAddress = jsonEvent.getJSONArray(name);
for(int j=0;j<jsonNetAddress.size();j++) {
JSONObject jsonAddress = jsonNetAddress.getJSONObject(j);
// 判断是否必填
if(bl && object.getBooleanValue("e_isRequired") && (
StringUtils.isEmpty(jsonAddress.getString("name"))
|| StringUtils.isEmpty(jsonAddress.getString("dataId"))
)){
result.put("status", 0);
result.put("message", "提交的参数信息不完整,缺少事件地点认证参数值");
return result;
}
EvidenceEventNetworkAddress eventNetworkAddress = new EvidenceEventNetworkAddress();
// 判断主体是否存在
String idCacheKey = jsonAddress.getString("name") + jsonAddress.getString("dataId");
EvidenceMainInformation mainInformation = null;
if(mapIdCache.get(idCacheKey) == null || "".equals(mapIdCache.get(idCacheKey))) {
EvidenceMainInformationExample mainInformationExample = new EvidenceMainInformationExample();
EvidenceMainInformationExample.Criteria mainExampleCriteria = mainInformationExample.createCriteria();
mainExampleCriteria.andSubjectNameEqualTo(jsonAddress.getString("name"));
mainExampleCriteria.andIdentificationEqualTo(jsonAddress.getString("dataId"));
List<EvidenceMainInformation> mainInformationList = sqlSession
.selectList("com.itrus.portal.db.EvidenceMainInformationMapper.selectByExample", mainInformationExample);
if(mainInformationList != null)
mainInformation = mainInformationList.get(0);
mapIdCache.put(mainInformation.getSubjectName() + mainInformation.getIdentification(), mainInformation);
} else {
mainInformation = mapIdCache.get(idCacheKey);
}
if(mainInformation == null || "".equals(mainInformation)) {
result.put("status", 0);
result.put("message", "判断主体为空");
return result;
}
// 整合数据 存储
eventNetworkAddress.setEventContent(eventContent.getId());
eventNetworkAddress.setMainInformation(mainInformation.getId());
eventNetworkAddress.setCreateTime(new Date());
if(jsonAddress.getBooleanValue("typeReg")) {
JSONObject jsonContent = jsonAddress.getJSONObject("content");
eventNetworkAddress.setType("1");
eventNetworkAddress.setAccountNumber(jsonContent.getString("code"));
eventNetworkAddress.setIpAddress(jsonContent.getString("ipAddress"));
eventNetworkAddress.setSigninTime(jsonContent.getDate("time"));
} else {
eventNetworkAddress.setType("0");
}
if(jsonAddress.getBooleanValue("typeSign")) {
JSONObject jsonContent1 = jsonAddress.getJSONObject("content1");
eventNetworkAddress.setSigninNumber(jsonContent1.getString("code"));
eventNetworkAddress.setSigninipAddress(jsonContent1.getString("ipAddress"));
eventNetworkAddress.setSigninTime(jsonContent1.getDate("time"));
eventNetworkAddress.setSigninType("1");
} else {
eventNetworkAddress.setSigninType("0");
}
sqlSession.insert("com.itrus.portal.db.EvidenceEventNetworkAddressMapper.insert", eventNetworkAddress);
}
if(jsonNetAddress.size() != 0)
saveFactor = mergeFactor(saveFactor, object.getString("e_factor"));
}
break;
// 事件行为认证 (本期不做)
case 5:
// 查询信息是否已经存证
List<EvidenceEventBehavior> behaviors = null;
if(!bl) {
EvidenceEventBehaviorExample ebe = new EvidenceEventBehaviorExample();
EvidenceEventBehaviorExample.Criteria ebec = ebe.createCriteria();
ebec.andEventContentEqualTo(eventContent.getId());
behaviors = sqlSession
.selectList("com.itrus.portal.db.EvidenceEventBehaviorMapper.selectByExample", ebec);
}
// 判断是否接收
if(blEvent && object.getBooleanValue("e_isReception")
&& (behaviors == null || behaviors.isEmpty())) {
JSONArray jsonEventBehavior = jsonEvent.getJSONArray(name);
for(int j=0;j<jsonEventBehavior.size();j++) {
// 得到事件行为认证的对应信息
JSONObject jsonBehavior = jsonEventBehavior.getJSONObject(j);
// 判断是否需要调接口
if(blEvent){
// 判断是否必填
if(bl && object.getBooleanValue("e_isRequired") && (
StringUtils.isEmpty(jsonBehavior.getString("name"))
|| StringUtils.isEmpty(jsonBehavior.getString("dataId"))
|| StringUtils.isEmpty(jsonBehavior.getString("type"))
|| StringUtils.isEmpty(jsonBehavior.getString("time")))){
result.put("status", 0);
result.put("message", "提交的参数信息不完整,缺少事件行为认证参数值");
return result;
}
if(StringUtils.isEmpty(jsonBehavior.getJSONObject("content").getString("hashVal"))
|| StringUtils.isEmpty(jsonBehavior.getJSONObject("content").getString("hashArithmetic"))
|| StringUtils.isEmpty(jsonBehavior.getJSONObject("content").getString("signatureVal"))
|| StringUtils.isEmpty(jsonBehavior.getJSONObject("content").getString("signatureCert"))) {
result.put("status", 0);
result.put("message", "提交的参数信息不完整,缺少事件行为认证参数值");
return result;
}
}
JSONObject jsonContent = jsonBehavior.getJSONObject("content");
// 判断主体是否存在
String idCacheKey = jsonBehavior.getString("name") + jsonBehavior.getString("dataId");
EvidenceMainInformation mainInformation = null;
if(mapIdCache.get(idCacheKey) == null || "".equals(mapIdCache.get(idCacheKey))) {
EvidenceMainInformationExample mainInformationExample = new EvidenceMainInformationExample();
EvidenceMainInformationExample.Criteria mainExampleCriteria = mainInformationExample.createCriteria();
mainExampleCriteria.andSubjectNameEqualTo(jsonBehavior.getString("name"));
mainExampleCriteria.andIdentificationEqualTo(jsonBehavior.getString("dataId"));
List<EvidenceMainInformation> mainInformationList = sqlSession
.selectList("com.itrus.portal.db.EvidenceMainInformationMapper.selectByExample", mainInformationExample);
if(mainInformationList != null)
mainInformation = mainInformationList.get(0);
mapIdCache.put(mainInformation.getSubjectName() + mainInformation.getIdentification(), mainInformation);
} else {
mainInformation = mapIdCache.get(idCacheKey);
}
if(mainInformation == null || "".equals(mainInformation)) {
result.put("status", 0);
result.put("message", "判断主体为空");
return result;
}
EvidenceEventBehavior eventBehavior = new EvidenceEventBehavior();
eventBehavior.setSignatureType(jsonBehavior.getString("type"));
eventBehavior.setMainInformation(mainInformation.getId());
eventBehavior.setEventContent(eventContent.getId());
eventBehavior.setEventVerifier(jsonBehavior.getString("authenticatorThen"));
eventBehavior.setVerificationResult(jsonBehavior.getString("verificationResult"));
eventBehavior.setHashBeforeSigning(jsonContent.getString("hashVal"));
eventBehavior.setHashAlgorithm(jsonContent.getString("hashArithmetic"));
eventBehavior.setCreateTime(new Date());
sqlSession.insert("com.itrus.portal.db.EvidenceEventBehaviorMapper.insert", eventBehavior);
}
if(jsonEventBehavior.size() != 0)
saveFactor = mergeFactor(saveFactor, object.getString("e_factor"));
}
break;
}
}
} catch (Exception e) {
//返回用户信息
e.printStackTrace();
result.put("status", -5);
result.put("message", "服务器出错,请联系管理员");
String oper = "存证接口-异常";
String info = "证据编码:" + basicInformation.getEvidenceSn() + ",错误原因:" + e.toString();
LogUtil.evidencelog(sqlSession, oper, info);
return result;
}
result.put("saveFactor", saveFactor);
result.put("enclosure", enclosure);
return result;
}
*/
/**
* 出证
* @param signature
* 签名值
* @param appId
* 应用标识
* @param serviceCode
* 服务编码
* @param evidenceSns
* 要出证的证据编号(多个用逗号隔开)
* @param businessSn
* 事件发生平台业务单号
* @param request
* @return
*/
// @RequestMapping(value = "/generate")
@ResponseBody
public Map<String, Object> generate(@RequestHeader("Content-Signature") String signature, @RequestParam(value = "appId", required = true) String appId, @RequestParam(value = "serviceCode", required = true) String serviceCode, @RequestParam(value = "evidenceSns", required = false) String evidenceSns, @RequestParam(value = "businessSn", required = false) String businessSn, @RequestParam(value = "name", required = true) String name, @RequestParam(value = "code", required = true) String code, HttpServletRequest request) {
// 申请时间
Date date = new Date();
// TODO : 出证接口
Map<String, Object> result = new HashMap<String, Object>();
// 验证参数是否完整
if (StringUtils.isEmpty(signature) || StringUtils.isEmpty(appId) || StringUtils.isEmpty(serviceCode) || StringUtils.isEmpty(code) || StringUtils.isEmpty(name) || (evidenceSns == null && StringUtils.isEmpty(businessSn))) {
result.put("status", 0);
result.put("message", "提交的参数信息不完整");
return result;
}
// 得到应用信息 改成service
Map<String, ApplicationInfo> appInfoMap = CacheCustomer.getAPP_INFO_MAP();
ApplicationInfo applicationInfo = appInfoMap.get(appId);
if (applicationInfo == null) {
ApplicationInfoExample applicationInfoExample = new ApplicationInfoExample();
ApplicationInfoExample.Criteria appInfoExampleCriteria = applicationInfoExample.createCriteria();
appInfoExampleCriteria.andAppIdEqualTo(appId);
applicationInfo = sqlSession.selectOne("com.itrus.portal.db.ApplicationInfoMapper.selectByExample", applicationInfoExample);
}
if (applicationInfo == null) {
result.put("status", -11);
result.put("message", "应用标识不存在");
return result;
}
if (applicationInfo.getIsAppStatus() == 0) {
result.put("status", -12);
result.put("message", "应用状态已关闭");
return result;
}
// 核验ip限制
if (!applicationInfo.getAccessIp().contains(request.getRemoteAddr()) && "1".equals(applicationInfo.getIsIpStatus())) {
result.put("status", -1);
result.put("message", "没有此服务权限");
log.debug("EvidenceSaveSeriveceTest_AccsessIp : " + request.getRemoteAddr());
return result;
}
// 验证hmac有效性
try {
String macVal = Base64.encode(HMACSHA1.getHmacSHA1(appId + serviceCode + evidenceSns + businessSn + name + code, applicationInfo.getSecretKey()), false);
if (!signature.equals("HMAC-SHA1 " + macVal)) {
result.put("status", -2);
result.put("message", "服务密钥错误");
return result;
}
} catch (Exception e) {
result.put("status", -3);
result.put("message", "Hmac验证错误");
e.printStackTrace();
return result;
}
// 获取对应应用信息
EvidenceOutServiceConfig outServiceConfig = null;
AppService appService = appServiceExt.getAppService(serviceCode);
if (appService != null && "EvidenceOutServiceConfig".equals(appService.getServiceConfigName())) {
outServiceConfig = configService.selectById(appService.getServiceConfigId());
} else {
result.put("status", -21);
result.put("message", "应用服务不存在");
return result;
}
if (outServiceConfig == null) {
result.put("status", -21);
result.put("message", "应用服务不存在");
return result;
}
if (appService.getIsAppServiceStatus() == 0) {
result.put("status", -22);
result.put("message", "服务已关闭");
return result;
}
if (outServiceConfig.getOutWay() == null) {
result.put("status", 0);
result.put("message", "请联系管理员配置出证方式");
return result;
}
// 生成流水号
String orderNumber = UniqueIDUtils.genAppServiceUID(applicationInfo, appService.getAppServiceName(), sqlSession, 3);
// 整合出证信息表
EvidenceHisCertificate hisCertificate = new EvidenceHisCertificate();
hisCertificate.setServiceRequestPlatform(applicationInfo.getName());
hisCertificate.setSisServiceName(appService.getAppServiceName());
hisCertificate.setSerialnumber(orderNumber);
hisCertificate.setHisAppService(appService.getId());
hisCertificate.setApplicationTime(date);
hisCertificate.setHisApplicant(code);
hisCertificate.setHisState("1");
hisCertificate.setHisway(outServiceConfig.getOutWay().toString());
sqlSession.insert("com.itrus.portal.db.EvidenceHisCertificateMapper.insert", hisCertificate);
int count = 0;
if (StringUtils.isNotEmpty(evidenceSns)) {
String[] evidenceSnArr = evidenceSns.split(",");
for (String evidenceSn : evidenceSnArr) {
// 获得对应证据编号的信息
EvidenceBasicInformationExample basicInformationExample = new EvidenceBasicInformationExample();
EvidenceBasicInformationExample.Criteria bec = basicInformationExample.createCriteria();
bec.andEvidenceSnEqualTo(evidenceSn);
bec.andEvidenceTypeEqualTo(2);
List<EvidenceBasicInformation> basicInformations = sqlSession.selectList("com.itrus.portal.db.EvidenceBasicInformationMapper.selectByExample", basicInformationExample);
if (basicInformations == null || basicInformations.isEmpty()) {
continue;
}
count++;
EvidenceBasicInformation basicInformation = basicInformations.get(0);
if (basicInformation.getEvidenceStatus() == 0) {
result.put("status", 0);
result.put("message", "证据编号:" + evidenceSn + ",不满足出证要求");
return result;
}
// 存储出证与证据关系
EvidenceHisRelationship hisRelationship = new EvidenceHisRelationship();
hisRelationship.setBasicInformation(basicInformation.getId());
hisRelationship.setHisCertificate(hisCertificate.getId());
sqlSession.insert("com.itrus.portal.db.EvidenceHisRelationshipMapper.insert", hisRelationship);
}
if (count == 0) {
result.put("status", 0);
result.put("message", "提交的证据编号有误");
return result;
}
} else {
EvidenceBasicInformationExample informationExample = new EvidenceBasicInformationExample();
EvidenceBasicInformationExample.Criteria ec = informationExample.createCriteria();
ec.andServiceNumberEqualTo(businessSn);
ec.andEvidenceTypeEqualTo(2);
List<EvidenceBasicInformation> basicInformations = sqlSession.selectList("com.itrus.portal.db.EvidenceBasicInformationMapper.selectByExample", informationExample);
if (basicInformations == null || basicInformations.isEmpty()) {
result.put("status", 0);
result.put("message", "提交的业务单号有误");
return result;
}
for (EvidenceBasicInformation basicInformation : basicInformations) {
count++;
if (basicInformation.getEvidenceStatus() == 0) {
result.put("status", 0);
result.put("message", "证据编号:" + basicInformation.getEvidenceSn() + ",不满足出证要求");
return result;
}
// 存储出证与证据关系
EvidenceHisRelationship hisRelationship = new EvidenceHisRelationship();
hisRelationship.setBasicInformation(basicInformation.getId());
hisRelationship.setHisCertificate(hisCertificate.getId());
sqlSession.insert("com.itrus.portal.db.EvidenceHisRelationshipMapper.insert", hisRelationship);
}
}
if (count == 1)
hisCertificate.setHis("0");
else
hisCertificate.setHis("1");
sqlSession.update("com.itrus.portal.db.EvidenceHisCertificateMapper.updateByPrimaryKey", hisCertificate);
sqlSession.flushStatements();
// 核验计费
/* boolean blCharing = takeChargingService.checkTakeCharing(applicationInfo, appService, count);
if(!blCharing) {
result.put("status", -4);
result.put("message", "服务计费失败");
return result;
}*/
// 生成出证报告
Map<String, Object> mapRet = null;
// 判断是否为自动出证
if (hisCertificate.getHisway().equals("1")) {
// 生成出证报告
try {
mapRet = reportTemplate.certificationReport(hisCertificate.getSerialnumber());
} catch (Exception e) {
result.put("status", 0);
result.put("message", "出证失败");
return result;
}
} else {
result.put("status", 0);
result.put("message", "无法自动出证");
return result;
}
// 判断出证报告是否生成成功
if (mapRet != null && (int) mapRet.get("status") == 0) {
result.put("status", 1);
result.put("message", "出证成功");
result.put("orderNumber", hisCertificate.getSerialnumber());
result.put("pdfBase64", mapRet.get("pdfBase64"));
hisCertificate.setHisState("0");
} else {
result.put("status", 0);
result.put("message", "出证失败");
hisCertificate.setHisCauseFailure(mapRet.get("message").toString());
// 判断为自动出证失败后 转人工出证
if (hisCertificate.getHisway().equals("1")) {
hisCertificate.setHisway("3");
result.put("message", "出证失败,已自动转人工出证");
}
}
sqlSession.update("com.itrus.portal.db.EvidenceHisCertificateMapper.updateByPrimaryKey", hisCertificate);
return result;
}
use of com.itrus.portal.db.AppService in project portal by ixinportal.
the class EvidenceSaveServiceApi method saveContract.
/**
* 存证接口 (合同原文)
* @param signature
* 签名值
* @param request
* @return
*/
@RequestMapping("/saveContract")
@ResponseBody
public Map<String, Object> saveContract(@RequestHeader("Content-Signature") String signature, @RequestParam(value = "appId", required = false) String appId, @RequestParam(value = "serviceCode", required = false) String serviceCode, @RequestParam(value = "evidenceSn", required = false) String evidenceSn, @RequestParam(value = "hashAlg", required = false) String hashAlg, @RequestParam(value = "signedBase64", required = false) String signedBase64, @RequestParam(value = "evidencePackage", required = false) String evidencePackage, HttpServletRequest request) {
// 返回值
Map<String, Object> result = new HashMap<String, Object>();
result.put("status", 1);
Long startTime = System.currentTimeMillis();
// 申请时间
Date date = new Date();
// 验证参数是否完整
if (StringUtils.isEmpty(signature) || StringUtils.isEmpty(appId) || StringUtils.isEmpty(serviceCode) || StringUtils.isEmpty(evidencePackage) || StringUtils.isEmpty(hashAlg) || StringUtils.isEmpty(signedBase64)) {
result.put("status", 0);
result.put("message", "提交的参数信息不完整");
return result;
}
if (StringUtils.isNotEmpty(evidenceSn)) {
evidenceSn = null;
}
// 获取对应应用信息
ApplicationInfo applicationInfo = applicationInfoService.getApplicationInfo(appId);
if (applicationInfo == null) {
result.put("status", -11);
result.put("message", "应用标识不存在");
return result;
}
if (applicationInfo.getIsAppStatus() == 0) {
result.put("status", -12);
result.put("message", "应用状态已关闭");
return result;
}
// 核验ip限制
if (!applicationInfo.getAccessIp().contains(request.getRemoteAddr()) && "1".equals(applicationInfo.getIsIpStatus())) {
result.put("status", -1);
result.put("message", "没有此服务权限");
log.debug("EvidenceSaveSeriveceTest_AccsessIp : " + request.getRemoteAddr());
return result;
}
// 验证hmac有效性
try {
String macVal = Base64.encode(HMACSHA1.getHmacSHA1(appId + serviceCode + evidenceSn + hashAlg + signedBase64 + evidencePackage, applicationInfo.getSecretKey()), false);
if (!signature.equals("HMAC-SHA1 " + macVal)) {
result.put("status", -2);
result.put("message", "服务密钥错误");
return result;
}
} catch (Exception e) {
result.put("status", -3);
result.put("message", "Hmac验证错误");
e.printStackTrace();
return result;
}
// 获取对应应用信息
EvidenceSaveService evidenceSaveService = null;
AppService appService = appServiceExt.getAppService(serviceCode);
if (appService != null && "EvidenceSaveService".equals(appService.getServiceConfigName())) {
evidenceSaveService = saveServiceImpl.selectById(appService.getServiceConfigId());
} else {
result.put("status", -21);
result.put("message", "应用服务不存在");
return result;
}
if (evidenceSaveService == null) {
result.put("status", -21);
result.put("message", "应用服务不存在");
return result;
}
if (appService.getIsAppServiceStatus() == 0) {
result.put("status", -22);
result.put("message", "服务已关闭");
return result;
}
// 获取存证回执模版
if (evidenceSaveService.getAppServiceName() != null) {
AppService appServiceOut = appServiceExt.selectById(evidenceSaveService.getAppServiceName());
if (appServiceOut == null) {
result.put("status", -22);
result.put("message", "回执模版不存在");
return result;
}
}
if (StringUtils.isNotEmpty(evidenceSn)) {
EvidenceBasicInformation basicInformation = basicInformationService.getInformationBySn(evidenceSn, 1);
if (basicInformation != null) {
result.put("status", 0);
result.put("message", "该证据不可补交");
return result;
}
}
log.error("verifyConfig time is [" + (System.currentTimeMillis() - startTime) + "]");
RealNameAuthentication realNameAuthentication = null;
RealNameAuthentication realNameAuthenticationTime = null;
RealNameAuthentication realNameAuthenticationOss = null;
try {
Long getConfigTime = System.currentTimeMillis();
// 获取原子服务地址 1.实名认证 2.密码服务 3.时间戳 4.OSS
realNameAuthentication = CacheCustomer.getAUTH_CONFIG_MAP().get(2);
if (realNameAuthentication == null) {
realNameAuthentication = realNameAuthenticationSerivce.getRealNameAuthenticationByTwo();
}
if (realNameAuthentication == null) {
result.put("status", -6);
result.put("message", "缺少密码服务配置,请联系管理员");
return result;
}
// 获取原子服务地址 1.实名认证 2.密码服务 3.时间戳 4.OSS
realNameAuthenticationTime = CacheCustomer.getAUTH_CONFIG_MAP().get(3);
if (realNameAuthenticationTime == null) {
realNameAuthenticationTime = realNameAuthenticationSerivce.getRealNameAuthenticationByThree();
}
if (realNameAuthenticationTime == null) {
result.put("status", -6);
result.put("message", "缺少时间戳服务配置,请联系管理员");
return result;
}
// 获取原子服务地址 1.实名认证 2.密码服务 3.时间戳 4.OSS
realNameAuthenticationOss = CacheCustomer.getAUTH_CONFIG_MAP().get(4);
if (realNameAuthenticationOss == null) {
realNameAuthenticationOss = realNameAuthenticationSerivce.getRealNameAuthenticationByOss();
}
if (realNameAuthenticationOss == null) {
result.put("status", -6);
result.put("message", "缺少OSS配置,请联系管理员");
return result;
}
// 本次证据包大小
int fileSize = evidencePackage.getBytes("utf-8").length;
log.error("getConfig time is [" + (System.currentTimeMillis() - getConfigTime) + "]");
// 存证计费校验接口
Map<String, Object> mapCharging = storeChargingService.checkStoreCharging(StringUtils.isBlank(evidenceSn), applicationInfo, appService, evidenceSaveService.getBaseSpace(), getSize(fileSize));
if ((int) mapCharging.get("retCode") == 0) {
// result.put("status", -4);
if (mapCharging.get("retMsg") != null)
result.put("message", mapCharging.get("retMsg"));
else
result.put("message", "服务计费失败");
// return result;
}
// 证据包申请
String hashvalue = HMACSHA1.getDigest(hashAlg, evidencePackage);
// 1.验签之后返回
long verifySignTime = System.currentTimeMillis();
List<String> certs = verifySign(result, applicationInfo, evidenceSaveService, hashvalue, signedBase64, realNameAuthentication, 1);
log.error("verifySignTime time is [" + (System.currentTimeMillis() - verifySignTime) + "]");
Date dateVp = (Date) result.get("dateVp");
Date dateVc = (Date) result.get("dateVc");
result.remove("dateVp");
result.remove("dateVc");
if (null != certs) {
String genSn = null;
if (StringUtils.isEmpty(evidenceSn)) {
// 生成证据编码
genSn = UniqueIDUtils.genAppServiceUID(applicationInfo, appService.getAppServiceName(), sqlSession, 3);
}
// 存证处理核心方法
long saveBodyTime = System.currentTimeMillis();
result = saveContractService.saveBody(result, applicationInfo, appService, evidenceSaveService, date, evidenceSn, genSn, signedBase64, evidencePackage, hashAlg, hashvalue, dateVp, dateVc, certs, realNameAuthentication, realNameAuthenticationTime, realNameAuthenticationOss, mapCharging);
log.error("saveBodyTime time is [" + (System.currentTimeMillis() - saveBodyTime) + "]");
if ((int) result.get("status") == 1) {
result.put("message", "申请存证成功,请稍后通过查询存证接口查看存证结果!");
if (StringUtils.isNotEmpty(evidenceSn))
result.put("evidenceSn", evidenceSn);
else
result.put("evidenceSn", genSn);
}
} else {
result.put("status", -8);
result.put("message", "验证证书失败");
}
log.error("saveContract time is " + (System.currentTimeMillis() - startTime));
return result;
} catch (Exception e) {
e.printStackTrace();
if (e instanceof IllegalStateException) {
result.put("status", -100);
result.put("message", "当前系统忙,请稍后再尝试!");
return result;
}
StackTraceElement stackTraceElement = e.getStackTrace()[e.getStackTrace().length - 2];
String info = stackTraceElement.getClassName() + stackTraceElement.getLineNumber() + e.toString();
LogUtil.evidencelog(sqlSession, null, "存证接口", "申请存证失败,失败原因:" + info);
result = new HashMap<String, Object>();
result.put("status", -5);
result.put("message", "系统服务错误,请联系管理员");
return result;
} finally {
if (realNameAuthentication != null) {
realNameAuthentication = null;
}
if (realNameAuthenticationOss != null) {
realNameAuthenticationOss = null;
}
if (realNameAuthenticationTime != null) {
realNameAuthenticationTime = null;
}
}
}
use of com.itrus.portal.db.AppService in project portal by ixinportal.
the class MobileAppserviceChargingController method show.
// 根据应用id,查询应用下的所有计费规则信息
@RequestMapping(value = "/show/{id}")
public String show(@PathVariable("id") Long id, Model uiModel, HttpServletRequest request) {
ApplicationInfo applicationInfo = sqlSession.selectOne("com.itrus.portal.db.ApplicationInfoMapper.selectByPrimaryKey", id);
uiModel.addAttribute("applicationInfo", applicationInfo);
// 系统配置的实名认证服务集合
// List<AppService> appServices = new ArrayList<AppService>();
// AppServiceExample appServiceExample = new AppServiceExample();
// AppServiceExample.Criteria criteria = appServiceExample.or();
// criteria.andTypeEqualTo(ComNames.SERVICE_TYPE_CERTIFICATION);
// appServices = sqlSession.selectList(
// "com.itrus.portal.db.AppServiceMapper.selectByExample", appServiceExample);
// uiModel.addAttribute("appServices", appServices);
List<MobileAppserviceCharging> appserviceChargings = new ArrayList<MobileAppserviceCharging>();
appserviceChargings = appserviceChargingService.selectList(id);
AppserviceChargingWrap appserviceChargingWrap = new AppserviceChargingWrap();
List<AppserviceChargingList> appserviceChargingLists = new ArrayList<AppserviceChargingList>();
for (int i = 0; i < appserviceChargings.size(); i++) {
AppserviceChargingList appserviceChargingList = new AppserviceChargingList();
List<MobileAppserviceName> serviceNames = new ArrayList<MobileAppserviceName>();
serviceNames = appserviceNameService.selectListByAppserviceCharging(appserviceChargings.get(i));
List<AppserviceNameList> serviceNameLists = new ArrayList<AppserviceNameList>();
for (int j = 0; j < serviceNames.size(); j++) {
List<MobileChargingPrice> chargingPrices = chargingPriceService.selectListByOneAppserviceName(serviceNames.get(j));
AppserviceNameList appserviceNameList = new AppserviceNameList();
ChargingPriceList chargingPriceList = new ChargingPriceList();
// 1
chargingPriceList.setChargingPriceLists(chargingPrices);
// 2
appserviceNameList.setAppserviceName(serviceNames.get(j));
appserviceNameList.setChargingPriceList(chargingPriceList);
serviceNameLists.add(appserviceNameList);
}
appserviceChargingList.setAppserviceCharging(appserviceChargings.get(i));
appserviceChargingList.setAppserviceNameLists(serviceNameLists);
appserviceChargingLists.add(appserviceChargingList);
}
appserviceChargingWrap.setAppserviceChargingLists(appserviceChargingLists);
System.out.println(appserviceChargingWrap);
uiModel.addAttribute("acw", appserviceChargingWrap);
Map<Long, AppService> appServiceMap = sqlSession.selectMap("com.itrus.portal.db.AppServiceMapper.selectByExample", null, "id");
uiModel.addAttribute("appServiceMap", appServiceMap);
// 返回页面上的表单数据
returnParam(request, uiModel);
return "appservicecharging/show";
}
Aggregations