You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
3.5 KiB
107 lines
3.5 KiB
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:<QrCodeId,Version>
|
|
public static Dictionary<string, CodeRecord> 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;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取配置文件
|
|
/// </summary>
|
|
/// <param name="context"></param>
|
|
/// <returns></returns>
|
|
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;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取一个二维码场景标示(自增,唯一)
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
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;
|
|
}
|
|
}
|
|
}
|