using Senparc.CO2NET.Utilities; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Xml.Linq; using Znyc.WeChat.CommonService.Download; namespace Znyc.Recruitment.Admin.WeChat.CommonService.Download { public class ConfigHelper { //Key:guid,Value: public static Dictionary CodeCollection = new(StringComparer.OrdinalIgnoreCase); public static object Lock = new(); private string GetDatabaseFilePath() { return ServerUtility.ContentRootMapPath("~/App_Data/Document/Config.xml"); } private XDocument GetXDocument() { XDocument doc = XDocument.Load(GetDatabaseFilePath()); return doc; } /// /// 获取配置文件 /// /// /// public Config GetConfig() { XDocument doc = GetXDocument(); Config config = new Config { QrCodeId = int.Parse(doc.Root.Element("QrCodeId").Value), DownloadCount = int.Parse(doc.Root.Element("DownloadCount").Value), Versions = doc.Root.Element("Versions").Elements("Version").Select(z => z.Value).ToList(), WebVersions = doc.Root.Element("WebVersions").Elements("Version").Select(z => z.Value).ToList() }; return config; } /// /// 获取一个二维码场景标示(自增,唯一) /// /// public int GetQrCodeId() { lock (Lock) { Config config = GetConfig(); config.QrCodeId++; Save(config); return config.QrCodeId; } } public void Save(Config config) { XDocument doc = GetXDocument(); doc.Root.Element("QrCodeId").Value = config.QrCodeId.ToString(); doc.Root.Element("DownloadCount").Value = config.DownloadCount.ToString(); doc.Root.Element("Versions").Elements().Remove(); foreach (string version in config.Versions) { doc.Root.Element("Versions").Add(new XElement("Version", version)); } #if NET45 doc.Save(GetDatabaseFilePath()); #else using (FileStream fs = new FileStream(GetDatabaseFilePath(), FileMode.OpenOrCreate, FileAccess.ReadWrite)) { doc.Save(fs); } #endif } public string Download(string version, bool isWebVersion) { lock (Lock) { Config config = GetConfig(); config.DownloadCount++; Save(config); } //打包下载文件 //FileStream fs = new FileStream(_context.ServerUtility.ContentRootMapPath(string.Format("~/App_Data/Document/Files/Senparc.Weixin-v{0}.rar", version)), FileMode.Open); //return fs; string filePath = ServerUtility.ContentRootMapPath(string.Format( "~/App_Data/Document/Files/Senparc.Weixin{0}-v{1}.rar", isWebVersion ? "-Web" : "", version)); if (!File.Exists(filePath)) { //使用.zip文件 filePath = filePath.Replace(".rar", ".zip"); } return filePath; } } }