v2rayN/v2rayN/ServiceLib/Common/Utils.cs

872 lines
25 KiB
C#
Raw Normal View History

using System.Collections.Specialized;
2019-10-11 06:15:20 +00:00
using System.Diagnostics;
using System.IO.Compression;
using System.Net;
using System.Net.NetworkInformation;
using System.Net.Sockets;
using System.Reflection;
2024-08-26 10:45:41 +00:00
using System.Runtime.InteropServices;
2023-01-01 11:42:01 +00:00
using System.Security.Cryptography;
using System.Security.Principal;
2019-10-11 06:15:20 +00:00
using System.Text;
using System.Text.RegularExpressions;
2024-08-19 10:15:54 +00:00
namespace ServiceLib.Common
2019-10-11 06:15:20 +00:00
{
2024-08-19 10:15:54 +00:00
public class Utils
2021-01-06 11:54:15 +00:00
{
2019-10-11 06:15:20 +00:00
#region Json操作
/// <summary>
/// 获取嵌入文本资源
/// </summary>
/// <param name="res"></param>
/// <returns></returns>
public static string GetEmbedText(string res)
{
string result = string.Empty;
try
{
2020-03-14 19:25:40 +00:00
Assembly assembly = Assembly.GetExecutingAssembly();
2023-02-19 04:18:08 +00:00
using Stream? stream = assembly.GetManifestResourceStream(res);
ArgumentNullException.ThrowIfNull(stream);
2023-02-17 06:36:28 +00:00
using StreamReader reader = new(stream);
result = reader.ReadToEnd();
2019-10-11 06:15:20 +00:00
}
catch (Exception ex)
2019-10-11 06:15:20 +00:00
{
2024-01-10 02:43:48 +00:00
Logging.SaveLog(ex.Message, ex);
2019-10-11 06:15:20 +00:00
}
return result;
}
/// <summary>
/// 取得存储资源
/// </summary>
/// <returns></returns>
2024-05-04 05:54:22 +00:00
public static string? LoadResource(string? res)
2019-10-11 06:15:20 +00:00
{
try
{
2024-05-04 05:54:22 +00:00
if (!File.Exists(res))
{
return null;
}
2023-02-20 10:16:30 +00:00
return File.ReadAllText(res);
2019-10-11 06:15:20 +00:00
}
catch (Exception ex)
2019-10-11 06:15:20 +00:00
{
2024-01-10 02:43:48 +00:00
Logging.SaveLog(ex.Message, ex);
2019-10-11 06:15:20 +00:00
}
2023-02-20 10:16:30 +00:00
return null;
2019-10-11 06:15:20 +00:00
}
2023-04-14 12:49:36 +00:00
#endregion Json操作
2019-10-11 06:15:20 +00:00
#region
/// <summary>
/// List<string>转逗号分隔的字符串
/// </summary>
/// <param name="lst"></param>
/// <returns></returns>
public static string List2String(List<string>? lst, bool wrap = false)
2019-10-11 06:15:20 +00:00
{
try
{
2022-01-08 12:27:36 +00:00
if (lst == null)
{
return string.Empty;
}
2019-10-11 06:15:20 +00:00
if (wrap)
{
2023-02-17 07:17:01 +00:00
return string.Join("," + Environment.NewLine, lst);
2019-10-11 06:15:20 +00:00
}
else
{
2023-02-20 10:16:30 +00:00
return string.Join(",", lst);
2019-10-11 06:15:20 +00:00
}
}
catch (Exception ex)
2019-10-11 06:15:20 +00:00
{
2024-01-10 02:43:48 +00:00
Logging.SaveLog(ex.Message, ex);
2019-10-11 06:15:20 +00:00
return string.Empty;
}
}
2023-04-14 12:49:36 +00:00
2019-10-11 06:15:20 +00:00
/// <summary>
/// 逗号分隔的字符串,转List<string>
2019-10-11 06:15:20 +00:00
/// </summary>
/// <param name="str"></param>
/// <returns></returns>
public static List<string> String2List(string str)
{
try
{
str = str.Replace(Environment.NewLine, "");
2023-02-17 07:17:01 +00:00
return new List<string>(str.Split(',', StringSplitOptions.RemoveEmptyEntries));
2019-10-11 06:15:20 +00:00
}
catch (Exception ex)
2019-10-11 06:15:20 +00:00
{
2024-01-10 02:43:48 +00:00
Logging.SaveLog(ex.Message, ex);
2024-10-08 05:47:13 +00:00
return [];
2019-10-11 06:15:20 +00:00
}
}
/// <summary>
/// 逗号分隔的字符串,先排序后转List<string>
/// </summary>
/// <param name="str"></param>
/// <returns></returns>
public static List<string> String2ListSorted(string str)
{
try
{
str = str.Replace(Environment.NewLine, "");
2023-02-17 07:17:01 +00:00
List<string> list = new(str.Split(',', StringSplitOptions.RemoveEmptyEntries));
list.Sort();
return list;
}
catch (Exception ex)
{
2024-01-10 02:43:48 +00:00
Logging.SaveLog(ex.Message, ex);
2024-10-08 05:47:13 +00:00
return [];
}
}
2019-10-11 06:15:20 +00:00
/// <summary>
/// Base64编码
/// </summary>
/// <param name="plainText"></param>
/// <returns></returns>
public static string Base64Encode(string plainText)
{
try
{
2020-03-14 19:27:31 +00:00
byte[] plainTextBytes = Encoding.UTF8.GetBytes(plainText);
2019-10-11 06:15:20 +00:00
return Convert.ToBase64String(plainTextBytes);
}
catch (Exception ex)
{
2024-01-10 02:43:48 +00:00
Logging.SaveLog("Base64Encode", ex);
2019-10-11 06:15:20 +00:00
return string.Empty;
}
}
/// <summary>
/// Base64解码
/// </summary>
/// <param name="plainText"></param>
/// <returns></returns>
2024-09-18 11:54:38 +00:00
public static string Base64Decode(string? plainText)
2019-10-11 06:15:20 +00:00
{
try
{
2024-09-18 11:54:38 +00:00
if (plainText.IsNullOrEmpty()) return "";
2024-01-10 02:43:48 +00:00
plainText = plainText.Trim()
2019-12-11 03:42:41 +00:00
.Replace(Environment.NewLine, "")
2019-10-11 06:15:20 +00:00
.Replace("\n", "")
.Replace("\r", "")
2023-03-20 06:03:50 +00:00
.Replace('_', '/')
.Replace('-', '+')
2019-10-11 06:15:20 +00:00
.Replace(" ", "");
if (plainText.Length % 4 > 0)
{
plainText = plainText.PadRight(plainText.Length + 4 - plainText.Length % 4, '=');
}
byte[] data = Convert.FromBase64String(plainText);
return Encoding.UTF8.GetString(data);
}
catch (Exception ex)
{
2024-01-10 02:43:48 +00:00
Logging.SaveLog("Base64Decode", ex);
2019-10-11 06:15:20 +00:00
return string.Empty;
}
}
/// <summary>
/// 转Int
/// </summary>
/// <param name="obj"></param>
/// <returns></returns>
2024-01-15 09:11:00 +00:00
public static int ToInt(object? obj)
2019-10-11 06:15:20 +00:00
{
try
{
2024-01-15 09:11:00 +00:00
return Convert.ToInt32(obj ?? string.Empty);
2019-10-11 06:15:20 +00:00
}
2024-01-10 09:44:55 +00:00
catch //(Exception ex)
2019-10-11 06:15:20 +00:00
{
2023-03-20 06:03:50 +00:00
//SaveLog(ex.Message, ex);
2019-10-11 06:15:20 +00:00
return 0;
}
}
2023-04-14 12:49:36 +00:00
2022-03-13 02:41:04 +00:00
public static bool ToBool(object obj)
{
try
{
return Convert.ToBoolean(obj);
}
2024-01-10 09:44:55 +00:00
catch //(Exception ex)
2022-03-13 02:41:04 +00:00
{
2023-03-20 06:03:50 +00:00
//SaveLog(ex.Message, ex);
2022-03-13 02:41:04 +00:00
return false;
}
}
2019-10-11 06:15:20 +00:00
public static string ToString(object obj)
{
try
{
2023-02-17 06:36:28 +00:00
return obj?.ToString() ?? string.Empty;
2019-10-11 06:15:20 +00:00
}
2024-01-10 09:44:55 +00:00
catch// (Exception ex)
2019-10-11 06:15:20 +00:00
{
2023-03-20 06:03:50 +00:00
//SaveLog(ex.Message, ex);
2019-10-11 06:15:20 +00:00
return string.Empty;
}
}
/// <summary>
/// byte 转成 有两位小数点的 方便阅读的数据
/// 比如 2.50 MB
/// </summary>
/// <param name="amount">bytes</param>
/// <param name="result">转换之后的数据</param>
/// <param name="unit">单位</param>
2023-01-01 11:42:01 +00:00
public static void ToHumanReadable(long amount, out double result, out string unit)
2019-10-11 06:15:20 +00:00
{
2020-03-14 19:25:40 +00:00
uint factor = 1024u;
2023-01-01 11:42:01 +00:00
//long KBs = amount / factor;
long KBs = amount;
2019-10-11 06:15:20 +00:00
if (KBs > 0)
{
// multi KB
2023-01-01 11:42:01 +00:00
long MBs = KBs / factor;
2019-10-11 06:15:20 +00:00
if (MBs > 0)
{
// multi MB
2023-01-01 11:42:01 +00:00
long GBs = MBs / factor;
2019-10-11 06:15:20 +00:00
if (GBs > 0)
{
// multi GB
2023-04-10 09:30:27 +00:00
long TBs = GBs / factor;
2019-10-11 06:15:20 +00:00
if (TBs > 0)
{
2023-04-16 12:45:47 +00:00
result = TBs + ((GBs % factor) / (factor + 0.0));
2019-10-11 06:15:20 +00:00
unit = "TB";
return;
2023-04-10 09:30:27 +00:00
}
2023-04-16 12:45:47 +00:00
result = GBs + ((MBs % factor) / (factor + 0.0));
2019-10-11 06:15:20 +00:00
unit = "GB";
return;
}
2023-04-16 12:45:47 +00:00
result = MBs + ((KBs % factor) / (factor + 0.0));
2019-10-11 06:15:20 +00:00
unit = "MB";
return;
}
2023-04-16 12:45:47 +00:00
result = KBs + ((amount % factor) / (factor + 0.0));
2019-10-11 06:15:20 +00:00
unit = "KB";
return;
}
else
{
result = amount;
unit = "B";
}
}
2023-01-01 11:42:01 +00:00
public static string HumanFy(long amount)
2019-10-11 06:15:20 +00:00
{
2020-03-14 19:26:54 +00:00
ToHumanReadable(amount, out double result, out string unit);
2020-02-17 05:55:58 +00:00
return $"{string.Format("{0:f1}", result)} {unit}";
2019-10-11 06:15:20 +00:00
}
2021-01-06 11:54:15 +00:00
public static string UrlEncode(string url)
{
2022-03-31 12:19:15 +00:00
return Uri.EscapeDataString(url);
//return HttpUtility.UrlEncode(url);
2021-01-06 11:54:15 +00:00
}
2023-04-14 12:49:36 +00:00
2021-01-06 11:54:15 +00:00
public static string UrlDecode(string url)
{
2024-01-16 03:05:02 +00:00
return Uri.UnescapeDataString(url);
//return HttpUtility.UrlDecode(url);
}
public static NameValueCollection ParseQueryString(string query)
{
var result = new NameValueCollection(StringComparer.OrdinalIgnoreCase);
if (IsNullOrEmpty(query))
{
return result;
}
var parts = query[1..].Split(new[] { '&' }, StringSplitOptions.RemoveEmptyEntries);
foreach (var part in parts)
{
var keyValue = part.Split(['=']);
if (keyValue.Length != 2)
{
continue;
}
var key = Uri.UnescapeDataString(keyValue[0]);
var val = Uri.UnescapeDataString(keyValue[1]);
2024-02-21 02:17:28 +00:00
if (result[key] is null)
{
result.Add(key, val);
}
2024-01-16 03:05:02 +00:00
}
return result;
2021-01-06 11:54:15 +00:00
}
2022-05-12 00:52:40 +00:00
public static string GetMD5(string str)
{
byte[] byteOld = Encoding.UTF8.GetBytes(str);
2023-02-17 06:36:28 +00:00
byte[] byteNew = MD5.HashData(byteOld);
StringBuilder sb = new(32);
2022-05-12 00:52:40 +00:00
foreach (byte b in byteNew)
{
sb.Append(b.ToString("x2"));
}
return sb.ToString();
}
2023-04-14 12:49:36 +00:00
/// <summary>
/// idn to idc
/// </summary>
/// <param name="url"></param>
/// <returns></returns>
2022-12-13 12:02:45 +00:00
public static string GetPunycode(string url)
{
2024-03-26 06:26:03 +00:00
if (Utils.IsNullOrEmpty(url))
2022-12-13 12:02:45 +00:00
{
return url;
}
try
{
2023-02-17 06:36:28 +00:00
Uri uri = new(url);
2024-03-07 01:06:35 +00:00
if (uri.Host == uri.IdnHost || uri.Host == $"[{uri.IdnHost}]")
2022-12-13 12:02:45 +00:00
{
return url;
}
else
{
return url.Replace(uri.Host, uri.IdnHost);
}
}
catch
{
return url;
}
}
2024-09-18 11:54:38 +00:00
public static bool IsBase64String(string? plainText)
2023-04-06 03:40:28 +00:00
{
2024-08-20 06:30:45 +00:00
if (plainText.IsNullOrEmpty()) return false;
2023-04-06 03:40:28 +00:00
var buffer = new Span<byte>(new byte[plainText.Length]);
return Convert.TryFromBase64String(plainText, buffer, out int _);
}
public static string Convert2Comma(string text)
{
2024-03-26 06:26:03 +00:00
if (Utils.IsNullOrEmpty(text))
{
return text;
}
return text.Replace("", ",").Replace(Environment.NewLine, ",");
}
2023-04-14 12:49:36 +00:00
#endregion
2019-10-11 06:15:20 +00:00
#region
/// <summary>
/// 判断输入的是否是数字
/// </summary>
/// <param name="oText"></param>
/// <returns></returns>
2024-02-19 09:43:36 +00:00
public static bool IsNumeric(string oText)
2019-10-11 06:15:20 +00:00
{
try
{
2020-03-14 19:27:31 +00:00
int var1 = ToInt(oText);
2019-10-11 06:15:20 +00:00
return true;
}
catch (Exception ex)
2019-10-11 06:15:20 +00:00
{
2024-01-10 02:43:48 +00:00
Logging.SaveLog(ex.Message, ex);
2019-10-11 06:15:20 +00:00
return false;
}
}
2023-01-01 11:42:01 +00:00
public static bool IsNullOrEmpty(string? text)
2019-10-11 06:15:20 +00:00
{
2024-03-23 10:26:04 +00:00
if (string.IsNullOrWhiteSpace(text))
2019-10-11 06:15:20 +00:00
{
return true;
}
2023-02-19 11:15:02 +00:00
if (text == "null")
2019-10-11 06:15:20 +00:00
{
return true;
}
return false;
}
2024-09-17 08:52:41 +00:00
public static bool IsNotEmpty(string? text)
{
return !string.IsNullOrEmpty(text);
}
2019-10-11 06:15:20 +00:00
/// <summary>
/// 验证IP地址是否合法
/// </summary>
2023-04-14 12:49:36 +00:00
/// <param name="ip"></param>
2019-10-11 06:15:20 +00:00
public static bool IsIP(string ip)
{
//如果为空
if (IsNullOrEmpty(ip))
{
return false;
}
//清除要验证字符串中的空格
//ip = ip.TrimEx();
//可能是CIDR
if (ip.IndexOf(@"/") > 0)
{
2020-03-14 19:25:40 +00:00
string[] cidr = ip.Split('/');
2019-10-11 06:15:20 +00:00
if (cidr.Length == 2)
{
2024-02-19 09:43:36 +00:00
if (!IsNumeric(cidr[0]))
2019-10-11 06:15:20 +00:00
{
return false;
}
ip = cidr[0];
}
}
//模式字符串
string pattern = @"^((2[0-4]\d|25[0-5]|[01]?\d\d?)\.){3}(2[0-4]\d|25[0-5]|[01]?\d\d?)$";
//验证
return IsMatch(ip, pattern);
}
/// <summary>
/// 验证Domain地址是否合法
/// </summary>
2023-04-14 12:49:36 +00:00
/// <param name="domain"></param>
2024-05-12 07:42:28 +00:00
public static bool IsDomain(string? domain)
2019-10-11 06:15:20 +00:00
{
//如果为空
if (IsNullOrEmpty(domain))
{
return false;
}
2023-04-27 08:20:13 +00:00
return Uri.CheckHostName(domain) == UriHostNameType.Dns;
2019-10-11 06:15:20 +00:00
}
/// <summary>
/// 验证输入字符串是否与模式字符串匹配匹配返回true
/// </summary>
/// <param name="input">输入字符串</param>
2023-04-14 12:49:36 +00:00
/// <param name="pattern">模式字符串</param>
2019-10-11 06:15:20 +00:00
public static bool IsMatch(string input, string pattern)
{
return Regex.IsMatch(input, pattern, RegexOptions.IgnoreCase);
}
2021-03-21 02:09:39 +00:00
public static bool IsIpv6(string ip)
{
2023-02-17 06:36:28 +00:00
if (IPAddress.TryParse(ip, out IPAddress? address))
2021-03-21 02:09:39 +00:00
{
2023-02-17 06:36:28 +00:00
return address.AddressFamily switch
2021-03-21 02:09:39 +00:00
{
2023-02-17 06:36:28 +00:00
AddressFamily.InterNetwork => false,
AddressFamily.InterNetworkV6 => true,
_ => false,
};
2021-03-21 02:09:39 +00:00
}
return false;
}
2023-04-14 12:49:36 +00:00
#endregion
2019-10-11 06:15:20 +00:00
#region
2022-02-26 04:27:59 +00:00
public static void SetSecurityProtocol(bool enableSecurityProtocolTls13)
2019-12-12 02:16:09 +00:00
{
2022-02-26 04:27:59 +00:00
if (enableSecurityProtocolTls13)
2022-01-08 12:27:36 +00:00
{
2022-04-11 11:16:35 +00:00
ServicePointManager.SecurityProtocol |= SecurityProtocolType.Tls12 | SecurityProtocolType.Tls13;
2022-01-08 12:27:36 +00:00
}
else
{
2022-04-11 11:16:35 +00:00
ServicePointManager.SecurityProtocol |= SecurityProtocolType.Tls12;
2022-01-08 12:27:36 +00:00
}
2019-12-12 02:16:09 +00:00
ServicePointManager.DefaultConnectionLimit = 256;
}
2022-01-12 13:05:03 +00:00
public static bool PortInUse(int port)
{
bool inUse = false;
2022-03-17 11:07:06 +00:00
try
{
IPGlobalProperties ipProperties = IPGlobalProperties.GetIPGlobalProperties();
IPEndPoint[] ipEndPoints = ipProperties.GetActiveTcpListeners();
2022-01-12 13:05:03 +00:00
2022-03-17 11:07:06 +00:00
var lstIpEndPoints = new List<IPEndPoint>(IPGlobalProperties.GetIPGlobalProperties().GetActiveTcpListeners());
2022-01-12 13:05:03 +00:00
2022-03-17 11:07:06 +00:00
foreach (IPEndPoint endPoint in ipEndPoints)
2022-01-12 13:05:03 +00:00
{
2022-03-17 11:07:06 +00:00
if (endPoint.Port == port)
{
inUse = true;
break;
}
2022-01-12 13:05:03 +00:00
}
}
2022-03-17 11:07:06 +00:00
catch (Exception ex)
{
2024-01-10 02:43:48 +00:00
Logging.SaveLog(ex.Message, ex);
2022-03-17 11:07:06 +00:00
}
2022-01-12 13:05:03 +00:00
return inUse;
}
2023-04-14 12:49:36 +00:00
2024-03-02 02:00:28 +00:00
public static int GetFreePort(int defaultPort = 9090)
2024-02-08 06:01:33 +00:00
{
try
{
2024-03-26 06:26:03 +00:00
if (!Utils.PortInUse(defaultPort))
2024-02-08 06:01:33 +00:00
{
return defaultPort;
}
TcpListener l = new(IPAddress.Loopback, 0);
l.Start();
int port = ((IPEndPoint)l.LocalEndpoint).Port;
l.Stop();
return port;
}
catch
{
}
2024-03-02 02:00:28 +00:00
return 59090;
2024-02-08 06:01:33 +00:00
}
2023-04-14 12:49:36 +00:00
#endregion
2019-10-11 06:15:20 +00:00
#region
/// <summary>
/// 取得版本
/// </summary>
/// <returns></returns>
public static string GetVersion(bool blFull = true)
2019-10-11 06:15:20 +00:00
{
try
{
if (blFull)
{
2024-08-27 05:06:39 +00:00
return string.Format("{0} - V{1} - {2}",
Global.AppName,
2024-08-29 07:19:03 +00:00
GetVersionInfo(),
2024-09-16 07:34:35 +00:00
File.GetLastWriteTime(GetExePath()).ToString("yyyy/MM/dd"));
}
else
{
2024-08-27 05:06:39 +00:00
return string.Format("{0}/{1}",
Global.AppName,
2024-08-29 07:19:03 +00:00
GetVersionInfo());
}
2019-10-11 06:15:20 +00:00
}
catch (Exception ex)
2019-10-11 06:15:20 +00:00
{
2024-01-10 02:43:48 +00:00
Logging.SaveLog(ex.Message, ex);
2024-08-27 05:06:39 +00:00
return Global.AppName;
2019-10-11 06:15:20 +00:00
}
}
2024-08-29 07:19:03 +00:00
public static string GetVersionInfo()
{
try
{
2024-09-16 07:34:35 +00:00
return Assembly.GetExecutingAssembly()?.GetName()?.Version?.ToString(3) ?? "0.0";
2024-08-29 07:19:03 +00:00
}
catch (Exception ex)
{
Logging.SaveLog(ex.Message, ex);
return "0.0";
}
}
2019-10-11 06:15:20 +00:00
/// <summary>
/// 取得GUID
/// </summary>
/// <returns></returns>
2022-01-28 13:02:25 +00:00
public static string GetGUID(bool full = true)
2019-10-11 06:15:20 +00:00
{
try
{
2022-01-28 13:02:25 +00:00
if (full)
{
return Guid.NewGuid().ToString("D");
}
else
{
return BitConverter.ToInt64(Guid.NewGuid().ToByteArray(), 0).ToString();
}
2019-10-11 06:15:20 +00:00
}
catch (Exception ex)
2019-10-11 06:15:20 +00:00
{
2024-01-10 02:43:48 +00:00
Logging.SaveLog(ex.Message, ex);
2019-10-11 06:15:20 +00:00
}
return string.Empty;
}
2021-10-10 12:16:30 +00:00
public static string GetDownloadFileName(string url)
{
2022-06-22 01:48:00 +00:00
var fileName = Path.GetFileName(url);
2021-10-10 12:16:30 +00:00
fileName += "_temp";
return fileName;
}
2022-03-17 11:07:06 +00:00
public static bool IsGuidByParse(string strSrc)
{
2024-10-08 05:47:13 +00:00
return Guid.TryParse(strSrc, out _);
2022-03-17 11:07:06 +00:00
}
2023-04-14 12:49:36 +00:00
2024-10-08 05:47:13 +00:00
public static void ProcessStart(string? fileName, string arguments = "")
2023-01-01 11:42:01 +00:00
{
try
{
2024-10-08 05:47:13 +00:00
if (fileName.IsNullOrEmpty()) { return; }
2024-05-08 03:43:03 +00:00
Process.Start(new ProcessStartInfo(fileName, arguments) { UseShellExecute = true });
2023-01-01 11:42:01 +00:00
}
catch (Exception ex)
{
2024-01-10 02:43:48 +00:00
Logging.SaveLog(ex.Message, ex);
2023-01-01 11:42:01 +00:00
}
}
/// <summary>
/// 获取系统hosts
/// </summary>
/// <returns></returns>
public static Dictionary<string, string> GetSystemHosts()
{
var systemHosts = new Dictionary<string, string>();
var hostfile = @"C:\Windows\System32\drivers\etc\hosts";
try
{
if (File.Exists(hostfile))
{
var hosts = File.ReadAllText(hostfile).Replace("\r", "");
var hostsList = hosts.Split(new[] { '\n' }, StringSplitOptions.RemoveEmptyEntries);
foreach (var host in hostsList)
{
if (host.StartsWith("#")) continue;
var hostItem = host.Split(new[] { ' ', '\t' }, StringSplitOptions.RemoveEmptyEntries);
if (hostItem.Length < 2) continue;
systemHosts.Add(hostItem[1], hostItem[0]);
}
}
}
catch (Exception ex)
{
Logging.SaveLog(ex.Message, ex);
}
return systemHosts;
}
2023-04-14 12:49:36 +00:00
#endregion
2019-10-11 06:15:20 +00:00
#region TempPath
/// <summary>
/// 获取启动了应用程序的可执行文件的路径
/// </summary>
/// <returns></returns>
public static string GetPath(string fileName)
{
string startupPath = StartupPath();
if (IsNullOrEmpty(fileName))
{
return startupPath;
}
return Path.Combine(startupPath, fileName);
}
/// <summary>
/// 获取启动了应用程序的可执行文件的路径及文件名
/// </summary>
/// <returns></returns>
public static string GetExePath()
{
return Environment.ProcessPath ?? string.Empty;
}
public static string StartupPath()
{
return AppDomain.CurrentDomain.BaseDirectory;
}
2022-03-20 12:40:07 +00:00
public static string GetTempPath(string filename = "")
2019-10-11 06:15:20 +00:00
{
2022-05-12 01:50:48 +00:00
string _tempPath = Path.Combine(StartupPath(), "guiTemps");
2019-12-12 02:16:09 +00:00
if (!Directory.Exists(_tempPath))
2019-10-11 06:15:20 +00:00
{
2019-12-12 02:16:09 +00:00
Directory.CreateDirectory(_tempPath);
2019-10-11 06:15:20 +00:00
}
2024-03-26 06:26:03 +00:00
if (Utils.IsNullOrEmpty(filename))
2022-03-20 12:40:07 +00:00
{
return _tempPath;
}
else
{
return Path.Combine(_tempPath, filename);
}
2020-11-23 13:18:44 +00:00
}
2019-10-11 06:15:20 +00:00
public static string UnGzip(byte[] buf)
{
2023-02-17 06:36:28 +00:00
using MemoryStream sb = new();
using GZipStream input = new(new MemoryStream(buf), CompressionMode.Decompress, false);
input.CopyTo(sb);
sb.Position = 0;
return new StreamReader(sb, Encoding.UTF8).ReadToEnd();
2019-10-11 06:15:20 +00:00
}
2022-03-20 12:40:07 +00:00
public static string GetBackupPath(string filename)
{
string _tempPath = Path.Combine(StartupPath(), "guiBackups");
if (!Directory.Exists(_tempPath))
{
Directory.CreateDirectory(_tempPath);
}
return Path.Combine(_tempPath, filename);
}
2023-04-14 12:49:36 +00:00
2022-03-20 12:40:07 +00:00
public static string GetConfigPath(string filename = "")
{
string _tempPath = Path.Combine(StartupPath(), "guiConfigs");
if (!Directory.Exists(_tempPath))
{
Directory.CreateDirectory(_tempPath);
}
2024-03-26 06:26:03 +00:00
if (Utils.IsNullOrEmpty(filename))
2022-03-20 12:40:07 +00:00
{
return _tempPath;
}
else
{
return Path.Combine(_tempPath, filename);
}
}
2023-04-14 12:49:36 +00:00
2024-01-10 02:43:48 +00:00
public static string GetBinPath(string filename, string? coreType = null)
2023-01-01 11:42:01 +00:00
{
string _tempPath = Path.Combine(StartupPath(), "bin");
if (!Directory.Exists(_tempPath))
{
Directory.CreateDirectory(_tempPath);
}
if (coreType != null)
{
2024-09-18 11:54:38 +00:00
_tempPath = Path.Combine(_tempPath, coreType.ToString());
2023-01-01 11:42:01 +00:00
if (!Directory.Exists(_tempPath))
{
Directory.CreateDirectory(_tempPath);
}
}
2024-03-26 06:26:03 +00:00
if (Utils.IsNullOrEmpty(filename))
2023-02-10 03:22:03 +00:00
{
return _tempPath;
}
else
{
return Path.Combine(_tempPath, filename);
}
2023-01-01 11:42:01 +00:00
}
2023-04-14 12:49:36 +00:00
2023-01-01 11:42:01 +00:00
public static string GetLogPath(string filename = "")
{
string _tempPath = Path.Combine(StartupPath(), "guiLogs");
if (!Directory.Exists(_tempPath))
{
Directory.CreateDirectory(_tempPath);
}
2024-03-26 06:26:03 +00:00
if (Utils.IsNullOrEmpty(filename))
2023-01-01 11:42:01 +00:00
{
return _tempPath;
}
else
{
return Path.Combine(_tempPath, filename);
}
}
2023-04-14 12:49:36 +00:00
2023-02-04 04:50:38 +00:00
public static string GetFontsPath(string filename = "")
{
string _tempPath = Path.Combine(StartupPath(), "guiFonts");
if (!Directory.Exists(_tempPath))
{
Directory.CreateDirectory(_tempPath);
}
2024-03-26 06:26:03 +00:00
if (Utils.IsNullOrEmpty(filename))
2023-02-04 04:50:38 +00:00
{
return _tempPath;
}
else
{
return Path.Combine(_tempPath, filename);
}
}
2022-03-20 12:40:07 +00:00
2023-04-14 12:49:36 +00:00
#endregion TempPath
#region Platform
public static bool IsWindows() => RuntimeInformation.IsOSPlatform(OSPlatform.Windows);
public static bool IsLinux() => RuntimeInformation.IsOSPlatform(OSPlatform.Linux);
public static bool IsOSX() => RuntimeInformation.IsOSPlatform(OSPlatform.OSX);
public static string GetExeName(string name)
{
if (IsWindows())
{
return $"{name}.exe";
}
else
{
return name;
}
}
public static bool IsAdministrator()
{
if (IsWindows())
{
return new WindowsPrincipal(WindowsIdentity.GetCurrent()).IsInRole(WindowsBuiltInRole.Administrator);
}
else
{
return Mono.Unix.Native.Syscall.geteuid() == 0;
}
}
#endregion Platform
2019-10-11 06:15:20 +00:00
}
2024-04-10 05:32:50 +00:00
}