123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Data;
- using System.Threading;
- using Library;
- using LitJson;
- using System.Net;
- using System.IO;
- using MySystem.SpModels;
- namespace MySystem
- {
- /// <summary>
- /// 获取好哒ftp数据
- /// </summary>
- public class GetHaoDaFTPInfoService
- {
- public readonly static GetHaoDaFTPInfoService Instance = new GetHaoDaFTPInfoService();
- private GetHaoDaFTPInfoService()
- { }
- // 47.108.253.46
- // 用户名:hdftp
- // 密:haodatradeftp2024
- // 目录:/haoda-trade
- public string ftpServerAddress = "ftp://47.108.253.46";
- public string ftpUser = "hdftp";
- public string ftpPassword = "haodatradeftp2024";
- public void Start()
- {
- //每天凌晨执行获取好哒FTP昨日交易数据
- Thread th2 = new Thread(GetDepositDataReady);
- th2.IsBackground = true;
- th2.Start();
- }
- /// <summary>
- /// 获取好哒FTP昨日交易数据
- /// </summary>
- public void GetDepositDataReady()
- {
- while (true)
- {
- // if (DateTime.Now.Hour > 10 && DateTime.Now.Hour < 22)
- // {
- // string check = function.ReadInstance("/GetFTPDepositYesterday/check" + DateTime.Now.AddDays(-1).ToString("yyyy-MM-dd") + ".txt");
- // if (string.IsNullOrEmpty(check))
- // {
- // function.WritePage("/GetFTPDepositYesterday/", "check" + DateTime.Now.AddDays(-1).ToString("yyyy-MM-dd") + ".txt", DateTime.Now.ToString());
- GetDepositData();
- Thread.Sleep(600000);
- // }
- // }
- // else
- // {
- // Thread.Sleep(1800000);
- // }
- }
- }
- public void GetDepositData()
- {
- // 要下载的文件路径
- string filePath = "/haoda-deposit/deposit_" + DateTime.Now.AddDays(-1).ToString("yyyyMMdd") + ".csv";
-
- try
- {
- // 创建FtpWebRequest对象
- FtpWebRequest request = (FtpWebRequest)WebRequest.Create(ftpServerAddress + filePath);
- request.Method = WebRequestMethods.Ftp.DownloadFile;
- request.Credentials = new NetworkCredential(ftpUser, ftpPassword);
- // 使用WebResponse获取响应
- FtpWebResponse response = (FtpWebResponse)request.GetResponse();
- // 打开数据流
- Stream responseStream = response.GetResponseStream();
- StreamReader reader = new StreamReader(responseStream);
- // 读取数据
- string fileContents = reader.ReadToEnd();
- if (!string.IsNullOrEmpty(fileContents))
- {
- WebCMSEntities db = new WebCMSEntities();
- var DataInfo = fileContents.TrimEnd('\n').Split('\n', 2);
- var DataList = DataInfo[1].Split('\n');
- foreach (var DataListItem in DataList)
- {
- var DataListInfo = DataListItem.Split(',');
- string SnNo = DataListInfo[0]; //sn
- string MerNo = DataListInfo[1]; //商户编号
- string ActDate = DataListInfo[2]; //激活时间
- string Deposit = DataListInfo[3]; //押金金额
- string PrizeAmt = DataListInfo[4]; //奖励金额
- string PrizeDate = DataListInfo[5]; //奖励发放时间
- string Name = DataListInfo[6]; //发放人姓名
- string PosKind = DataListInfo[7]; //机具型号
- string ActDateString = ActDate.Substring(0, 4) + "-" + ActDate.Substring(4, 2) + "-" + ActDate.Substring(6, 2);
- string PrizeDateString = PrizeDate.Substring(0, 4) + "-" + PrizeDate.Substring(4, 2) + "-" + PrizeDate.Substring(6, 2);
- string ProductType = "0";
- if(PosKind == "1") ProductType = "18";
- if(PosKind == "4G收款王M820") ProductType = "19";
- if(PosKind == "4G收款王M826") ProductType = "20";
- if(PosKind == "4") ProductType = "21";
- db.BindRecord.Add(new BindRecord()
- {
- CreateDate = DateTime.Now,
- UpdateTime = DateTime.Parse(ActDateString), //机具绑定、解绑时间
- CreateTime = DateTime.Parse(ActDateString), //商户操作时间
- MerSnNo = SnNo, //序列号
- MerNo = MerNo, //商户编号
- MerName = Name,
- SeoTitle = PrizeAmt,
- SeoKeyword = ActDateString,
- ProductType = ProductType,
- Field1 = Deposit,
- Field2 = PrizeDate,
- Status = 1,
- });
- db.Merchants.Add(new Merchants()
- {
- SnNo = SnNo,
- CreateTime = DateTime.Now,
- UpdateTime = DateTime.Parse(ActDateString),
- AgentName = Name,
- MerRealName = Name,
- MerNo = MerNo,
- MerName = Name,
- ProductType = ProductType,
- Status = 1,
- });
- db.SaveChanges();
- db.ActivateRecord.Add(new ActivateRecord()
- {
- SnNo = SnNo,
- CreateDate = DateTime.Now,
- SeoTitle = Deposit,
- ActivateDate = DateTime.Parse(ActDateString),
- AgentNo = MerNo,
- MerRealName = Name,
- MerNo = MerNo,
- MerName = Name,
- ProductType = ProductType,
- ChannelSerial = DateTime.Now.ToString("yyyyMMddHHmmssfff") + function.get_Random(8),
- Status = 1,
- });
- db.SaveChanges();
- }
- db.Dispose();
- }
- // 关闭响应
- reader.Dispose();
- responseStream.Dispose();
- response.Close();
- }
- catch (WebException ex)
- {
- function.WriteLog(DateTime.Now.ToString() + ":" + ex.ToString(), "获取好哒FTP文件数据异常");
- }
- }
- public void StartTrade()
- {
- //每天凌晨执行获取好哒FTP昨日交易数据
- Thread th2 = new Thread(GetTradeDataReady);
- th2.IsBackground = true;
- th2.Start();
- }
- /// <summary>
- /// 获取好哒FTP昨日交易数据
- /// </summary>
- public void GetTradeDataReady()
- {
- while (true)
- {
- // if (DateTime.Now.Hour > 10 && DateTime.Now.Hour < 22)
- // {
- // string check = function.ReadInstance("/GetFTPTradeYesterday/check" + DateTime.Now.AddDays(-1).ToString("yyyy-MM-dd") + ".txt");
- // if (string.IsNullOrEmpty(check))
- // {
- // function.WritePage("/GetFTPTradeYesterday/", "check" + DateTime.Now.AddDays(-1).ToString("yyyy-MM-dd") + ".txt", DateTime.Now.ToString());
- GetTradeData();
- Thread.Sleep(600000);
- // }
- // }
- // else
- // {
- // Thread.Sleep(1800000);
- // }
- }
- }
- public void GetTradeData()
- {
- // 要下载的文件路径
- string filePath = "/haoda-trade/" + DateTime.Now.AddDays(-1).ToString("yyyyMMdd") + ".csv";
-
- try
- {
- // 创建FtpWebRequest对象
- FtpWebRequest request = (FtpWebRequest)WebRequest.Create(ftpServerAddress + filePath);
- request.Method = WebRequestMethods.Ftp.DownloadFile;
- request.Credentials = new NetworkCredential(ftpUser, ftpPassword);
- // 使用WebResponse获取响应
- FtpWebResponse response = (FtpWebResponse)request.GetResponse();
- // 打开数据流
- Stream responseStream = response.GetResponseStream();
- StreamReader reader = new StreamReader(responseStream);
- // 读取数据
- string fileContents = reader.ReadToEnd();
- if (!string.IsNullOrEmpty(fileContents))
- {
- WebCMSEntities db = new WebCMSEntities();
- var DataInfo = fileContents.TrimEnd('\n').Split('\n', 2);
- var DataList = DataInfo[1].Split('\n');
- foreach (var DataListItem in DataList)
- {
- var DataListInfo = DataListItem.Split(',');
- string MerNo = DataListInfo[0]; // 商户号
- string SnNo = DataListInfo[1]; // 设备号
- string OrderNo = DataListInfo[2]; // 订单号
- string PayMode = DataListInfo[3]; // 支付方式(微信 支付宝)
- string TradeType = DataListInfo[4]; // 交易类型
- string TradeAmount = DataListInfo[5]; // 交易金额
- string TradeFee = DataListInfo[6]; // 交易手续费
- string TradeDate = DataListInfo[7]; // 交易时间
- string TradeCycle = DataListInfo[8]; // 结算周期
- string PosKind = DataListInfo[9];
- string TradeDateString = TradeDate.Substring(0, 4) + "-" + TradeDate.Substring(4, 2) + "-" + TradeDate.Substring(6, 2) + " " + TradeDate.Substring(8, 2) + ":" + TradeDate.Substring(10, 2) + ":" + TradeDate.Substring(12, 2);
- string ProductType = "0";
- if(PosKind == "1") ProductType = "18";
- if(PosKind == "4G收款王M820") ProductType = "19";
- if(PosKind == "4G收款王M826") ProductType = "20";
- if(PosKind == "4") ProductType = "21";
- db.TradeRecord.Add(new TradeRecord()
- {
- CreateDate = DateTime.Now,
- UpdateDate = DateTime.Parse(TradeDateString),
- TradeSnNo = SnNo, //序列号
- MerNo = MerNo, //商户编号
- Remark = "交易成功",
- SettleFee = decimal.Parse(function.CheckNum(TradeFee)),
- BankCardType = "02",
- TradeType = TradeType,
- TradeStatus = "00",
- TradeAmount = decimal.Parse(function.CheckNum(TradeAmount)),
- TradeSerialNo = OrderNo,
- ProductType = ProductType,
- Field1 = PayMode,
- Field2 = TradeCycle,
- Status = 1,
- });
- db.SaveChanges();
- }
- db.Dispose();
- }
- // 关闭响应
- reader.Dispose();
- responseStream.Dispose();
- response.Close();
- }
- catch (WebException ex)
- {
- function.WriteLog(DateTime.Now.ToString() + ":" + ex.ToString(), "获取好哒FTP文件数据异常");
- }
- }
- }
- }
|