/******************************************************************************
* 文件名称: InvokeHelper.cs
* 文件说明: 调用助手,调用方法的封装
* 当前版本: V1.0
* 创建日期: 2022-04-12
*
* 2020-04-12: 增加 businessDLLInvoke 方法
* 2020-04-12: 增加 writeLog 方法
* 2020-04-14: 增加 businessDLLInvoke(重载) 方法
* 2020-04-14: 增加 irisServiceInvoke 方法
******************************************************************************/
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using PTMedicalInsurance.Helper;
using Newtonsoft.Json;
using PTMedicalInsurance.Common;
using PTMedicalInsurance.Variables;
using System.Runtime.InteropServices;
using AnHuiMI.Forms;
using AnHuiMI.Common;
using static System.Net.WebRequestMethods;
using File = System.IO.File;
namespace PTMedicalInsurance.Helper
{
public class InvokeHelper
{
private string serviceURL;
private string authorization;
ComputerInfo comp = new ComputerInfo();
///
/// 初始化函数
///
///
///
///
///
///
///
[DllImport("CHSInterface.dll", EntryPoint = "Init", CharSet = CharSet.Ansi, ExactSpelling = false, CallingConvention = CallingConvention.StdCall)] //, ExactSpelling = false, CallingConvention = CallingConvention.StdCall
static extern int Init(string fixmedins_code, string infosyscode, string infosyssign, string url, StringBuilder pErrMsg);
///
/// 文件下载函数
///
///
///
///
///
///
///
///
[DllImport("CHSInterface.dll", EntryPoint = "DownloadFile", CharSet = CharSet.Ansi, ExactSpelling = false, CallingConvention = CallingConvention.StdCall)] //, ExactSpelling = false, CallingConvention = CallingConvention.StdCall
static extern int DownloadFile(string fixmedins_code, string infosyscode, string infosyssign, string inputData, StringBuilder outputData, StringBuilder pErrMsg);
///
/// 文件上传函数
///
///
///
///
///
///
///
///
[DllImport("CHSInterface.dll", EntryPoint = "UploadFile", CharSet = CharSet.Ansi, ExactSpelling = false, CallingConvention = CallingConvention.StdCall)] //, ExactSpelling = false, CallingConvention = CallingConvention.StdCall
static extern int UploadFile(string fixmedins_code, string infosyscode, string infosyssign, string fileName,string inputData, StringBuilder outputData, StringBuilder pErrMsg);
///
/// 通用业务函数
///
///
///
///
///
///
///
///
[DllImport("CHSInterface.dll", EntryPoint = "BusinessHandle", CharSet = CharSet.Ansi, ExactSpelling = false, CallingConvention = CallingConvention.StdCall)] //, ExactSpelling = false, CallingConvention = CallingConvention.StdCall
static extern int BusinessHandle(string fixmedins_code, string infosyscode, string infosyssign, string inputData, StringBuilder outputData, StringBuilder errmsg);
///
/// 通用业务函数
///
///
///
///
///
///
///
///
[DllImport("CHSInterface.dll", EntryPoint = "BusinessHandleW", CharSet = CharSet.Unicode, ExactSpelling = false, CallingConvention = CallingConvention.StdCall)] //, ExactSpelling = false, CallingConvention = CallingConvention.StdCall
static extern int BusinessHandleW(StringBuilder fixmedins_code, StringBuilder infosyscode, StringBuilder infosyssign, StringBuilder inputData, StringBuilder outputData, StringBuilder errmsg);
public InvokeHelper()
{
LoadCenterURL(false);
}
private void LoadCenterURL(bool reload)
{
IniFile ini = new IniFile(Global.curEvt.path + @"\CenterServiceURL.ini");
Global.inf.uploadURL = tools.getDestPosStrBySpliter(Global.inf.centerURL2, 1);
Global.inf.downURL = tools.getDestPosStrBySpliter(Global.inf.centerURL2, 2);
Global.inf.ecURL = tools.getDestPosStrBySpliter(Global.inf.centerURL2, 3);
if (reload)
{
Global.inf.mobilePayURL = ini.ReadValue("CENTER", "mobilePay");
Global.inf.ecPrescURL = ini.ReadValue("CENTER", "prescription");
// 移动支付
if (string.IsNullOrEmpty(Global.inf.mobilePayURL))
{
Global.inf.mobilePayURL = "http://10.66.159.55:7080";
}
// 电子处方
if (string.IsNullOrEmpty(Global.inf.ecPrescURL))
{
Global.inf.ecPrescURL = "http://10.123.185.12:8080/epc/api";
}
}
}
///
/// iris服务调用的封装
///
///
///
public JObject invokeIrisService(string data, string serviceDesc)
{
string rtn = "", url = "";
JObject joRtn = new JObject();
try
{
//先根据用户请求的uri构造请求地址
url = serviceURL;
ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };
ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls;
//创建Web访问对象
HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(url);
//把用户传过来的数据转成“UTF-8”的字节流
byte[] buf = System.Text.Encoding.GetEncoding("UTF-8").GetBytes(data);
//添加头部信息
myRequest.Method = "POST";
myRequest.ContentLength = buf.Length;
myRequest.ContentType = "application/json";
myRequest.Headers.Add("Authorization", authorization);
myRequest.MaximumAutomaticRedirections = 1;
myRequest.AllowAutoRedirect = true;
//发送请求
Stream stream = myRequest.GetRequestStream();
stream.Write(buf, 0, buf.Length);
stream.Close();
//获取接口返回值
//通过Web访问对象获取响应内容
HttpWebResponse myResponse = (HttpWebResponse)myRequest.GetResponse();
rtn = getResponseData(myResponse);
joRtn = JObject.Parse(rtn);
return joRtn;
}
catch (Exception ex)
{
joRtn = JsonHelper.setExceptionJson(-1, serviceDesc, ex.Message);
rtn = JsonConvert.SerializeObject(joRtn);
return joRtn;
}
}
///
/// HIS服务调用的封装
///
///
///
///
public JObject invokeHISService(string data, string serviceDesc)
{
JObject joRtn = new JObject();
try
{
//先根据用户请求的uri构造请求地址
serviceURL = string.Format("{0}/{1}", Global.hisConfig.ip, Global.hisConfig.url);
authorization = Global.hisConfig.authorization;
joRtn = invokeIrisService(data, serviceDesc);
return joRtn;
}
catch (Exception ex)
{
joRtn = JsonHelper.setExceptionJson(-1, serviceDesc, ex.Message);
return joRtn;
}
finally
{
Global.writeLog_Iris(serviceDesc + "(" + serviceURL + ")" + "Authorization:" + (authorization), JsonHelper.Compress(data), JsonHelper.Compress(joRtn));
}
}
///
/// 医保平台服务调用的封装
///
///
///
public JObject invokeInsuService(string data, string serviceDesc)
{
string rtn = "";
JObject joRtn = new JObject();
try
{
//先根据用户请求的uri构造请求地址
serviceURL = string.Format("{0}/{1}", Global.insuConfig.ip, Global.insuConfig.url);
authorization = Global.insuConfig.authorization;
joRtn = invokeIrisService(data, serviceDesc);
rtn = JsonConvert.SerializeObject(joRtn);
//if (serviceDesc == "插入签到信息")
//{
// MessageBox.Show("插入签到信息入参:" + data +"|返回值:"+ rtn.ToString()+"|"+ Global.insuConfig.url);
//}
return joRtn;
}
catch (Exception ex)
{
joRtn = JsonHelper.setExceptionJson(-1, serviceDesc, ex.Message);
rtn = JsonConvert.SerializeObject(joRtn);
return joRtn;
}
finally
{
Global.writeLog_Iris(serviceDesc + "(" + serviceURL + ")" + "Authorization:" + (authorization), JsonHelper.Compress(data), rtn);
}
}
///
/// 医保中心Post服务调用封装
///
///
///
private JObject invokeCenterService(string data)
{
string postContent = "";
JObject joRtn = new JObject();
try
{
//Global.writeLog(string.Format("调用中心{0}接口入参:{1}",data, Global.curEvt.URL));
//创建一个HTTP请求
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(Global.curEvt.URL);
//Post请求方式
request.Method = "POST";
//string nonce = Guid.NewGuid().ToString(); //非重复的随机字符串(十分钟内不能重复)
//string timestamp = TimeStamp.get13().ToString(); //当前时间戳(秒)
//string BusinessID = Global.inf.BusinessID; //服务商ID
//string InsuHosID = Global.inf.hospitalNO; //医疗机构ID
//string CreditID = Global.inf.CreditID; //服务商统一社会信用代码
//内容类型
request.ContentType = "application/json;charset=UTF-8";
//昆明增加头部信息
//string sTemp = timestamp + BusinessID + nonce;
//Sha256 加密生成的签名 signature = sha256(hsf_timestamp + infosyssign + hsf_nonce)
//string signature = Encrypt.SHA256EncryptStr(sTemp);
//request.Headers.Add("hsf_signature", signature);
//request.Headers.Add("hsf_timestamp", timestamp);
//request.Headers.Add("hsf_nonce", nonce);
//request.Headers.Add("fixmedins_code", InsuHosID);
//request.Headers.Add("infosyscode", CreditID);
//设置参数,并进行URL编码
string paraUrlCoded = data;//System.Web.HttpUtility.UrlEncode(jsonParas);
byte[] payload;
//将Json字符串转化为字节
payload = System.Text.Encoding.UTF8.GetBytes(paraUrlCoded);
//设置请求的ContentLength
request.ContentLength = payload.Length;
//发送请求,获得请求流
Stream writer;
writer = request.GetRequestStream();//获取用于写入请求数据的Stream对象
//将请求参数写入流
writer.Write(payload, 0, payload.Length);
writer.Close();//关闭请求流
// String strValue = "";//strValue为http响应所返回的字符流
HttpWebResponse response = null;
try
{
//获得响应流
response = (HttpWebResponse)request.GetResponse();
}
catch (WebException ex)
{
// return JsonHelper.setExceptionJson(-99, "centerServeiceInvok中获得响应流异常", ex.Message);
HttpWebResponse res = (HttpWebResponse)ex.Response;
Stream myResponseStream = res.GetResponseStream();
StreamReader myStreamReader = new StreamReader(myResponseStream, Encoding.UTF8);
string retString = myStreamReader.ReadToEnd();
return JsonHelper.setExceptionJson(-99, "获得响应流异常", retString);
}
postContent = getResponseData(response);
joRtn = JObject.Parse(postContent);//返回Json数据
if (joRtn.ContainsKey("body")) {
joRtn = (JObject)joRtn.GetValue("body");
}
return joRtn;
}
catch (Exception ex)
{
postContent = "调用中心服务异常" + ex.Message;
joRtn.Add("infcode", -1);
joRtn.Add("err_msg", "invokeCenterService(1):" + ex.Message);
return joRtn;
}
}
private string getResponseData(HttpWebResponse response) {
string data = "";
if (response != null)
{
Stream s = response.GetResponseStream();
StreamReader sRead = new StreamReader(s);
data = sRead.ReadToEnd();
sRead.Close();
response.Close();
}
return data;
}
///
/// 调用医保动态库文件下载函数 CM 20220925
///
///
///
///
///
///
///
/// 0或小于0
private int invokeDownloadFileByDLL(string fixmedins_code, string infosyscode, string infosyssign, string inputData, ref string outputData, ref string pErrMsg)
{
pErrMsg = "";
outputData = "";
try
{
StringBuilder errmsgSb = new StringBuilder(4096);
StringBuilder outSb = new StringBuilder(40960);
int pRtn = DownloadFile(fixmedins_code, infosyscode, infosyssign, inputData, outSb, errmsgSb);
if (pRtn < 0)
{
pErrMsg = errmsgSb.ToString();
return -1;
}
else
{
outputData = outSb.ToString();
}
return pRtn;
}
catch (Exception ex)
{
pErrMsg = "invokeInitByDLL.DownloadFile 异常:" + ex.Message;
return -1;
}
finally
{
Global.writeLog("invokeInitByDLL.DownloadFile 医保动态库文件下载函数", inputData, outputData);
}
}
///
/// 这个是调用业务服务的invokeCenterService
///
///
///
///
public JObject invokeCenterService(string funNO, JObject data)
{
JObject joRtn = new JObject();
string outPar = "";
try
{
// 动态调试模式
if (Global.curEvt.enabledDebug)
{
CenterResult center = new CenterResult();
center.setTradeNo(funNO);
if (center.ShowDialog() == DialogResult.OK)
{
outPar = center.returnData;
return JObject.Parse(outPar);
}
}
setCenterURL(funNO);
joRtn = invokeCenterService(data.ToString());
outPar = JsonHelper.Compress(joRtn);
return joRtn;
}
catch (Exception ex)
{
if (joRtn["infcode"] == null)
{ joRtn.Add("infcode", -1); }
if (joRtn["err_msg"] == null)
{ joRtn.Add("err_msg", "invokeCenterService(2):" + ex.Message); }
outPar = JsonHelper.Compress(joRtn);
return joRtn;
}
finally
{
Global.writeLog(funNO + "(" + Global.curEvt.URL + ")", JsonHelper.Compress(data), joRtn.ToString());
this.saveCenterLog(JsonHelper.Compress(data), joRtn.ToString(), JsonHelper.Compress(data), joRtn.ToString());
}
}
private void setCenterURL(string funNo)
{
string prefix = Global.inf.centerURL;
// 环境
LoadCenterURL(true);
switch (funNo)
{
//case "4101A":
case "3101":
case "3102":
prefix = "http://10.66.155.173:8086/1.0.0/hsa-fsi-";
break;
case "10001":
prefix = "http://10.67.187.46:8000/v1/pb/op/opRiskTips";
break;
default:
prefix = Global.inf.centerURL;
break;
}
//移动支付
if (funNo.StartsWith("62") || funNo.StartsWith("63") || funNo.StartsWith("64"))
{
prefix = Global.inf.mobilePayURL; //测试
}
Global.curEvt.URL = prefix + funNo;
}
///
/// 这个是下载目录用的invokeCenterService
///
///
///
///
public JObject invokeCenterService(string funNO, string data)
{
JObject joRtn = new JObject();
try
{
// 动态调试模式
if (Global.curEvt.enabledDebug)
{
CenterResult center = new CenterResult();
center.setTradeNo(funNO);
if (center.ShowDialog() == DialogResult.OK)
{
string outPar = center.returnData;
return JObject.Parse(outPar);
}
}
setCenterURL(funNO);
joRtn = invokeCenterService(data);
return joRtn;
}
catch (Exception ex)
{
if (joRtn["infcode"] == null)
{ joRtn.Add("infcode", -1); }
if (joRtn["err_msg"] == null)
{ joRtn.Add("err_msg", "invokeCenterService(3):" + ex.Message); }
return joRtn;
}
finally
{
Global.writeLog(funNO + "(" + Global.curEvt.URL + ")", JsonHelper.Compress(data), joRtn.ToString());
this.saveCenterLog(JsonHelper.Compress(data), joRtn.ToString(), JsonHelper.Compress(data), joRtn.ToString());
}
}
///
/// 这个是下载目录用的invokeCenterService
///
///
///
///
public JObject invokeCenterServiceF(string funNO, string data)
{
JObject joRtn = new JObject();
try
{
// 动态调试模式
if (Global.curEvt.enabledDebug)
{
CenterResult center = new CenterResult();
center.setTradeNo(funNO);
if (center.ShowDialog() == DialogResult.OK)
{
string outPar = center.returnData;
return JObject.Parse(outPar);
}
}
Global.curEvt.URL = comp.getFunNoInsuURL(funNO);
//setCenterURL(funNO);
joRtn = invokeCenterService(data);
return joRtn;
}
catch (Exception ex)
{
if (joRtn["infcode"] == null)
{ joRtn.Add("infcode", -1); }
if (joRtn["err_msg"] == null)
{ joRtn.Add("err_msg", "invokeCenterService(3):" + ex.Message); }
return joRtn;
}
finally
{
Global.writeLog(funNO + "(" + Global.curEvt.URL + ")", JsonHelper.Compress(data), joRtn.ToString());
this.saveCenterLog(JsonHelper.Compress(data), joRtn.ToString(), JsonHelper.Compress(data), joRtn.ToString());
}
}
///
/// 移动
///
///
///
///
///
public JObject invokeMPService(string funNO, string data)
{
return invokeMPService(funNO,JObject.Parse(data));
}
public JObject invokeMPService(string funNO, JObject joInput)
{
JObject joRtn = new JObject();
String outPar = "";
try
{
LoadCenterURL(true);
string url = "";
switch (funNO)
{
case "6201":
url = "/org/local/api/hos/uldFeeInfo";
break;
case "6202":
url = "/org/local/api/hos/pay_order";
break;
case "6203":
url = "/org/local/api/hos/refund_Order";
break;
case "6301":
url = "/org/local/api/hos/query_order_info";
break;
case "6401":
url = "/org/local/api/hos/revoke_order";
break;
default:
break;
}
EncryptHelper encrypt = new EncryptHelper();
string data = JsonHelper.setMPCenterInpar(funNO, joInput);
// 移动支付地址
Global.curEvt.URL = Global.inf.mobilePayURL + url;
// 动态调试模式
if (Global.curEvt.enabledDebug)
{
CenterResult center = new CenterResult();
center.setTradeNo(funNO);
if (center.ShowDialog() == DialogResult.OK)
{
outPar = center.returnData;
return JObject.Parse(outPar);
}
}
try
{
joRtn = invokeCenterService(data);
Global.writeLog(funNO + "【密文出参】:\r\n" + joRtn.ToString());
string encData = JsonHelper.getDestValue(joRtn, "encData");
string signData = JsonHelper.getDestValue(joRtn, "signData");
if (!string.IsNullOrEmpty(encData) && !string.IsNullOrEmpty(signData))
{
joRtn.Remove("encData");
joRtn.Remove("signData");
joRtn.Remove("data");
//解密
string decData = encrypt.decrypt(encData);
// 验签
JsonConvert.DefaultSettings = () => new JsonSerializerSettings
{
FloatParseHandling = FloatParseHandling.Decimal
};
joRtn.Add("data", JToken.FromObject(JsonConvert.DeserializeObject(decData)));
bool rtn = encrypt.verify(joRtn, signData);
if (rtn)
{
Global.writeLog("验签通过!");
}
else
{
Global.writeLog("验签失败,请核查!");
}
if (!string.IsNullOrEmpty(decData))
{
Global.writeLog(funNO + "【明文出参】:\r\n" + decData);
joRtn = JObject.Parse(decData);
joRtn.Add("success", "True");
}
}
return joRtn;
}
finally
{
this.saveCenterLog(JsonHelper.Compress(data), joRtn.ToString(), JsonHelper.Compress(data), joRtn.ToString());
}
}
catch (Exception ex)
{
if (joRtn["infcode"] == null)
{ joRtn.Add("infcode", -1); }
if (joRtn["err_msg"] == null)
{ joRtn.Add("err_msg", "invokeCenterService(3):" + ex.Message); }
outPar = JsonHelper.Compress(joRtn);
return joRtn;
}
finally
{
Global.writeLog(funNO + "(" + Global.curEvt.URL + ")", joInput.ToString(), joRtn.ToString());
this.saveCenterLog(joInput.ToString(), joRtn.ToString(), joInput.ToString(), joRtn.ToString());
}
}
///
/// 设置医保动态库目录
///
///
///
///
private void invokeSetDirByOCX(ref string pErrMsg)
{
try
{
//chsinterfaceyn.chsdllClass InterfaceBase_Yn = new chsinterfaceyn.chsdllClass();
//InterfaceBase_Yn.SetDir(IntPath);
}
catch (Exception ex)
{
pErrMsg = "invokeInitByDLL.SetDir 异常:" + ex.Message;
MessageBox.Show(pErrMsg);
}
finally
{
//Global.writeLog("invokeInitByDLL.SetDir设置医保动态库目录(" + IntPath + ")", "", pErrMsg);
}
}
///
/// 医保电子处方流转调用服务
///
///
///
private JObject invokeCenterServicePresCir(string data)
{
string postContent = "";
JObject joRtn = new JObject();
try
{
Global.writeLog(string.Format("调用中心{0}接口入参:{1}", data, Global.curEvt.URL));
//创建一个HTTP请求
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(Global.curEvt.URL);
//Post请求方式
request.Method = "POST";
//string nonce = Guid.NewGuid().ToString(); //非重复的随机字符串(十分钟内不能重复)
//string timestamp = TimeStamp.get13().ToString(); //当前时间戳(秒)
//string BusinessID = Global.inf.BusinessID; //服务商ID
//string InsuHosID = Global.inf.hospitalNO; //医疗机构ID
//string CreditID = Global.inf.CreditID; //服务商统一社会信用代码
//内容类型
request.ContentType = "application/json;charset=UTF-8";
//昆明增加头部信息
//string sTemp = timestamp + BusinessID + nonce;
//Sha256 加密生成的签名 signature = sha256(hsf_timestamp + infosyssign + hsf_nonce)
//string signature = Encrypt.SHA256EncryptStr(sTemp);
//request.Headers.Add("hsf_signature", signature);
//request.Headers.Add("hsf_timestamp", timestamp);
//request.Headers.Add("hsf_nonce", nonce);
//request.Headers.Add("fixmedins_code", InsuHosID);
//request.Headers.Add("infosyscode", CreditID);
//设置参数,并进行URL编码
string paraUrlCoded = data;//System.Web.HttpUtility.UrlEncode(jsonParas);
byte[] payload;
//将Json字符串转化为字节
payload = System.Text.Encoding.UTF8.GetBytes(paraUrlCoded);
//设置请求的ContentLength
request.ContentLength = payload.Length;
//发送请求,获得请求流
Stream writer;
writer = request.GetRequestStream();//获取用于写入请求数据的Stream对象
//将请求参数写入流
writer.Write(payload, 0, payload.Length);
writer.Close();//关闭请求流
// String strValue = "";//strValue为http响应所返回的字符流
HttpWebResponse response = null;
try
{
//获得响应流
response = (HttpWebResponse)request.GetResponse();
}
catch (WebException ex)
{
// return JsonHelper.setExceptionJson(-99, "centerServeiceInvok中获得响应流异常", ex.Message);
HttpWebResponse res = (HttpWebResponse)ex.Response;
Stream myResponseStream = res.GetResponseStream();
StreamReader myStreamReader = new StreamReader(myResponseStream, Encoding.UTF8);
string retString = myStreamReader.ReadToEnd();
return JsonHelper.setExceptionJson(-99, "获得响应流异常", retString);
}
postContent = getResponseData(response);
joRtn = JObject.Parse(postContent);//返回Json数据
if (joRtn.ContainsKey("body"))
{
joRtn = (JObject)joRtn.GetValue("body");
}
return joRtn;
}
catch (Exception ex)
{
postContent = "调用中心服务异常" + ex.Message;
joRtn.Add("infcode", -1);
joRtn.Add("err_msg", "invokeCenterService(1):" + ex.Message);
return joRtn;
}
}
///
/// 医保电子处方调用中心接口
///
///
///
///
public JObject invokeCenterServicePresCir(string funNO, string data)
{
JObject joRtn = new JObject();
string outPar = "";
try
{
if (funNO == "7101")
{
Global.curEvt.URL = Global.inf.presCenterURL + "/fixmedins/uploadChk";
}
else if (funNO == "7102")
{
Global.curEvt.URL = Global.inf.presCenterURL + "/fixmedins/rxFixmedinsSign";
}
else if (funNO == "7103")
{
Global.curEvt.URL = Global.inf.presCenterURL + "/fixmedins/rxFileUpld";
}
else if (funNO == "7104")
{
Global.curEvt.URL = Global.inf.presCenterURL + "/fixmedins/rxUndo";
}
else if (funNO == "7105")
{
Global.curEvt.URL = Global.inf.presCenterURL + "/fixmedins/hospRxDetlQuery";
}
else if (funNO == "7106")
{
Global.curEvt.URL = Global.inf.presCenterURL + "/fixmedins/rxChkInfoQuery";
}
else if (funNO == "7107")
{
Global.curEvt.URL = Global.inf.presCenterURL + "/fixmedins/rxSetlInfoQuery";
}
else if (funNO == "7108")
{
Global.curEvt.URL = Global.inf.presCenterURL + "/fixmedins/rxChkInfoCallback";
}
else if (funNO == "7109")
{
Global.curEvt.URL = Global.inf.presCenterURL + "/fixmedins/rxSetlInfoCallback";
}
else
{
Global.curEvt.URL = Global.inf.centerURL;
}
//Global.curEvt.URL = Global.inf.centerURL;
joRtn = invokeCenterServicePresCir(data);
outPar = JsonHelper.Compress(joRtn);
return joRtn;
}
catch (Exception ex)
{
if (joRtn["infcode"] == null)
{ joRtn.Add("infcode", -1); }
if (joRtn["err_msg"] == null)
{ joRtn.Add("err_msg", "invokeCenterServicePresCir(3):" + ex.Message); }
outPar = JsonHelper.Compress(joRtn);
return joRtn;
}
finally
{
Global.writeLog(funNO + "(" + Global.curEvt.URL + ")", JsonHelper.Compress(data), joRtn.ToString());
//this.saveCenterLog(JsonHelper.Compress(data), outPar, JsonHelper.Compress(data), outPar);
}
}
///
/// 医保目录txt文件下载
///
///
///
public JObject DownloadCenterFile(string data)
{
string error = string.Empty; int errorCode = 0;
string sRtn = "";
try
{
JObject jsonInParam = JObject.Parse(data);
// 去除外wrapper层便于通用
Utils.removeWrapper(jsonInParam);
string fileName = (string)jsonInParam["input"]["fsDownloadIn"]["filename"];
string filePath = Global.curEvt.path + "\\Download\\" + fileName;
//如果不存在目录,则创建目录
if (!Directory.Exists(Global.curEvt.path + "\\Download"))
{
//创建文件夹
DirectoryInfo dirInfo = Directory.CreateDirectory(Global.curEvt.path + "\\Download");
}
if (File.Exists(filePath))
{
File.Delete(filePath);
}
FileStream fs = new FileStream(filePath, FileMode.Append, FileAccess.Write, FileShare.ReadWrite);
//创建一个HTTP请求
Global.curEvt.URL = Global.inf.downURL;
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(Global.curEvt.URL);
//Post请求方式
request.Method = "POST";
//string timestamp = TimeStamp.get13().ToString(); //当前时间戳(秒)
//string nonce = Guid.NewGuid().ToString(); //非重复的随机字符串(十分钟内不能重复)
//string InsuHosID = Global.inf.hospitalNO; //医疗机构ID
//string CreditID = Global.inf.CreditID; //服务商统一社会信用代码
//string BusinessID = Global.inf.BusinessID; //服务商ID
//内容类型
request.ContentType = "application/json";
//昆明增加头部信息
//string sTemp = timestamp + BusinessID + nonce;
//Sha256 加密生成的签名 signature = sha256(hsf_timestamp + infosyssign + hsf_nonce)
//string signature = Encrypt.SHA256EncryptStr(sTemp);
//request.Headers.Add("hsf_signature", signature);
//request.Headers.Add("hsf_timestamp", timestamp);
//request.Headers.Add("hsf_nonce", nonce);
//request.Headers.Add("fixmedins_code", InsuHosID);
//request.Headers.Add("infosyscode", CreditID);
//设置参数,并进行URL编码
string paraUrlCoded = JsonHelper.toJsonString(jsonInParam);
byte[] payload;
//将Json字符串转化为字节
payload = System.Text.Encoding.UTF8.GetBytes(paraUrlCoded);
//设置请求的ContentLength
request.ContentLength = payload.Length;
Stream writer;
try
{
writer = request.GetRequestStream();//获取用于写入请求数据的Stream对象
}
catch (Exception)
{
writer = null;
errorCode = -100;
error = "连接服务器失败!";
}
//将请求参数写入流
writer.Write(payload, 0, payload.Length);
writer.Close();//关闭请求流
// String strValue = "";//strValue为http响应所返回的字符流
//发送请求并获取相应回应数据
HttpWebResponse response = request.GetResponse() as HttpWebResponse;
//直到request.GetResponse()程序才开始向目标网页发送Post请求
Stream responseStream = response.GetResponseStream();
//创建本地文件写入流
byte[] bArr = new byte[1024];
int iTotalSize = 0;
int size = responseStream.Read(bArr, 0, (int)bArr.Length);
while (size > 0)
{
iTotalSize += size;
fs.Write(bArr, 0, size);
size = responseStream.Read(bArr, 0, (int)bArr.Length);
}
fs.Close();
responseStream.Close();
dynamic joReturn = new JObject();
joReturn.errorCode = errorCode;
joReturn.errorMessage = error;
joReturn.filePath = filePath;
sRtn = joReturn.ToString();
return joReturn;
}
catch (Exception ex)
{
errorCode = -100;
error = ex.Message;
dynamic joReturn = new JObject();
joReturn.errorCode = errorCode;
joReturn.errorMessage = error;
sRtn = joReturn.ToString();
return joReturn;
}
finally
{
Global.writeLog("DownloadCenterFile" +"(" + Global.inf.downURL + ")", data, sRtn);
}
}
///
/// 调用医保动态库初始化 CM 20220925
///
///
///
///
///
///
/// 0或小于0
private int invokeInitByOCX(string fixmedins_code, string infosyscode, string infosyssign, string url, ref string pErrMsg)
{
//pErrMsg = "";
JObject joRtn = new JObject();
try
{
//chsinterfaceyn.chsdllClass InterfaceBase_Yn = new chsinterfaceyn.chsdllClass();
//string pRtn = InterfaceBase_Yn.Init(fixmedins_code, infosyscode, infosyssign, url);
//joRtn = JObject.Parse(pRtn);
if (joRtn["infcode"].ToString() != "0")
{
pErrMsg = joRtn["err_msg"].ToString();
return -1;
}
else
{
return 0;
}
}
catch (Exception ex)
{
pErrMsg = "invokeInitByDLL.Init 异常:" + ex.Message;
return -1;
}
finally
{
Global.writeLog("invokeInitByDLL.Init医保动态库初始化(" + url + ")", "", pErrMsg);
}
}
///
/// 调用医保动态库通用业务函数 CM 20220925
///
///
///
///
///
///
///
/// 0或小于0
private int invokeBusiessByOCX(string fixmedins_code, string infosyscode, string infosyssign, string inputData, ref string outputData, ref string pErrMsg)
{
pErrMsg = "";
outputData = "";
JObject joRtn = new JObject();
try
{
try
{
//chsinterfaceyn.chsdllClass InterfaceBase_Yn1 = new chsinterfaceyn.chsdllClass();
//InterfaceBase_Yn1.SetDir(IntPath);
}
catch (Exception ex)
{
pErrMsg = "invokeInitByDLL.SetDir 异常:" + ex.Message;
MessageBox.Show(pErrMsg);
}
finally
{
//Global.writeLog("invokeInitByDLL.SetDir设置医保动态库目录(" + IntPath + ")", "", pErrMsg);
}
inputData = inputData.Replace("\n", "").Replace("\t", "").Replace("\r", "");
//chsinterfaceyn.chsdllClass InterfaceBase_Yn = new chsinterfaceyn.chsdllClass();
//调用业务函数
//string pRtn =InterfaceBase_Yn.BusinessHandleW(fixmedins_code, infosyscode, infosyssign, inputData);
//string pRtn = InterfaceBase_Yn.UploadFile(fixmedins_code, infosyscode, infosyssign, Global.inf.fileName,inputData);
//joRtn = JObject.Parse(pRtn);
if (joRtn["infcode"].ToString() != "0")
{
pErrMsg = joRtn["err_msg"].ToString();
//outputData = pRtn;
return -1;
}
else
{
//outputData = pRtn;
return 0;
}
}
catch (Exception ex)
{
pErrMsg = "invokeInitByDLL.BusinessHandle 异常:" + ex.Message;
return -1;
}
finally
{
Global.writeLog("invokeInitByDLL.BusinessHandle医保动态库通用业务函数", inputData, outputData);
}
}
///
/// 医保动态库下载目录文件
///
///
///
public JObject DownloadCenterFileByDll(string data)
{
string error = string.Empty; int errorCode = 0;
string sRtn = "";
try
{
JObject jsonInParam = JObject.Parse(data);
string fileName = (string)jsonInParam["input"]["fsDownloadIn"]["filename"];
string filePath = Global.curEvt.path + "\\Download\\" + fileName;
//如果不存在目录,则创建目录
if (!Directory.Exists(Global.curEvt.path + "\\Download"))
{
//创建文件夹
DirectoryInfo dirInfo = Directory.CreateDirectory(Global.curEvt.path + "\\Download");
}
if (File.Exists(filePath))
{
File.Delete(filePath);
}
FileStream fs = new FileStream(filePath, FileMode.Append, FileAccess.Write, FileShare.ReadWrite);
//创建一个HTTP请求
Global.curEvt.URL = Global.inf.centerURL;
int iRes = invokeDownloadFileByDLL(Global.inf.hospitalNO, Global.inf.CreditID, Global.inf.BusinessID, data.ToString(),ref sRtn, ref error);
if (iRes == 0)
{
dynamic joReturn = new JObject();
joReturn.errorCode = errorCode;
joReturn.errorMessage = error;
joReturn.filePath = filePath;
sRtn = joReturn.ToString();
return joReturn;
}
else
{
errorCode = -100;
dynamic joReturn = new JObject();
joReturn.errorCode = errorCode;
joReturn.errorMessage = error;
sRtn = joReturn.ToString();
return joReturn;
}
}
catch (Exception ex)
{
errorCode = -100;
error = ex.Message;
dynamic joReturn = new JObject();
joReturn.errorCode = errorCode;
joReturn.errorMessage = error;
sRtn = joReturn.ToString();
return joReturn;
}
finally
{
Global.writeLog("DownloadCenterFile" + "(" + Global.curEvt.URL + ")", data, sRtn);
}
}
///
/// 保存中心交易日志到数据库
///
///
///
///
///
private void saveCenterLog(string inParam, string outParam, string inParamPlain, string outParamPlain)
{
dynamic joIris = new JObject();
string sRtn = "";
try
{
//解析postContent,插入医保交易日志表
JObject joInParam = new JObject(JObject.Parse(inParam));
//解包
JObject joIn = Utils.removeWrapper(joInParam);
JObject joOut = new JObject(JObject.Parse(outParam));
JObject joInPlain = new JObject(JObject.Parse(inParamPlain));
JObject joOutPlain = new JObject(JObject.Parse(outParamPlain));
JArray jaParams = new JArray();
JObject joParam = new JObject();
joParam.Add("inParam", JObject.FromObject(joIn));
joParam.Add("outParam", JObject.FromObject(joOut));
joParam.Add("inParamPlain", JObject.FromObject(joInPlain));
joParam.Add("outParamPlain", JObject.FromObject(joOutPlain));
joParam.Add("HospitalDr", Global.inf.hospitalDr);
joParam.Add("InterfaceDr", Global.inf.interfaceDr);
joParam.Add("updateUserID", Global.user.ID);
joParam.Add("psn_no", Global.pat.psn_no);
jaParams.Add(joParam);
joIris.code = "09010021";
joIris.Add("params", jaParams);
//InvokeHelper invoker = new InvokeHelper();
sRtn = invokeInsuService(joIris.ToString(), "保存日志到数据库").ToString();
}
catch (Exception ex)
{
sRtn = JsonHelper.setExceptionJson(-100, "保存日志异常", ex.Message).ToString();
Global.writeLog_Iris("保存日志异常:" + sRtn.ToString());
}
}
/**********************************************************调用DLL方式**************************************************************/
public int InvokeInitByDLL(ref string pErrMsg)
{
//string pErrMsg = "";
int pRtn =-1;
JObject joRtn = new JObject();
try
{
StringBuilder outSb = new StringBuilder(40960);
pRtn = Init(Global.inf.hospitalNO, Global.inf.CreditID, Global.inf.BusinessID, Global.inf.centerURL, outSb);
if (pRtn != 0)
{
pErrMsg = outSb.ToString();
return -1;
}
else
{
return 0;
}
}
catch (Exception ex)
{
pErrMsg = "invokeInitByDLL.Init 异常:" + ex.Message;
return -1;
}
finally
{
Global.writeLog("InvokeInitByDLL(" + Global.inf.centerURL + ")", Global.inf.CreditID +":" + Global.inf.BusinessID,pRtn.ToString() + pErrMsg);
}
}
private int invokeBusiessByDLL(string inputData, ref string outputData, ref string pErrMsg)
{
pErrMsg = "";
outputData = "";
JObject joRtn = new JObject();
try
{
inputData = inputData.Replace("\n", "").Replace("\t", "").Replace("\r", "");
StringBuilder errmsgSb = new StringBuilder(4096);
StringBuilder outSb = new StringBuilder(40960);
//调用业务函数
int pRtn = BusinessHandle(Global.inf.hospitalNO, Global.inf.CreditID, Global.inf.BusinessID, inputData, outSb, errmsgSb);
if (pRtn != 0)
{
outputData = outSb.ToString();
pErrMsg = errmsgSb.ToString();
return -1;
}
else
{
outputData = outSb.ToString();
return 0;
}
}
catch (Exception ex)
{
pErrMsg = "invokeInitByDLL.BusinessHandle 异常:" + ex.Message;
return -1;
}
finally
{
Global.writeLog("CreditID11", Global.inf.CreditID, Global.inf.BusinessID);
Global.writeLog("invokeInitByDLL.BusinessHandle医保动态库通用业务函数", inputData, outputData);
}
}
private int invokeBusiessWByDLL(string inputData, ref string outputData, ref string pErrMsg)
{
pErrMsg = "";
outputData = "";
JObject joRtn = new JObject();
try
{
//inputData = inputData.Replace("\n", "").Replace("\t", "").Replace("\r", "");
StringBuilder errmsgSb = new StringBuilder(4096);
StringBuilder outSb = new StringBuilder(40960);
StringBuilder sbHospitalNO = new StringBuilder(Global.inf.hospitalNO);
StringBuilder sbCreditID = new StringBuilder(Global.inf.CreditID);
StringBuilder sbBusinessID = new StringBuilder(Global.inf.BusinessID);
StringBuilder sbInput = new StringBuilder(inputData);
//调用业务函数
int pRtn = BusinessHandleW(sbHospitalNO, sbCreditID, sbBusinessID, sbInput, outSb, errmsgSb);
if (pRtn != 0)
{
outputData = outSb.ToString();
pErrMsg = errmsgSb.ToString();
return -1;
}
else
{
outputData = outSb.ToString();
return 0;
}
}
catch (Exception ex)
{
pErrMsg = "invokeInitByDLL.BusinessHandle 异常:" + ex.Message;
return -1;
}
finally
{
Global.writeLog("CreditID12", Global.inf.CreditID, Global.inf.BusinessID);
Global.writeLog("invokeInitByDLL.BusinessHandleW医保动态库通用业务函数", inputData, outputData);
}
}
private int invokeUploadFileByDLL(string inputData, ref string outputData, ref string pErrMsg)
{
pErrMsg = "";
outputData = "";
JObject joRtn = new JObject();
try
{
inputData = inputData.Replace("\n", "").Replace("\t", "").Replace("\r", "");
StringBuilder errmsgSb = new StringBuilder(4096);
StringBuilder outSb = new StringBuilder(40960);
//调用业务函数
int pRtn = UploadFile(Global.inf.hospitalNO, Global.inf.CreditID, Global.inf.BusinessID, Global.inf.fileName,inputData, outSb, errmsgSb);
if (pRtn != 0)
{
outputData = outSb.ToString();
pErrMsg = errmsgSb.ToString();
return -1;
}
else
{
outputData = outSb.ToString();
return 0;
}
}
catch (Exception ex)
{
pErrMsg = "invokeUploadFileByDLL.UploadFile 异常:" + ex.Message;
return -1;
}
finally
{
Global.writeLog("invokeUploadFileByDLL.UploadFile医保动态库上传业务函数", inputData, outputData);
}
}
}
}