383 lines
17 KiB
C#
383 lines
17 KiB
C#
using System;
|
||
using System.Collections;
|
||
using System.Configuration;
|
||
using System.IO;
|
||
using System.Text;
|
||
using System.Xml;
|
||
using System.Xml.Linq;
|
||
|
||
namespace net.nutcore.aliddns
|
||
{
|
||
internal class AppConfigHelper
|
||
{
|
||
System.Configuration.Configuration configFile = null;
|
||
private static readonly string configFileName = "aliddns_config.xml";
|
||
private static readonly string appExePath = System.AppDomain.CurrentDomain.BaseDirectory;
|
||
private static readonly string configFilePath = System.IO.Path.Combine(System.AppDomain.CurrentDomain.BaseDirectory, configFileName);
|
||
/// <summary>
|
||
/// 构造函数
|
||
/// </summary>
|
||
public AppConfigHelper()
|
||
{
|
||
ExeConfigurationFileMap map = new ExeConfigurationFileMap();
|
||
map.ExeConfigFilename = configFilePath;
|
||
try
|
||
{
|
||
if (!File.Exists(configFilePath))
|
||
{
|
||
CreatNewConfig(configFilePath);
|
||
}
|
||
else
|
||
{
|
||
XmlDocument xmlDoc = new XmlDocument();
|
||
xmlDoc.Load(configFilePath);
|
||
if(xmlDoc.SelectSingleNode("configuration") == null)
|
||
{
|
||
Console.WriteLine("Config file setting error! New config file is created now!");
|
||
FileInfo fileInfo = new FileInfo(configFilePath);
|
||
fileInfo.MoveTo(configFilePath + ".bak");
|
||
CreatNewConfig(configFilePath);
|
||
Console.WriteLine("New config file is created ok!");
|
||
}
|
||
else
|
||
{
|
||
if (xmlDoc.SelectSingleNode(@"configuration/appSettings") == null)
|
||
{
|
||
Console.WriteLine("Config file has old format. Update now!");
|
||
FileInfo fileInfo = new FileInfo(configFilePath);
|
||
fileInfo.MoveTo(configFilePath + ".bak");
|
||
CreatNewConfig(configFilePath);
|
||
configFile = ConfigurationManager.OpenMappedExeConfiguration(map, ConfigurationUserLevel.None);
|
||
xmlDoc.Load(configFilePath + ".bak");
|
||
XmlNodeList oldNodes = xmlDoc.SelectSingleNode("configuration").ChildNodes;
|
||
foreach (XmlNode node in oldNodes)
|
||
{
|
||
Console.WriteLine(node.Name.ToString() + " : " + node.InnerText.ToString());
|
||
SaveAppSetting(node.Name.ToString(), node.InnerText.ToString());
|
||
}
|
||
}
|
||
}
|
||
}
|
||
configFile = ConfigurationManager.OpenMappedExeConfiguration(map, ConfigurationUserLevel.None);
|
||
GetAllAppSettings();
|
||
}
|
||
catch(Exception error)
|
||
{
|
||
Console.WriteLine("Class AppConfigHelper running error! " + error);
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// 创建XML格式的配置文件configFile
|
||
/// </summary>
|
||
/// <param name="configFile"></param>
|
||
public void CreatNewConfig(string configFile)
|
||
{
|
||
/*
|
||
XmlDocument xmlDoc = new XmlDocument();
|
||
xmlDoc.AppendChild(xmlDoc.CreateXmlDeclaration("1.0", "utf-8", string.Empty));
|
||
|
||
XmlElement configurationNode = xmlDoc.CreateElement("configuration");
|
||
xmlDoc.AppendChild(configurationNode);
|
||
|
||
XmlElement startupNode = xmlDoc.CreateElement("startup");
|
||
configurationNode.AppendChild(startupNode);
|
||
|
||
XmlElement supportedRuntimeNode = xmlDoc.CreateElement("supportedRuntime");
|
||
startupNode.AppendChild(supportedRuntimeNode);
|
||
supportedRuntimeNode.SetAttribute("version", "v4.0");
|
||
supportedRuntimeNode.SetAttribute("sku", ".NETFramework,Version=v4.5.2");
|
||
|
||
XmlElement appsettingsNode = xmlDoc.CreateElement("appSettings");
|
||
configurationNode.AppendChild(appsettingsNode);
|
||
|
||
xmlDoc.Save(configFilePath);
|
||
*/
|
||
XElement xElement = new XElement(
|
||
new XElement("configuration",
|
||
new XElement("startup",
|
||
new XElement("supportedRuntime", new XAttribute("version", "v4.0"), new XAttribute("sku", ".NETFramework,Version=v4.5.2"))
|
||
),
|
||
new XElement("appSettings",
|
||
new XElement("add", new XAttribute("key", "AliDDNS Version"), new XAttribute("value", System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString())),
|
||
new XElement("add", new XAttribute("key", "AccessKeyID"), new XAttribute("value", "")),
|
||
new XElement("add", new XAttribute("key", "AccessKeySecret"), new XAttribute("value", "")),
|
||
new XElement("add", new XAttribute("key", "RecordID"), new XAttribute("value", "")),
|
||
new XElement("add", new XAttribute("key", "fullDomainName"), new XAttribute("value", "www.xxx.com")),
|
||
new XElement("add", new XAttribute("key", "WaitingTime"), new XAttribute("value", "600")),
|
||
new XElement("add", new XAttribute("key", "autoUpdate"), new XAttribute("value", "Off")),
|
||
new XElement("add", new XAttribute("key", "whatIsUrl"), new XAttribute("value", "http://whatismyip.akamai.com/,http://www.net.cn/static/customercare/yourip.asp")),
|
||
new XElement("add", new XAttribute("key", "autoBoot"), new XAttribute("value", "Off")),
|
||
new XElement("add", new XAttribute("key", "minimized"), new XAttribute("value", "Off")),
|
||
new XElement("add", new XAttribute("key", "logautosave"), new XAttribute("value", "Off")),
|
||
new XElement("add", new XAttribute("key", "TTL"), new XAttribute("value", "600")),
|
||
new XElement("add", new XAttribute("key", "autoCheckUpdate"), new XAttribute("value", "Off")),
|
||
new XElement("add", new XAttribute("key", "ngrokauto"), new XAttribute("value", "Off"))
|
||
)
|
||
)
|
||
);
|
||
//需要指定编码格式,否则在读取时会抛:根级别上的数据无效。 第 1 行 位置 1异常
|
||
XmlWriterSettings xmlDoc = new XmlWriterSettings();
|
||
xmlDoc.Encoding = new UTF8Encoding(false);
|
||
xmlDoc.Indent = true;
|
||
XmlWriter xw = XmlWriter.Create(configFilePath, xmlDoc);
|
||
xElement.Save(xw);//写入文件
|
||
xw.Dispose();
|
||
//xw.Flush();
|
||
//xw.Close();
|
||
}
|
||
|
||
/// <summary>
|
||
/// 在<appsettings></appsettings>下添加键和值
|
||
/// </summary>
|
||
/// <param name="key"></param>
|
||
/// <param name="value"></param>
|
||
public void AddAppSetting(string key, string value)
|
||
{
|
||
configFile.AppSettings.Settings.Add(key, value);
|
||
configFile.Save();
|
||
}
|
||
|
||
/// <summary>
|
||
/// 修改<appsettings></appsettings>下指定键的值
|
||
/// </summary>
|
||
/// <param name="key"></param>
|
||
/// <param name="value"></param>
|
||
public void SaveAppSetting(string key, string value)
|
||
{
|
||
//在保存key值时必须先删除它,否则改key的值将出现两个,例如:value="oldvalue, newvalue"
|
||
configFile.AppSettings.Settings.Remove(key);
|
||
configFile.AppSettings.Settings.Add(key, value);
|
||
configFile.Save();
|
||
}
|
||
|
||
/// <summary>
|
||
/// 获取<appsettings></appsettings>下指定键的值
|
||
/// </summary>
|
||
/// <param name="key"></param>
|
||
/// <returns></returns>
|
||
public string GetAppSetting(string key)
|
||
{
|
||
return configFile.AppSettings.Settings[key].Value;
|
||
}
|
||
|
||
/// <summary>
|
||
/// 获取<appSettings></appSettings>下所有键和值
|
||
/// </summary>
|
||
public string[] GetAllAppSettings()
|
||
{
|
||
try
|
||
{
|
||
if (configFile.AppSettings.Settings.Count == 0)
|
||
{
|
||
Console.WriteLine("AppSettings is empty.");
|
||
return null;
|
||
}
|
||
else
|
||
{
|
||
foreach (var key in configFile.AppSettings.Settings.AllKeys)
|
||
{
|
||
Console.WriteLine("Key: {0} Value: {1}", key, configFile.AppSettings.Settings[key].Value);
|
||
}
|
||
return configFile.AppSettings.Settings.AllKeys;
|
||
}
|
||
}
|
||
catch (ConfigurationErrorsException)
|
||
{
|
||
Console.WriteLine("GetAllAppSettings() run error!");
|
||
return null;
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// 移除<appSettings></appSettings>下指定键
|
||
/// </summary>
|
||
/// <param name="key"></param>
|
||
public void DelAppSetting(string key)
|
||
{
|
||
configFile.AppSettings.Settings.Remove(key);
|
||
configFile.Save();
|
||
}
|
||
|
||
/// <summary>
|
||
/// 读取XML配置文件指定元素(Elements)下的值
|
||
/// </summary>
|
||
/// <param name="strElem"></param>
|
||
/// <returns></returns>
|
||
public ArrayList GetXmlElements(string strElem)
|
||
{
|
||
ArrayList list = new ArrayList();
|
||
XmlDocument xmlDoc = new XmlDocument();
|
||
xmlDoc.Load(configFilePath);
|
||
XmlNodeList listNode = xmlDoc.SelectNodes(strElem);
|
||
foreach (XmlElement el in listNode)
|
||
{
|
||
list.Add(el.InnerText);
|
||
}
|
||
return list;
|
||
}
|
||
|
||
/// <summary>
|
||
/// 使用当前路径中的指定文件作为配置文件
|
||
/// </summary>
|
||
/// <param name="configFileName">配置文件名</param>
|
||
public void SetConfigFile(string configFileName)
|
||
{
|
||
string configFilePath = System.IO.Path.Combine(System.AppDomain.CurrentDomain.BaseDirectory, configFileName);
|
||
System.AppDomain.CurrentDomain.SetData("APP_CONFIG_FILE", configFilePath);
|
||
//ExeConfigurationFileMap map = new ExeConfigurationFileMap();
|
||
//map.ExeConfigFilename = configFilePath;
|
||
//configFile = ConfigurationManager.OpenMappedExeConfiguration(map, ConfigurationUserLevel.None);
|
||
}
|
||
|
||
/// <summary>
|
||
/// 使用指定路径中的指定文件作为配置文件
|
||
/// </summary>
|
||
/// <param name="configFileName">配置文件名</param>
|
||
/// <param name="configFileDirectory">配置文件路径</param>
|
||
public void SetConfigFile(string configFileName, string configFileDirectory)
|
||
{
|
||
string configFilePath = System.IO.Path.Combine(configFileDirectory, configFileName);
|
||
System.AppDomain.CurrentDomain.SetData("APP_CONFIG_FILE", configFilePath);
|
||
//ExeConfigurationFileMap map = new ExeConfigurationFileMap();
|
||
//map.ExeConfigFilename = configFilePath;
|
||
//configFile = ConfigurationManager.OpenMappedExeConfiguration(map, ConfigurationUserLevel.None);
|
||
}
|
||
|
||
/// <summary>
|
||
/// 判断appSettings中是否有指定键名
|
||
/// </summary>
|
||
/// /// <param name="strKey">键名</param>
|
||
public bool AppSettingsKeyExists(string strKey)
|
||
{
|
||
foreach (string key in ConfigurationManager.AppSettings.AllKeys)
|
||
{
|
||
if (key == strKey)
|
||
{
|
||
return true;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
|
||
/// <summary>
|
||
/// 修改配置文件指定键和值
|
||
/// </summary>
|
||
/// <param name="strKey"></param>
|
||
/// <param name="value"></param>
|
||
public static void ModifyAppSettings(string strKey, string value)
|
||
{
|
||
var doc = new XmlDocument();
|
||
//获得配置文件的全路径
|
||
//var strFileName = AppDomain.CurrentDomain.SetupInformation.ConfigurationFile;
|
||
var strFileName = configFilePath;
|
||
doc.Load(strFileName);
|
||
|
||
//找出名称为“add”的所有元素
|
||
var nodes = doc.GetElementsByTagName("add");
|
||
for (int i = 0; i < nodes.Count; i++)
|
||
{
|
||
//获得将当前元素的key属性
|
||
var xmlAttributeCollection = nodes[i].Attributes;
|
||
if (xmlAttributeCollection != null)
|
||
{
|
||
var att = xmlAttributeCollection["key"];
|
||
if (att == null) continue;
|
||
//根据元素的第一个属性来判断当前的元素是不是目标元素
|
||
if (att.Value != strKey) continue;
|
||
//对目标元素中的第二个属性赋值
|
||
att = xmlAttributeCollection["value"];
|
||
att.Value = value;
|
||
}
|
||
break;
|
||
}
|
||
//保存上面的修改
|
||
doc.Save(strFileName);
|
||
ConfigurationManager.RefreshSection("appSettings");
|
||
}
|
||
static class ConfigurationUtil
|
||
{
|
||
public static void Synchronize<T>() where T : SettingsBase
|
||
{
|
||
Type type = typeof(T);
|
||
System.Reflection.FieldInfo fieldInfo = type.GetField("defaultInstance", System.Reflection.BindingFlags.Static | System.Reflection.BindingFlags.NonPublic);
|
||
|
||
SettingsBase newInstance = global::System.Configuration.ApplicationSettingsBase.Synchronized(Activator.CreateInstance<T>());
|
||
|
||
fieldInfo.SetValue(null, newInstance);
|
||
|
||
}
|
||
public static System.Configuration.Configuration OpenConfiguration(string fileName)
|
||
{
|
||
string extention = Path.GetExtension(fileName);
|
||
|
||
string file = fileName.Substring(0, fileName.Length - extention.Length);
|
||
bool createproxyFile = false;
|
||
if (!File.Exists(file))
|
||
{
|
||
createproxyFile = true;
|
||
File.CreateText(file).Dispose();
|
||
}
|
||
if (!File.Exists(fileName))
|
||
{
|
||
File.WriteAllText(fileName, "<configuration/>", Encoding.UTF8);
|
||
}
|
||
System.Configuration.Configuration config = System.Configuration.ConfigurationManager.OpenExeConfiguration(file);
|
||
if (createproxyFile)
|
||
{
|
||
File.Delete(file);
|
||
}
|
||
return config;
|
||
}
|
||
public static ConfigurationSectionGroup CreateApplicationSettingsGroup(System.Configuration.Configuration config)
|
||
{
|
||
ConfigurationSectionGroup appsg = config.RootSectionGroup.SectionGroups.Get("applicationSettings");
|
||
if (appsg == null)
|
||
{
|
||
appsg = new ApplicationSettingsGroup();
|
||
//appsg.Type = typeof(ApplicationSettingsGroup).AssemblyQualifiedName;
|
||
config.RootSectionGroup.SectionGroups.Add("applicationSettings", appsg);
|
||
//创建节点
|
||
}
|
||
return appsg;
|
||
|
||
}
|
||
|
||
public static void WriteSettingElement(Configuration config, ConfigurationSectionGroup sectionGroup, SettingsSerializeAs sas, string name, string value, string namespaceclass)
|
||
{
|
||
|
||
ConfigurationSection sec = sectionGroup.Sections.Get(namespaceclass);
|
||
|
||
System.Configuration.ClientSettingsSection clisec = sec as ClientSettingsSection;
|
||
if (clisec == null)
|
||
{
|
||
//创建节
|
||
clisec = new ClientSettingsSection();
|
||
sectionGroup.Sections.Add(namespaceclass, clisec);
|
||
}
|
||
|
||
SettingElement secEle = clisec.Settings.Get(name);
|
||
if (secEle == null)
|
||
{
|
||
secEle = new SettingElement(name, sas);
|
||
clisec.Settings.Add(secEle);
|
||
|
||
}
|
||
secEle.Value.ValueXml = new XmlDocument().CreateElement("value");
|
||
if (sas == SettingsSerializeAs.Xml)
|
||
{
|
||
|
||
XmlDocument xmdoc = new XmlDocument();
|
||
xmdoc.LoadXml(value);
|
||
secEle.Value.ValueXml.InnerXml = xmdoc.DocumentElement.OuterXml;
|
||
|
||
}
|
||
else
|
||
{
|
||
secEle.Value.ValueXml.InnerText = value;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|