Compare commits

..

30 Commits
6.39 ... 6.43

Author SHA1 Message Date
2dust
e0cea929ea Up 6.43 2024-04-10 13:52:38 +08:00
2dust
315f4c35f0 Code clean 2024-04-10 13:32:50 +08:00
2dust
d961ea22a6 Built-in routing rule set upgraded to V2 2024-04-10 10:50:52 +08:00
2dust
5c0c07c78f Migrate geosite & geoip to rule sets (sing-box) 2024-04-10 08:42:53 +08:00
2dust
bba93a0fb7 Added tls fragment support (Xray-core)
https://github.com/2dust/v2rayN/issues/4900
2024-04-08 17:06:48 +08:00
2dust
5683df2fc0 Added outbound HTTP support (support group prefix proxy)
https://github.com/2dust/v2rayN/discussions/4550
2024-04-08 14:02:56 +08:00
2dust
b5cb9ce67e Set autoHideStartup default value is false 2024-04-05 17:24:53 +08:00
2dust
06a32dc895 Adjust sing-box dns default example 2024-04-05 11:05:45 +08:00
2dust
dff12a8a3a fix
https://github.com/2dust/v2rayN/issues/4928
2024-04-05 11:04:35 +08:00
2dust
dc3f07ee84 Bug fix 2024-04-03 09:51:07 +08:00
2dust
1aef49ee11 Custom configuration file to use Xray prefix in non-Tun mode
https://github.com/2dust/v2rayN/issues/4855
2024-04-01 08:22:14 +08:00
2dust
ee3159b00e Update 6.42 2024-03-31 17:26:02 +08:00
2dust
86d2c307f1 Bug fix 2024-03-31 17:23:33 +08:00
2dust
7823a217b4 Update 6.41 2024-03-31 08:09:13 +08:00
2dust
2004df8337 Rename Model to Models 2024-03-31 08:08:06 +08:00
2dust
13bc2d0340 Bug fix
https://github.com/2dust/v2rayN/issues/4902
2024-03-31 07:54:22 +08:00
2dust
edbc850346 Update 6.40 2024-03-30 18:12:37 +08:00
2dust
901d3c85ca Up PackageReference 2024-03-30 16:15:13 +08:00
2dust
abbe83f3c2 Fixed issues with multi-core traffic processing 2024-03-30 16:00:19 +08:00
2dust
bb3a04a9c8 Bug fix for exit app 2024-03-30 15:26:12 +08:00
2dust
bac13e8b71 Rename Utile to Utils 2024-03-26 14:26:03 +08:00
2dust
3871681de3 Improve remove Application.Current.Shutdown 2024-03-26 14:22:53 +08:00
2dust
ae6f2b6df6 Up PackageReference 2024-03-26 14:19:14 +08:00
2dust
f59bbc9981 Add authority for grpc 2024-03-23 18:26:44 +08:00
2dust
eac0c84e11 Improve IsNullOrEmpty 2024-03-23 18:26:04 +08:00
2dust
f814cc443d Improve 2024-03-23 10:47:06 +08:00
2dust
262466303b Import Multiple Custom v2ray-core Json Configs from Subscription
https://github.com/2dust/v2rayN/issues/4745
2024-03-23 10:46:45 +08:00
2dust
3b4cc2c5f2 Merge pull request #4848 from 1208nn/patch-2
Update schdtask related code
2024-03-16 16:25:58 +08:00
ShH Y
023d3fbf6f Update Utile.cs 2024-03-16 11:38:41 +08:00
2dust
fe01f290bc Improve 2024-03-13 16:38:37 +08:00
99 changed files with 1384 additions and 1067 deletions

View File

@@ -9,8 +9,8 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Google.Protobuf" Version="3.25.3" /> <PackageReference Include="Google.Protobuf" Version="3.26.1" />
<PackageReference Include="Grpc.Net.Client" Version="2.61.0" /> <PackageReference Include="Grpc.Net.Client" Version="2.62.0" />
<PackageReference Include="Grpc.Tools" Version="2.62.0"> <PackageReference Include="Grpc.Tools" Version="2.62.0">
<PrivateAssets>all</PrivateAssets> <PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

View File

@@ -1,7 +1,8 @@
using System.Windows; using System.Diagnostics;
using System.Windows;
using System.Windows.Threading; using System.Windows.Threading;
using v2rayN.Handler; using v2rayN.Handler;
using v2rayN.Model; using v2rayN.Models;
namespace v2rayN namespace v2rayN
{ {
@@ -27,14 +28,13 @@ namespace v2rayN
/// <param name="e"></param> /// <param name="e"></param>
protected override void OnStartup(StartupEventArgs e) protected override void OnStartup(StartupEventArgs e)
{ {
var exePathKey = Utile.GetMD5(Utile.GetExePath()); var exePathKey = Utils.GetMD5(Utils.GetExePath());
var rebootas = (e.Args ?? new string[] { }).Any(t => t == Global.RebootAs); var rebootas = (e.Args ?? new string[] { }).Any(t => t == Global.RebootAs);
ProgramStarted = new EventWaitHandle(false, EventResetMode.AutoReset, exePathKey, out bool bCreatedNew); ProgramStarted = new EventWaitHandle(false, EventResetMode.AutoReset, exePathKey, out bool bCreatedNew);
if (!rebootas && !bCreatedNew) if (!rebootas && !bCreatedNew)
{ {
ProgramStarted.Set(); ProgramStarted.Set();
Current.Shutdown();
Environment.Exit(0); Environment.Exit(0);
return; return;
} }
@@ -42,7 +42,7 @@ namespace v2rayN
Logging.Setup(); Logging.Setup();
Init(); Init();
Logging.LoggingEnabled(_config.guiItem.enableLog); Logging.LoggingEnabled(_config.guiItem.enableLog);
Logging.SaveLog($"v2rayN start up | {Utile.GetVersion()} | {Utile.GetExePath()}"); Logging.SaveLog($"v2rayN start up | {Utils.GetVersion()} | {Utils.GetExePath()}");
Logging.ClearLogs(); Logging.ClearLogs();
Thread.CurrentThread.CurrentUICulture = new(_config.uiItem.currentLanguage); Thread.CurrentThread.CurrentUICulture = new(_config.uiItem.currentLanguage);
@@ -55,7 +55,6 @@ namespace v2rayN
if (ConfigHandler.LoadConfig(ref _config) != 0) if (ConfigHandler.LoadConfig(ref _config) != 0)
{ {
UI.Show($"Loading GUI configuration file is abnormal,please restart the application{Environment.NewLine}加载GUI配置文件异常,请重启应用"); UI.Show($"Loading GUI configuration file is abnormal,please restart the application{Environment.NewLine}加载GUI配置文件异常,请重启应用");
Application.Current.Shutdown();
Environment.Exit(0); Environment.Exit(0);
return; return;
} }
@@ -83,5 +82,12 @@ namespace v2rayN
{ {
Logging.SaveLog("TaskScheduler_UnobservedTaskException", e.Exception); Logging.SaveLog("TaskScheduler_UnobservedTaskException", e.Exception);
} }
protected override void OnExit(ExitEventArgs e)
{
Logging.SaveLog("OnExit");
base.OnExit(e);
Process.GetCurrentProcess().Kill();
}
} }
} }

View File

@@ -11,7 +11,7 @@ namespace v2rayN
public async Task<string?> DownloadStringAsync(IWebProxy? webProxy, string url, string? userAgent, int timeout) public async Task<string?> DownloadStringAsync(IWebProxy? webProxy, string url, string? userAgent, int timeout)
{ {
if (string.IsNullOrEmpty(url)) if (Utils.IsNullOrEmpty(url))
{ {
return null; return null;
} }
@@ -19,9 +19,9 @@ namespace v2rayN
Uri uri = new(url); Uri uri = new(url);
//Authorization Header //Authorization Header
var headers = new WebHeaderCollection(); var headers = new WebHeaderCollection();
if (!Utile.IsNullOrEmpty(uri.UserInfo)) if (!Utils.IsNullOrEmpty(uri.UserInfo))
{ {
headers.Add(HttpRequestHeader.Authorization, "Basic " + Utile.Base64Encode(uri.UserInfo)); headers.Add(HttpRequestHeader.Authorization, "Basic " + Utils.Base64Encode(uri.UserInfo));
} }
var downloadOpt = new DownloadConfiguration() var downloadOpt = new DownloadConfiguration()
@@ -57,7 +57,7 @@ namespace v2rayN
public async Task DownloadDataAsync4Speed(IWebProxy webProxy, string url, IProgress<string> progress, int timeout) public async Task DownloadDataAsync4Speed(IWebProxy webProxy, string url, IProgress<string> progress, int timeout)
{ {
if (string.IsNullOrEmpty(url)) if (Utils.IsNullOrEmpty(url))
{ {
throw new ArgumentNullException(nameof(url)); throw new ArgumentNullException(nameof(url));
} }
@@ -120,11 +120,11 @@ namespace v2rayN
public async Task DownloadFileAsync(IWebProxy? webProxy, string url, string fileName, IProgress<double> progress, int timeout) public async Task DownloadFileAsync(IWebProxy? webProxy, string url, string fileName, IProgress<double> progress, int timeout)
{ {
if (string.IsNullOrEmpty(url)) if (Utils.IsNullOrEmpty(url))
{ {
throw new ArgumentNullException(nameof(url)); throw new ArgumentNullException(nameof(url));
} }
if (string.IsNullOrEmpty(fileName)) if (Utils.IsNullOrEmpty(fileName))
{ {
throw new ArgumentNullException(nameof(fileName)); throw new ArgumentNullException(nameof(fileName));
} }

View File

@@ -67,7 +67,7 @@ namespace v2rayN
} }
try try
{ {
if (!Utile.IsNullOrEmpty(ignoredName) && entry.Name.Contains(ignoredName)) if (!Utils.IsNullOrEmpty(ignoredName) && entry.Name.Contains(ignoredName))
{ {
continue; continue;
} }

View File

@@ -23,19 +23,19 @@ namespace v2rayN
public async Task<string?> GetAsync(string url) public async Task<string?> GetAsync(string url)
{ {
if (string.IsNullOrEmpty(url)) return null; if (Utils.IsNullOrEmpty(url)) return null;
return await httpClient.GetStringAsync(url); return await httpClient.GetStringAsync(url);
} }
public async Task<string?> GetAsync(HttpClient client, string url, CancellationToken token = default) public async Task<string?> GetAsync(HttpClient client, string url, CancellationToken token = default)
{ {
if (string.IsNullOrWhiteSpace(url)) return null; if (Utils.IsNullOrEmpty(url)) return null;
return await client.GetStringAsync(url, token); return await client.GetStringAsync(url, token);
} }
public async Task PutAsync(string url, Dictionary<string, string> headers) public async Task PutAsync(string url, Dictionary<string, string> headers)
{ {
var jsonContent = JsonUtile.Serialize(headers); var jsonContent = JsonUtils.Serialize(headers);
var content = new StringContent(jsonContent, Encoding.UTF8, MediaTypeNames.Application.Json); var content = new StringContent(jsonContent, Encoding.UTF8, MediaTypeNames.Application.Json);
var result = await httpClient.PutAsync(url, content); var result = await httpClient.PutAsync(url, content);
@@ -76,19 +76,19 @@ namespace v2rayN
//if (progressPercentage != percent && percent % 10 == 0) //if (progressPercentage != percent && percent % 10 == 0)
{ {
progressPercentage = percent; progressPercentage = percent;
progress!.Report(percent); progress?.Report(percent);
} }
} }
} }
if (canReportProgress) if (canReportProgress)
{ {
progress!.Report(101); progress?.Report(101);
} }
} }
public async Task DownloadDataAsync4Speed(HttpClient client, string url, IProgress<string> progress, CancellationToken token = default) public async Task DownloadDataAsync4Speed(HttpClient client, string url, IProgress<string> progress, CancellationToken token = default)
{ {
if (string.IsNullOrEmpty(url)) if (Utils.IsNullOrEmpty(url))
{ {
throw new ArgumentNullException(nameof(url)); throw new ArgumentNullException(nameof(url));
} }

View File

@@ -5,7 +5,7 @@ using System.Text.Json.Serialization;
namespace v2rayN namespace v2rayN
{ {
internal class JsonUtile internal class JsonUtils
{ {
/// <summary> /// <summary>
/// DeepCopy /// DeepCopy
@@ -28,7 +28,7 @@ namespace v2rayN
{ {
try try
{ {
if (string.IsNullOrEmpty(strJson)) if (string.IsNullOrWhiteSpace(strJson))
{ {
return default; return default;
} }
@@ -49,7 +49,7 @@ namespace v2rayN
{ {
try try
{ {
if (string.IsNullOrEmpty(strJson)) if (string.IsNullOrWhiteSpace(strJson))
{ {
return null; return null;
} }

View File

@@ -13,7 +13,7 @@ namespace v2rayN
FileTarget fileTarget = new(); FileTarget fileTarget = new();
config.AddTarget("file", fileTarget); config.AddTarget("file", fileTarget);
fileTarget.Layout = "${longdate}-${level:uppercase=true} ${message}"; fileTarget.Layout = "${longdate}-${level:uppercase=true} ${message}";
fileTarget.FileName = Utile.GetLogPath("${shortdate}.txt"); fileTarget.FileName = Utils.GetLogPath("${shortdate}.txt");
config.LoggingRules.Add(new LoggingRule("*", LogLevel.Debug, fileTarget)); config.LoggingRules.Add(new LoggingRule("*", LogLevel.Debug, fileTarget));
LogManager.Configuration = config; LogManager.Configuration = config;
} }
@@ -33,7 +33,7 @@ namespace v2rayN
try try
{ {
var now = DateTime.Now.AddMonths(-1); var now = DateTime.Now.AddMonths(-1);
var dir = Utile.GetLogPath(); var dir = Utils.GetLogPath();
var files = Directory.GetFiles(dir, "*.txt"); var files = Directory.GetFiles(dir, "*.txt");
foreach (var filePath in files) foreach (var filePath in files)
{ {

View File

@@ -15,7 +15,7 @@ namespace v2rayN
public SQLiteHelper() public SQLiteHelper()
{ {
_connstr = Utile.GetConfigPath(_configDB); _connstr = Utils.GetConfigPath(_configDB);
_db = new SQLiteConnection(_connstr, false); _db = new SQLiteConnection(_connstr, false);
_dbAsync = new SQLiteAsyncConnection(_connstr, false); _dbAsync = new SQLiteAsyncConnection(_connstr, false);
} }

View File

@@ -25,7 +25,7 @@ using ZXing.Windows.Compatibility;
namespace v2rayN namespace v2rayN
{ {
internal class Utile internal class Utils
{ {
#region Json操作 #region Json操作
@@ -361,7 +361,7 @@ namespace v2rayN
/// <returns></returns> /// <returns></returns>
public static string GetPunycode(string url) public static string GetPunycode(string url)
{ {
if (string.IsNullOrWhiteSpace(url)) if (Utils.IsNullOrEmpty(url))
{ {
return url; return url;
} }
@@ -391,7 +391,7 @@ namespace v2rayN
public static string Convert2Comma(string text) public static string Convert2Comma(string text)
{ {
if (string.IsNullOrWhiteSpace(text)) if (Utils.IsNullOrEmpty(text))
{ {
return text; return text;
} }
@@ -428,7 +428,7 @@ namespace v2rayN
/// <returns></returns> /// <returns></returns>
public static bool IsNullOrEmpty(string? text) public static bool IsNullOrEmpty(string? text)
{ {
if (string.IsNullOrEmpty(text)) if (string.IsNullOrWhiteSpace(text))
{ {
return true; return true;
} }
@@ -583,7 +583,7 @@ namespace v2rayN
{ {
try try
{ {
if (!Utile.PortInUse(defaultPort)) if (!Utils.PortInUse(defaultPort))
{ {
return defaultPort; return defaultPort;
} }
@@ -840,7 +840,7 @@ namespace v2rayN
{ {
Directory.CreateDirectory(_tempPath); Directory.CreateDirectory(_tempPath);
} }
if (string.IsNullOrEmpty(filename)) if (Utils.IsNullOrEmpty(filename))
{ {
return _tempPath; return _tempPath;
} }
@@ -876,7 +876,7 @@ namespace v2rayN
{ {
Directory.CreateDirectory(_tempPath); Directory.CreateDirectory(_tempPath);
} }
if (string.IsNullOrEmpty(filename)) if (Utils.IsNullOrEmpty(filename))
{ {
return _tempPath; return _tempPath;
} }
@@ -901,7 +901,7 @@ namespace v2rayN
Directory.CreateDirectory(_tempPath); Directory.CreateDirectory(_tempPath);
} }
} }
if (string.IsNullOrEmpty(filename)) if (Utils.IsNullOrEmpty(filename))
{ {
return _tempPath; return _tempPath;
} }
@@ -918,7 +918,7 @@ namespace v2rayN
{ {
Directory.CreateDirectory(_tempPath); Directory.CreateDirectory(_tempPath);
} }
if (string.IsNullOrEmpty(filename)) if (Utils.IsNullOrEmpty(filename))
{ {
return _tempPath; return _tempPath;
} }
@@ -935,7 +935,7 @@ namespace v2rayN
{ {
Directory.CreateDirectory(_tempPath); Directory.CreateDirectory(_tempPath);
} }
if (string.IsNullOrEmpty(filename)) if (Utils.IsNullOrEmpty(filename))
{ {
return _tempPath; return _tempPath;
} }
@@ -1029,14 +1029,14 @@ namespace v2rayN
if (run) if (run)
{ {
string exePath = $"\"{GetExePath()}\""; string exePath = GetExePath();
if (IsAdministrator()) if (IsAdministrator())
{ {
AutoStart(autoRunName, exePath, ""); AutoStart(autoRunName, exePath, "");
} }
else else
{ {
RegWriteValue(AutoRunRegPath, autoRunName, exePath); RegWriteValue(AutoRunRegPath, autoRunName, exePath.AppendQuotes());
} }
} }
} }
@@ -1107,7 +1107,7 @@ namespace v2rayN
/// <exception cref="ArgumentNullException"></exception> /// <exception cref="ArgumentNullException"></exception>
public static void AutoStart(string taskName, string fileName, string description) public static void AutoStart(string taskName, string fileName, string description)
{ {
if (string.IsNullOrEmpty(taskName)) if (Utils.IsNullOrEmpty(taskName))
{ {
return; return;
} }
@@ -1122,7 +1122,7 @@ namespace v2rayN
{ {
taskService.RootFolder.DeleteTask(t.Name); taskService.RootFolder.DeleteTask(t.Name);
} }
if (string.IsNullOrEmpty(fileName)) if (Utils.IsNullOrEmpty(fileName))
{ {
return; return;
} }
@@ -1136,7 +1136,7 @@ namespace v2rayN
task.Settings.ExecutionTimeLimit = TimeSpan.Zero; task.Settings.ExecutionTimeLimit = TimeSpan.Zero;
task.Triggers.Add(new LogonTrigger { UserId = logonUser, Delay = TimeSpan.FromSeconds(10) }); task.Triggers.Add(new LogonTrigger { UserId = logonUser, Delay = TimeSpan.FromSeconds(10) });
task.Principal.RunLevel = TaskRunLevel.Highest; task.Principal.RunLevel = TaskRunLevel.Highest;
task.Actions.Add(new ExecAction(deamonFileName)); task.Actions.Add(new ExecAction(deamonFileName.AppendQuotes(), null, Path.GetDirectoryName(deamonFileName)));
taskService.RootFolder.RegisterTaskDefinition(TaskName, task); taskService.RootFolder.RegisterTaskDefinition(TaskName, task);
} }

View File

@@ -12,9 +12,9 @@ namespace v2rayN.Converters
try try
{ {
var fontFamily = LazyConfig.Instance.GetConfig().uiItem.currentFontFamily; var fontFamily = LazyConfig.Instance.GetConfig().uiItem.currentFontFamily;
if (!string.IsNullOrEmpty(fontFamily)) if (!Utils.IsNullOrEmpty(fontFamily))
{ {
var fontPath = Utile.GetFontsPath(); var fontPath = Utils.GetFontsPath();
MyFont = new FontFamily(new Uri(@$"file:///{fontPath}\"), $"./#{fontFamily}"); MyFont = new FontFamily(new Uri(@$"file:///{fontPath}\"), $"./#{fontFamily}");
} }
} }

View File

@@ -1,4 +1,4 @@
using v2rayN.Model; using v2rayN.Models;
namespace v2rayN namespace v2rayN
{ {
@@ -23,6 +23,7 @@ namespace v2rayN
public const string SpeedPingTestUrl = @"https://www.google.com/generate_204"; public const string SpeedPingTestUrl = @"https://www.google.com/generate_204";
public const string JuicityCoreUrl = "https://github.com/juicity/juicity/releases"; public const string JuicityCoreUrl = "https://github.com/juicity/juicity/releases";
public const string CustomRoutingListUrl = @"https://raw.githubusercontent.com/2dust/v2rayCustomRoutingList/master/"; public const string CustomRoutingListUrl = @"https://raw.githubusercontent.com/2dust/v2rayCustomRoutingList/master/";
public const string SingboxRulesetUrl = @"https://raw.githubusercontent.com/SagerNet/sing-{0}/rule-set/{1}.srs";
public const string PromotionUrl = @"aHR0cHM6Ly85LjIzNDQ1Ni54eXovYWJjLmh0bWw="; public const string PromotionUrl = @"aHR0cHM6Ly85LjIzNDQ1Ni54eXovYWJjLmh0bWw=";
public const string ConfigFileName = "guiNConfig.json"; public const string ConfigFileName = "guiNConfig.json";
@@ -143,6 +144,7 @@ namespace v2rayN
{EConfigType.VMess,"vmess"}, {EConfigType.VMess,"vmess"},
{EConfigType.Shadowsocks,"shadowsocks"}, {EConfigType.Shadowsocks,"shadowsocks"},
{EConfigType.Socks,"socks"}, {EConfigType.Socks,"socks"},
{EConfigType.Http,"http"},
{EConfigType.VLESS,"vless"}, {EConfigType.VLESS,"vless"},
{EConfigType.Trojan,"trojan"}, {EConfigType.Trojan,"trojan"},
{EConfigType.Hysteria2,"hysteria2"}, {EConfigType.Hysteria2,"hysteria2"},

View File

@@ -1,7 +1,7 @@
using System.Data; using System.Data;
using System.IO; using System.IO;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using v2rayN.Model; using v2rayN.Models;
namespace v2rayN.Handler namespace v2rayN.Handler
{ {
@@ -23,15 +23,15 @@ namespace v2rayN.Handler
public static int LoadConfig(ref Config? config) public static int LoadConfig(ref Config? config)
{ {
//载入配置文件 //载入配置文件
var result = Utile.LoadResource(Utile.GetConfigPath(configRes)); var result = Utils.LoadResource(Utils.GetConfigPath(configRes));
if (!Utile.IsNullOrEmpty(result)) if (!Utils.IsNullOrEmpty(result))
{ {
//转成Json //转成Json
config = JsonUtile.Deserialize<Config>(result); config = JsonUtils.Deserialize<Config>(result);
} }
else else
{ {
if (File.Exists(Utile.GetConfigPath(configRes))) if (File.Exists(Utils.GetConfigPath(configRes)))
{ {
Logging.SaveLog("LoadConfig Exception"); Logging.SaveLog("LoadConfig Exception");
return -1; return -1;
@@ -85,7 +85,7 @@ namespace v2rayN.Handler
}; };
} }
//路由规则 //路由规则
if (Utile.IsNullOrEmpty(config.routingBasicItem.domainStrategy)) if (Utils.IsNullOrEmpty(config.routingBasicItem.domainStrategy))
{ {
config.routingBasicItem.domainStrategy = Global.DomainStrategies[0];//"IPIfNonMatch"; config.routingBasicItem.domainStrategy = Global.DomainStrategies[0];//"IPIfNonMatch";
} }
@@ -144,7 +144,7 @@ namespace v2rayN.Handler
{ {
config.uiItem.mainColumnItem = new(); config.uiItem.mainColumnItem = new();
} }
if (Utile.IsNullOrEmpty(config.uiItem.currentLanguage)) if (Utils.IsNullOrEmpty(config.uiItem.currentLanguage))
{ {
config.uiItem.currentLanguage = Global.Languages[0]; config.uiItem.currentLanguage = Global.Languages[0];
} }
@@ -153,7 +153,7 @@ namespace v2rayN.Handler
{ {
config.constItem = new ConstItem(); config.constItem = new ConstItem();
} }
if (Utile.IsNullOrEmpty(config.constItem.defIEProxyExceptions)) if (Utils.IsNullOrEmpty(config.constItem.defIEProxyExceptions))
{ {
config.constItem.defIEProxyExceptions = Global.IEProxyExceptions; config.constItem.defIEProxyExceptions = Global.IEProxyExceptions;
} }
@@ -166,11 +166,11 @@ namespace v2rayN.Handler
{ {
config.speedTestItem.speedTestTimeout = 10; config.speedTestItem.speedTestTimeout = 10;
} }
if (Utile.IsNullOrEmpty(config.speedTestItem.speedTestUrl)) if (Utils.IsNullOrEmpty(config.speedTestItem.speedTestUrl))
{ {
config.speedTestItem.speedTestUrl = Global.SpeedTestUrls[0]; config.speedTestItem.speedTestUrl = Global.SpeedTestUrls[0];
} }
if (Utile.IsNullOrEmpty(config.speedTestItem.speedPingTestUrl)) if (Utils.IsNullOrEmpty(config.speedTestItem.speedPingTestUrl))
{ {
config.speedTestItem.speedPingTestUrl = Global.SpeedPingTestUrl; config.speedTestItem.speedPingTestUrl = Global.SpeedPingTestUrl;
} }
@@ -220,9 +220,9 @@ namespace v2rayN.Handler
try try
{ {
//save temp file //save temp file
var resPath = Utile.GetConfigPath(configRes); var resPath = Utils.GetConfigPath(configRes);
var tempPath = $"{resPath}_temp"; var tempPath = $"{resPath}_temp";
if (JsonUtile.ToFile(config, tempPath) != 0) if (JsonUtils.ToFile(config, tempPath) != 0)
{ {
return; return;
} }
@@ -243,34 +243,34 @@ namespace v2rayN.Handler
public static int ImportOldGuiConfig(Config config, string fileName) public static int ImportOldGuiConfig(Config config, string fileName)
{ {
var result = Utile.LoadResource(fileName); var result = Utils.LoadResource(fileName);
if (Utile.IsNullOrEmpty(result)) if (Utils.IsNullOrEmpty(result))
{ {
return -1; return -1;
} }
var configOld = JsonUtile.Deserialize<ConfigOld>(result); var configOld = JsonUtils.Deserialize<ConfigOld>(result);
if (configOld == null) if (configOld == null)
{ {
return -1; return -1;
} }
var subItem = JsonUtile.Deserialize<List<SubItem>>(JsonUtile.Serialize(configOld.subItem)); var subItem = JsonUtils.Deserialize<List<SubItem>>(JsonUtils.Serialize(configOld.subItem));
foreach (var it in subItem) foreach (var it in subItem)
{ {
if (Utile.IsNullOrEmpty(it.id)) if (Utils.IsNullOrEmpty(it.id))
{ {
it.id = Utile.GetGUID(false); it.id = Utils.GetGUID(false);
} }
SQLiteHelper.Instance.Replace(it); SQLiteHelper.Instance.Replace(it);
} }
var profileItems = JsonUtile.Deserialize<List<ProfileItem>>(JsonUtile.Serialize(configOld.vmess)); var profileItems = JsonUtils.Deserialize<List<ProfileItem>>(JsonUtils.Serialize(configOld.vmess));
foreach (var it in profileItems) foreach (var it in profileItems)
{ {
if (Utile.IsNullOrEmpty(it.indexId)) if (Utils.IsNullOrEmpty(it.indexId))
{ {
it.indexId = Utile.GetGUID(false); it.indexId = Utils.GetGUID(false);
} }
SQLiteHelper.Instance.Replace(it); SQLiteHelper.Instance.Replace(it);
} }
@@ -281,22 +281,22 @@ namespace v2rayN.Handler
{ {
continue; continue;
} }
var routing = JsonUtile.Deserialize<RoutingItem>(JsonUtile.Serialize(it)); var routing = JsonUtils.Deserialize<RoutingItem>(JsonUtils.Serialize(it));
foreach (var it2 in it.rules) foreach (var it2 in it.rules)
{ {
it2.id = Utile.GetGUID(false); it2.id = Utils.GetGUID(false);
} }
routing.ruleNum = it.rules.Count; routing.ruleNum = it.rules.Count;
routing.ruleSet = JsonUtile.Serialize(it.rules, false); routing.ruleSet = JsonUtils.Serialize(it.rules, false);
if (Utile.IsNullOrEmpty(routing.id)) if (Utils.IsNullOrEmpty(routing.id))
{ {
routing.id = Utile.GetGUID(false); routing.id = Utils.GetGUID(false);
} }
SQLiteHelper.Instance.Replace(routing); SQLiteHelper.Instance.Replace(routing);
} }
config = JsonUtile.Deserialize<Config>(JsonUtile.Serialize(configOld)); config = JsonUtils.Deserialize<Config>(JsonUtils.Serialize(configOld));
if (config.coreBasicItem == null) if (config.coreBasicItem == null)
{ {
@@ -412,13 +412,13 @@ namespace v2rayN.Handler
continue; continue;
} }
ProfileItem profileItem = JsonUtile.DeepCopy(item); ProfileItem profileItem = JsonUtils.DeepCopy(item);
profileItem.indexId = string.Empty; profileItem.indexId = string.Empty;
profileItem.remarks = $"{item.remarks}-clone"; profileItem.remarks = $"{item.remarks}-clone";
if (profileItem.configType == EConfigType.Custom) if (profileItem.configType == EConfigType.Custom)
{ {
profileItem.address = Utile.GetConfigPath(profileItem.address); profileItem.address = Utils.GetConfigPath(profileItem.address);
if (AddCustomServer(config, profileItem, false) == 0) if (AddCustomServer(config, profileItem, false) == 0)
{ {
} }
@@ -440,7 +440,7 @@ namespace v2rayN.Handler
/// <returns></returns> /// <returns></returns>
public static int SetDefaultServerIndex(Config config, string? indexId) public static int SetDefaultServerIndex(Config config, string? indexId)
{ {
if (Utile.IsNullOrEmpty(indexId)) if (Utils.IsNullOrEmpty(indexId))
{ {
return -1; return -1;
} }
@@ -570,12 +570,12 @@ namespace v2rayN.Handler
return -1; return -1;
} }
var ext = Path.GetExtension(fileName); var ext = Path.GetExtension(fileName);
string newFileName = $"{Utile.GetGUID()}{ext}"; string newFileName = $"{Utils.GetGUID()}{ext}";
//newFileName = Path.Combine(Utile.GetTempPath(), newFileName); //newFileName = Path.Combine(Utile.GetTempPath(), newFileName);
try try
{ {
File.Copy(fileName, Utile.GetConfigPath(newFileName)); File.Copy(fileName, Utils.GetConfigPath(newFileName));
if (blDelete) if (blDelete)
{ {
File.Delete(fileName); File.Delete(fileName);
@@ -589,7 +589,7 @@ namespace v2rayN.Handler
profileItem.address = newFileName; profileItem.address = newFileName;
profileItem.configType = EConfigType.Custom; profileItem.configType = EConfigType.Custom;
if (Utile.IsNullOrEmpty(profileItem.remarks)) if (Utils.IsNullOrEmpty(profileItem.remarks))
{ {
profileItem.remarks = $"import custom@{DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss")}"; profileItem.remarks = $"import custom@{DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss")}";
} }
@@ -664,6 +664,23 @@ namespace v2rayN.Handler
return 0; return 0;
} }
/// <summary>
/// Add or edit server
/// </summary>
/// <param name="config"></param>
/// <param name="profileItem"></param>
/// <returns></returns>
public static int AddHttpServer(Config config, ProfileItem profileItem, bool toFile = true)
{
profileItem.configType = EConfigType.Http;
profileItem.address = profileItem.address.TrimEx();
AddServerCommon(config, profileItem, toFile);
return 0;
}
/// <summary> /// <summary>
/// Add or edit server /// Add or edit server
/// </summary> /// </summary>
@@ -676,7 +693,7 @@ namespace v2rayN.Handler
profileItem.address = profileItem.address.TrimEx(); profileItem.address = profileItem.address.TrimEx();
profileItem.id = profileItem.id.TrimEx(); profileItem.id = profileItem.id.TrimEx();
if (Utile.IsNullOrEmpty(profileItem.streamSecurity)) if (Utils.IsNullOrEmpty(profileItem.streamSecurity))
{ {
profileItem.streamSecurity = Global.StreamSecurity; profileItem.streamSecurity = Global.StreamSecurity;
} }
@@ -706,7 +723,7 @@ namespace v2rayN.Handler
profileItem.path = profileItem.path.TrimEx(); profileItem.path = profileItem.path.TrimEx();
profileItem.network = string.Empty; profileItem.network = string.Empty;
if (Utile.IsNullOrEmpty(profileItem.streamSecurity)) if (Utils.IsNullOrEmpty(profileItem.streamSecurity))
{ {
profileItem.streamSecurity = Global.StreamSecurity; profileItem.streamSecurity = Global.StreamSecurity;
} }
@@ -741,11 +758,11 @@ namespace v2rayN.Handler
profileItem.headerType = Global.TuicCongestionControls.FirstOrDefault()!; profileItem.headerType = Global.TuicCongestionControls.FirstOrDefault()!;
} }
if (Utile.IsNullOrEmpty(profileItem.streamSecurity)) if (Utils.IsNullOrEmpty(profileItem.streamSecurity))
{ {
profileItem.streamSecurity = Global.StreamSecurity; profileItem.streamSecurity = Global.StreamSecurity;
} }
if (Utile.IsNullOrEmpty(profileItem.alpn)) if (Utils.IsNullOrEmpty(profileItem.alpn))
{ {
profileItem.alpn = "h3"; profileItem.alpn = "h3";
} }
@@ -913,7 +930,7 @@ namespace v2rayN.Handler
{ {
return -1; return -1;
} }
if (!Utile.IsNullOrEmpty(profileItem.security) && profileItem.security != Global.None) if (!Utils.IsNullOrEmpty(profileItem.security) && profileItem.security != Global.None)
{ {
profileItem.security = Global.None; profileItem.security = Global.None;
} }
@@ -951,7 +968,7 @@ namespace v2rayN.Handler
{ {
profileItem.configVersion = 2; profileItem.configVersion = 2;
if (!Utile.IsNullOrEmpty(profileItem.streamSecurity)) if (!Utils.IsNullOrEmpty(profileItem.streamSecurity))
{ {
if (profileItem.streamSecurity != Global.StreamSecurity if (profileItem.streamSecurity != Global.StreamSecurity
&& profileItem.streamSecurity != Global.StreamSecurityReality) && profileItem.streamSecurity != Global.StreamSecurityReality)
@@ -960,26 +977,26 @@ namespace v2rayN.Handler
} }
else else
{ {
if (Utile.IsNullOrEmpty(profileItem.allowInsecure)) if (Utils.IsNullOrEmpty(profileItem.allowInsecure))
{ {
profileItem.allowInsecure = config.coreBasicItem.defAllowInsecure.ToString().ToLower(); profileItem.allowInsecure = config.coreBasicItem.defAllowInsecure.ToString().ToLower();
} }
if (Utile.IsNullOrEmpty(profileItem.fingerprint) && profileItem.streamSecurity == Global.StreamSecurityReality) if (Utils.IsNullOrEmpty(profileItem.fingerprint) && profileItem.streamSecurity == Global.StreamSecurityReality)
{ {
profileItem.fingerprint = config.coreBasicItem.defFingerprint; profileItem.fingerprint = config.coreBasicItem.defFingerprint;
} }
} }
} }
if (!Utile.IsNullOrEmpty(profileItem.network) && !Global.Networks.Contains(profileItem.network)) if (!Utils.IsNullOrEmpty(profileItem.network) && !Global.Networks.Contains(profileItem.network))
{ {
profileItem.network = Global.DefaultNetwork; profileItem.network = Global.DefaultNetwork;
} }
var maxSort = -1; var maxSort = -1;
if (Utile.IsNullOrEmpty(profileItem.indexId)) if (Utils.IsNullOrEmpty(profileItem.indexId))
{ {
profileItem.indexId = Utile.GetGUID(false); profileItem.indexId = Utils.GetGUID(false);
maxSort = ProfileExHandler.Instance.GetMaxSort(); maxSort = ProfileExHandler.Instance.GetMaxSort();
} }
if (!toFile && maxSort < 0) if (!toFile && maxSort < 0)
@@ -1032,7 +1049,7 @@ namespace v2rayN.Handler
} }
if (item.configType == EConfigType.Custom) if (item.configType == EConfigType.Custom)
{ {
File.Delete(Utile.GetConfigPath(item.address)); File.Delete(Utils.GetConfigPath(item.address));
} }
SQLiteHelper.Instance.Delete(item); SQLiteHelper.Instance.Delete(item);
@@ -1058,14 +1075,14 @@ namespace v2rayN.Handler
/// <returns>成功导入的数量</returns> /// <returns>成功导入的数量</returns>
private static int AddBatchServers(Config config, string clipboardData, string subid, bool isSub, List<ProfileItem> lstOriSub) private static int AddBatchServers(Config config, string clipboardData, string subid, bool isSub, List<ProfileItem> lstOriSub)
{ {
if (Utile.IsNullOrEmpty(clipboardData)) if (Utils.IsNullOrEmpty(clipboardData))
{ {
return -1; return -1;
} }
string subFilter = string.Empty; string subFilter = string.Empty;
//remove sub items //remove sub items
if (isSub && !Utile.IsNullOrEmpty(subid)) if (isSub && !Utils.IsNullOrEmpty(subid))
{ {
RemoveServerViaSubid(config, subid, isSub); RemoveServerViaSubid(config, subid, isSub);
subFilter = LazyConfig.Instance.GetSubItem(subid)?.filter ?? ""; subFilter = LazyConfig.Instance.GetSubItem(subid)?.filter ?? "";
@@ -1098,7 +1115,7 @@ namespace v2rayN.Handler
} }
//exist sub items //exist sub items
if (isSub && !Utile.IsNullOrEmpty(subid)) if (isSub && !Utils.IsNullOrEmpty(subid))
{ {
var existItem = lstOriSub?.FirstOrDefault(t => t.isSub == isSub var existItem = lstOriSub?.FirstOrDefault(t => t.isSub == isSub
&& config.uiItem.enableUpdateSubOnlyRemarksExist ? t.remarks == profileItem.remarks : CompareProfileItem(t, profileItem, true)); && config.uiItem.enableUpdateSubOnlyRemarksExist ? t.remarks == profileItem.remarks : CompareProfileItem(t, profileItem, true));
@@ -1120,7 +1137,7 @@ namespace v2rayN.Handler
} }
} }
//filter //filter
if (!Utile.IsNullOrEmpty(subFilter)) if (!Utils.IsNullOrEmpty(subFilter))
{ {
if (!Regex.IsMatch(profileItem.remarks, subFilter)) if (!Regex.IsMatch(profileItem.remarks, subFilter))
{ {
@@ -1162,7 +1179,7 @@ namespace v2rayN.Handler
private static int AddBatchServers4Custom(Config config, string clipboardData, string subid, bool isSub, List<ProfileItem> lstOriSub) private static int AddBatchServers4Custom(Config config, string clipboardData, string subid, bool isSub, List<ProfileItem> lstOriSub)
{ {
if (Utile.IsNullOrEmpty(clipboardData)) if (Utils.IsNullOrEmpty(clipboardData))
{ {
return -1; return -1;
} }
@@ -1177,23 +1194,63 @@ namespace v2rayN.Handler
return false; return false;
} }
//Is v2ray array configuration
var configObjects = JsonUtils.Deserialize<Object[]>(clipboardData);
if (configObjects != null && configObjects.Length > 0)
{
if (isSub && !Utils.IsNullOrEmpty(subid))
{
RemoveServerViaSubid(config, subid, isSub);
}
int count = 0;
foreach (var configObject in configObjects)
{
var objectString = JsonUtils.Serialize(configObject);
var v2rayCon = JsonUtils.Deserialize<V2rayConfig>(objectString);
if (v2rayCon?.inbounds?.Count > 0 && v2rayCon.outbounds?.Count > 0)
{
var fileName = Utils.GetTempPath($"{Utils.GetGUID(false)}.json");
File.WriteAllText(fileName, objectString);
var profileIt = new ProfileItem
{
coreType = ECoreType.Xray,
address = fileName,
remarks = v2rayCon.remarks ?? "v2ray_custom",
subid = subid,
isSub = isSub
};
if (AddCustomServer(config, profileIt, true) == 0)
{
count++;
}
}
}
if (count > 0)
{
return count;
}
}
ProfileItem profileItem = new(); ProfileItem profileItem = new();
//Is v2ray configuration //Is v2ray configuration
var v2rayConfig = JsonUtile.Deserialize<V2rayConfig>(clipboardData); var v2rayConfig = JsonUtils.Deserialize<V2rayConfig>(clipboardData);
if (v2rayConfig?.inbounds?.Count > 0 if (v2rayConfig?.inbounds?.Count > 0
&& v2rayConfig.outbounds?.Count > 0) && v2rayConfig.outbounds?.Count > 0)
{ {
var fileName = Utile.GetTempPath($"{Utile.GetGUID(false)}.json"); var fileName = Utils.GetTempPath($"{Utils.GetGUID(false)}.json");
File.WriteAllText(fileName, clipboardData); File.WriteAllText(fileName, clipboardData);
profileItem.coreType = ECoreType.Xray; profileItem.coreType = ECoreType.Xray;
profileItem.address = fileName; profileItem.address = fileName;
profileItem.remarks = "v2ray_custom"; profileItem.remarks = v2rayConfig.remarks ?? "v2ray_custom";
} }
//Is Clash configuration //Is Clash configuration
else if (Contains(clipboardData, "port", "socks-port", "proxies")) else if (Contains(clipboardData, "port", "socks-port", "proxies"))
{ {
var fileName = Utile.GetTempPath($"{Utile.GetGUID(false)}.yaml"); var fileName = Utils.GetTempPath($"{Utils.GetGUID(false)}.yaml");
File.WriteAllText(fileName, clipboardData); File.WriteAllText(fileName, clipboardData);
profileItem.coreType = ECoreType.mihomo; profileItem.coreType = ECoreType.mihomo;
@@ -1203,7 +1260,7 @@ namespace v2rayN.Handler
//Is hysteria configuration //Is hysteria configuration
else if (Contains(clipboardData, "server", "up", "down", "listen", "<html>", "<body>")) else if (Contains(clipboardData, "server", "up", "down", "listen", "<html>", "<body>"))
{ {
var fileName = Utile.GetTempPath($"{Utile.GetGUID(false)}.json"); var fileName = Utils.GetTempPath($"{Utils.GetGUID(false)}.json");
File.WriteAllText(fileName, clipboardData); File.WriteAllText(fileName, clipboardData);
profileItem.coreType = ECoreType.hysteria; profileItem.coreType = ECoreType.hysteria;
@@ -1213,7 +1270,7 @@ namespace v2rayN.Handler
//Is naiveproxy configuration //Is naiveproxy configuration
else if (Contains(clipboardData, "listen", "proxy", "<html>", "<body>")) else if (Contains(clipboardData, "listen", "proxy", "<html>", "<body>"))
{ {
var fileName = Utile.GetTempPath($"{Utile.GetGUID(false)}.json"); var fileName = Utils.GetTempPath($"{Utils.GetGUID(false)}.json");
File.WriteAllText(fileName, clipboardData); File.WriteAllText(fileName, clipboardData);
profileItem.coreType = ECoreType.naiveproxy; profileItem.coreType = ECoreType.naiveproxy;
@@ -1231,7 +1288,7 @@ namespace v2rayN.Handler
//profileItem.remarks = "other_custom"; //profileItem.remarks = "other_custom";
} }
if (isSub && !Utile.IsNullOrEmpty(subid)) if (isSub && !Utils.IsNullOrEmpty(subid))
{ {
RemoveServerViaSubid(config, subid, isSub); RemoveServerViaSubid(config, subid, isSub);
} }
@@ -1242,7 +1299,7 @@ namespace v2rayN.Handler
profileItem.subid = subid; profileItem.subid = subid;
profileItem.isSub = isSub; profileItem.isSub = isSub;
if (Utile.IsNullOrEmpty(profileItem.address)) if (Utils.IsNullOrEmpty(profileItem.address))
{ {
return -1; return -1;
} }
@@ -1259,21 +1316,21 @@ namespace v2rayN.Handler
private static int AddBatchServers4SsSIP008(Config config, string clipboardData, string subid, bool isSub, List<ProfileItem> lstOriSub) private static int AddBatchServers4SsSIP008(Config config, string clipboardData, string subid, bool isSub, List<ProfileItem> lstOriSub)
{ {
if (Utile.IsNullOrEmpty(clipboardData)) if (Utils.IsNullOrEmpty(clipboardData))
{ {
return -1; return -1;
} }
if (isSub && !Utile.IsNullOrEmpty(subid)) if (isSub && !Utils.IsNullOrEmpty(subid))
{ {
RemoveServerViaSubid(config, subid, isSub); RemoveServerViaSubid(config, subid, isSub);
} }
//SsSIP008 //SsSIP008
var lstSsServer = JsonUtile.Deserialize<List<SsServer>>(clipboardData); var lstSsServer = JsonUtils.Deserialize<List<SsServer>>(clipboardData);
if (lstSsServer?.Count <= 0) if (lstSsServer?.Count <= 0)
{ {
var ssSIP008 = JsonUtile.Deserialize<SsSIP008>(clipboardData); var ssSIP008 = JsonUtils.Deserialize<SsSIP008>(clipboardData);
if (ssSIP008?.servers?.Count > 0) if (ssSIP008?.servers?.Count > 0)
{ {
lstSsServer = ssSIP008.servers; lstSsServer = ssSIP008.servers;
@@ -1292,7 +1349,7 @@ namespace v2rayN.Handler
security = it.method, security = it.method,
id = it.password, id = it.password,
address = it.server, address = it.server,
port = Utile.ToInt(it.server_port) port = Utils.ToInt(it.server_port)
}; };
ssItem.subid = subid; ssItem.subid = subid;
ssItem.isSub = isSub; ssItem.isSub = isSub;
@@ -1311,15 +1368,15 @@ namespace v2rayN.Handler
public static int AddBatchServers(Config config, string clipboardData, string subid, bool isSub) public static int AddBatchServers(Config config, string clipboardData, string subid, bool isSub)
{ {
List<ProfileItem>? lstOriSub = null; List<ProfileItem>? lstOriSub = null;
if (isSub && !Utile.IsNullOrEmpty(subid)) if (isSub && !Utils.IsNullOrEmpty(subid))
{ {
lstOriSub = LazyConfig.Instance.ProfileItems(subid); lstOriSub = LazyConfig.Instance.ProfileItems(subid);
} }
var counter = 0; var counter = 0;
if (Utile.IsBase64String(clipboardData)) if (Utils.IsBase64String(clipboardData))
{ {
counter = AddBatchServers(config, Utile.Base64Decode(clipboardData), subid, isSub, lstOriSub); counter = AddBatchServers(config, Utils.Base64Decode(clipboardData), subid, isSub, lstOriSub);
} }
if (counter < 1) if (counter < 1)
{ {
@@ -1327,7 +1384,7 @@ namespace v2rayN.Handler
} }
if (counter < 1) if (counter < 1)
{ {
counter = AddBatchServers(config, Utile.Base64Decode(clipboardData), subid, isSub, lstOriSub); counter = AddBatchServers(config, Utils.Base64Decode(clipboardData), subid, isSub, lstOriSub);
} }
if (counter < 1) if (counter < 1)
@@ -1374,9 +1431,9 @@ namespace v2rayN.Handler
public static int AddSubItem(Config config, SubItem subItem) public static int AddSubItem(Config config, SubItem subItem)
{ {
if (Utile.IsNullOrEmpty(subItem.id)) if (Utils.IsNullOrEmpty(subItem.id))
{ {
subItem.id = Utile.GetGUID(false); subItem.id = Utils.GetGUID(false);
if (subItem.sort <= 0) if (subItem.sort <= 0)
{ {
@@ -1406,7 +1463,7 @@ namespace v2rayN.Handler
/// <returns></returns> /// <returns></returns>
public static int RemoveServerViaSubid(Config config, string subid, bool isSub) public static int RemoveServerViaSubid(Config config, string subid, bool isSub)
{ {
if (Utile.IsNullOrEmpty(subid)) if (Utils.IsNullOrEmpty(subid))
{ {
return -1; return -1;
} }
@@ -1421,7 +1478,7 @@ namespace v2rayN.Handler
} }
foreach (var item in customProfile) foreach (var item in customProfile)
{ {
File.Delete(Utile.GetConfigPath(item.address)); File.Delete(Utils.GetConfigPath(item.address));
} }
return 0; return 0;
@@ -1457,9 +1514,9 @@ namespace v2rayN.Handler
public static int SaveRoutingItem(Config config, RoutingItem item) public static int SaveRoutingItem(Config config, RoutingItem item)
{ {
if (Utile.IsNullOrEmpty(item.id)) if (Utils.IsNullOrEmpty(item.id))
{ {
item.id = Utile.GetGUID(false); item.id = Utils.GetGUID(false);
} }
if (SQLiteHelper.Instance.Replace(item) > 0) if (SQLiteHelper.Instance.Replace(item) > 0)
@@ -1480,12 +1537,12 @@ namespace v2rayN.Handler
/// <returns></returns> /// <returns></returns>
public static int AddBatchRoutingRules(ref RoutingItem routingItem, string clipboardData) public static int AddBatchRoutingRules(ref RoutingItem routingItem, string clipboardData)
{ {
if (Utile.IsNullOrEmpty(clipboardData)) if (Utils.IsNullOrEmpty(clipboardData))
{ {
return -1; return -1;
} }
var lstRules = JsonUtile.Deserialize<List<RulesItem>>(clipboardData); var lstRules = JsonUtils.Deserialize<List<RulesItem>>(clipboardData);
if (lstRules == null) if (lstRules == null)
{ {
return -1; return -1;
@@ -1493,14 +1550,14 @@ namespace v2rayN.Handler
foreach (var item in lstRules) foreach (var item in lstRules)
{ {
item.id = Utile.GetGUID(false); item.id = Utils.GetGUID(false);
} }
routingItem.ruleNum = lstRules.Count; routingItem.ruleNum = lstRules.Count;
routingItem.ruleSet = JsonUtile.Serialize(lstRules, false); routingItem.ruleSet = JsonUtils.Serialize(lstRules, false);
if (Utile.IsNullOrEmpty(routingItem.id)) if (Utils.IsNullOrEmpty(routingItem.id))
{ {
routingItem.id = Utile.GetGUID(false); routingItem.id = Utils.GetGUID(false);
} }
if (SQLiteHelper.Instance.Replace(routingItem) > 0) if (SQLiteHelper.Instance.Replace(routingItem) > 0)
@@ -1535,7 +1592,7 @@ namespace v2rayN.Handler
{ {
return 0; return 0;
} }
var item = JsonUtile.DeepCopy(rules[index]); var item = JsonUtils.DeepCopy(rules[index]);
rules.RemoveAt(index); rules.RemoveAt(index);
rules.Insert(0, item); rules.Insert(0, item);
@@ -1547,7 +1604,7 @@ namespace v2rayN.Handler
{ {
return 0; return 0;
} }
var item = JsonUtile.DeepCopy(rules[index]); var item = JsonUtils.DeepCopy(rules[index]);
rules.RemoveAt(index); rules.RemoveAt(index);
rules.Insert(index - 1, item); rules.Insert(index - 1, item);
@@ -1560,7 +1617,7 @@ namespace v2rayN.Handler
{ {
return 0; return 0;
} }
var item = JsonUtile.DeepCopy(rules[index]); var item = JsonUtils.DeepCopy(rules[index]);
rules.RemoveAt(index); rules.RemoveAt(index);
rules.Insert(index + 1, item); rules.Insert(index + 1, item);
@@ -1572,7 +1629,7 @@ namespace v2rayN.Handler
{ {
return 0; return 0;
} }
var item = JsonUtile.DeepCopy(rules[index]); var item = JsonUtils.DeepCopy(rules[index]);
rules.RemoveAt(index); rules.RemoveAt(index);
rules.Add(item); rules.Add(item);
@@ -1581,7 +1638,7 @@ namespace v2rayN.Handler
case EMove.Position: case EMove.Position:
{ {
var removeItem = rules[index]; var removeItem = rules[index];
var item = JsonUtile.DeepCopy(rules[index]); var item = JsonUtils.DeepCopy(rules[index]);
rules.Insert(pos, item); rules.Insert(pos, item);
rules.Remove(removeItem); rules.Remove(removeItem);
break; break;
@@ -1617,36 +1674,37 @@ namespace v2rayN.Handler
public static int InitBuiltinRouting(Config config, bool blImportAdvancedRules = false) public static int InitBuiltinRouting(Config config, bool blImportAdvancedRules = false)
{ {
var ver = "V2-";
var items = LazyConfig.Instance.RoutingItems(); var items = LazyConfig.Instance.RoutingItems();
if (blImportAdvancedRules || items.Count <= 0) if (blImportAdvancedRules || items.Where(t => t.remarks.StartsWith(ver)).ToList().Count <= 0)
{ {
var maxSort = items.Count; var maxSort = items.Count;
//Bypass the mainland //Bypass the mainland
var item2 = new RoutingItem() var item2 = new RoutingItem()
{ {
remarks = "绕过大陆(Whitelist)", remarks = $"{ver}绕过大陆(Whitelist)",
url = string.Empty, url = string.Empty,
sort = maxSort + 1, sort = maxSort + 1,
}; };
AddBatchRoutingRules(ref item2, Utile.GetEmbedText(Global.CustomRoutingFileName + "white")); AddBatchRoutingRules(ref item2, Utils.GetEmbedText(Global.CustomRoutingFileName + "white"));
//Blacklist //Blacklist
var item3 = new RoutingItem() var item3 = new RoutingItem()
{ {
remarks = "黑名单(Blacklist)", remarks = $"{ver}黑名单(Blacklist)",
url = string.Empty, url = string.Empty,
sort = maxSort + 2, sort = maxSort + 2,
}; };
AddBatchRoutingRules(ref item3, Utile.GetEmbedText(Global.CustomRoutingFileName + "black")); AddBatchRoutingRules(ref item3, Utils.GetEmbedText(Global.CustomRoutingFileName + "black"));
//Global //Global
var item1 = new RoutingItem() var item1 = new RoutingItem()
{ {
remarks = "全局(Global)", remarks = $"{ver}全局(Global)",
url = string.Empty, url = string.Empty,
sort = maxSort + 3, sort = maxSort + 3,
}; };
AddBatchRoutingRules(ref item1, Utile.GetEmbedText(Global.CustomRoutingFileName + "global")); AddBatchRoutingRules(ref item1, Utils.GetEmbedText(Global.CustomRoutingFileName + "global"));
if (!blImportAdvancedRules) if (!blImportAdvancedRules)
{ {
@@ -1662,7 +1720,7 @@ namespace v2rayN.Handler
url = string.Empty, url = string.Empty,
locked = true, locked = true,
}; };
AddBatchRoutingRules(ref item1, Utile.GetEmbedText(Global.CustomRoutingFileName + "locked")); AddBatchRoutingRules(ref item1, Utils.GetEmbedText(Global.CustomRoutingFileName + "locked"));
} }
return 0; return 0;
} }
@@ -1706,9 +1764,9 @@ namespace v2rayN.Handler
public static int SaveDNSItems(Config config, DNSItem item) public static int SaveDNSItems(Config config, DNSItem item)
{ {
if (Utile.IsNullOrEmpty(item.id)) if (Utils.IsNullOrEmpty(item.id))
{ {
item.id = Utile.GetGUID(false); item.id = Utils.GetGUID(false);
} }
if (SQLiteHelper.Instance.Replace(item) > 0) if (SQLiteHelper.Instance.Replace(item) > 0)

View File

@@ -1,5 +1,5 @@
using System.IO; using System.IO;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.Resx; using v2rayN.Resx;
namespace v2rayN.Handler namespace v2rayN.Handler
@@ -33,13 +33,13 @@ namespace v2rayN.Handler
{ {
return -1; return -1;
} }
if (Utile.IsNullOrEmpty(fileName)) if (Utils.IsNullOrEmpty(fileName))
{ {
content = JsonUtile.Serialize(singboxConfig); content = JsonUtils.Serialize(singboxConfig);
} }
else else
{ {
JsonUtile.ToFile(singboxConfig, fileName, false); JsonUtils.ToFile(singboxConfig, fileName, false);
} }
} }
else else
@@ -49,13 +49,13 @@ namespace v2rayN.Handler
{ {
return -1; return -1;
} }
if (Utile.IsNullOrEmpty(fileName)) if (Utils.IsNullOrEmpty(fileName))
{ {
content = JsonUtile.Serialize(v2rayConfig); content = JsonUtils.Serialize(v2rayConfig);
} }
else else
{ {
JsonUtile.ToFile(v2rayConfig, fileName, false); JsonUtils.ToFile(v2rayConfig, fileName, false);
} }
} }
} }
@@ -87,7 +87,7 @@ namespace v2rayN.Handler
string addressFileName = node.address; string addressFileName = node.address;
if (!File.Exists(addressFileName)) if (!File.Exists(addressFileName))
{ {
addressFileName = Utile.GetConfigPath(addressFileName); addressFileName = Utils.GetConfigPath(addressFileName);
} }
if (!File.Exists(addressFileName)) if (!File.Exists(addressFileName))
{ {
@@ -158,7 +158,7 @@ namespace v2rayN.Handler
{ {
return -1; return -1;
} }
JsonUtile.ToFile(singboxConfig, fileName, false); JsonUtils.ToFile(singboxConfig, fileName, false);
} }
else else
{ {
@@ -166,7 +166,7 @@ namespace v2rayN.Handler
{ {
return -1; return -1;
} }
JsonUtile.ToFile(v2rayConfig, fileName, false); JsonUtils.ToFile(v2rayConfig, fileName, false);
} }
return 0; return 0;
} }

View File

@@ -1,6 +1,6 @@
using System.Net; using System.Net;
using System.Net.NetworkInformation; using System.Net.NetworkInformation;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.Resx; using v2rayN.Resx;
namespace v2rayN.Handler namespace v2rayN.Handler
@@ -28,14 +28,14 @@ namespace v2rayN.Handler
msg = ResUI.InitialConfiguration; msg = ResUI.InitialConfiguration;
string result = Utile.GetEmbedText(Global.SingboxSampleClient); string result = Utils.GetEmbedText(Global.SingboxSampleClient);
if (Utile.IsNullOrEmpty(result)) if (Utils.IsNullOrEmpty(result))
{ {
msg = ResUI.FailedGetDefaultConfiguration; msg = ResUI.FailedGetDefaultConfiguration;
return -1; return -1;
} }
singboxConfig = JsonUtile.Deserialize<SingboxConfig>(result); singboxConfig = JsonUtils.Deserialize<SingboxConfig>(result);
if (singboxConfig == null) if (singboxConfig == null)
{ {
msg = ResUI.FailedGenDefaultConfiguration; msg = ResUI.FailedGenDefaultConfiguration;
@@ -56,6 +56,8 @@ namespace v2rayN.Handler
GenStatistic(singboxConfig); GenStatistic(singboxConfig);
ConvertGeo2Ruleset(singboxConfig);
msg = string.Format(ResUI.SuccessfulConfiguration, ""); msg = string.Format(ResUI.SuccessfulConfiguration, "");
} }
catch (Exception ex) catch (Exception ex)
@@ -95,7 +97,7 @@ namespace v2rayN.Handler
if (_config.coreBasicItem.logEnabled) if (_config.coreBasicItem.logEnabled)
{ {
var dtNow = DateTime.Now; var dtNow = DateTime.Now;
singboxConfig.log.output = Utile.GetLogPath($"sbox_{dtNow:yyyy-MM-dd}.txt"); singboxConfig.log.output = Utils.GetLogPath($"sbox_{dtNow:yyyy-MM-dd}.txt");
} }
} }
catch (Exception ex) catch (Exception ex)
@@ -124,12 +126,12 @@ namespace v2rayN.Handler
inbound.listen_port = LazyConfig.Instance.GetLocalPort(EInboundProtocol.socks); inbound.listen_port = LazyConfig.Instance.GetLocalPort(EInboundProtocol.socks);
inbound.sniff = _config.inbound[0].sniffingEnabled; inbound.sniff = _config.inbound[0].sniffingEnabled;
inbound.sniff_override_destination = _config.inbound[0].routeOnly ? false : _config.inbound[0].sniffingEnabled; inbound.sniff_override_destination = _config.inbound[0].routeOnly ? false : _config.inbound[0].sniffingEnabled;
inbound.domain_strategy = Utile.IsNullOrEmpty(_config.routingBasicItem.domainStrategy4Singbox) ? null : _config.routingBasicItem.domainStrategy4Singbox; inbound.domain_strategy = Utils.IsNullOrEmpty(_config.routingBasicItem.domainStrategy4Singbox) ? null : _config.routingBasicItem.domainStrategy4Singbox;
if (_config.routingBasicItem.enableRoutingAdvanced) if (_config.routingBasicItem.enableRoutingAdvanced)
{ {
var routing = ConfigHandler.GetDefaultRouting(_config); var routing = ConfigHandler.GetDefaultRouting(_config);
if (!Utile.IsNullOrEmpty(routing.domainStrategy4Singbox)) if (!Utils.IsNullOrEmpty(routing.domainStrategy4Singbox))
{ {
inbound.domain_strategy = routing.domainStrategy4Singbox; inbound.domain_strategy = routing.domainStrategy4Singbox;
} }
@@ -152,7 +154,7 @@ namespace v2rayN.Handler
singboxConfig.inbounds.Add(inbound4); singboxConfig.inbounds.Add(inbound4);
//auth //auth
if (!Utile.IsNullOrEmpty(_config.inbound[0].user) && !Utile.IsNullOrEmpty(_config.inbound[0].pass)) if (!Utils.IsNullOrEmpty(_config.inbound[0].user) && !Utils.IsNullOrEmpty(_config.inbound[0].pass))
{ {
inbound3.users = new() { new() { username = _config.inbound[0].user, password = _config.inbound[0].pass } }; inbound3.users = new() { new() { username = _config.inbound[0].user, password = _config.inbound[0].pass } };
inbound4.users = new() { new() { username = _config.inbound[0].user, password = _config.inbound[0].pass } }; inbound4.users = new() { new() { username = _config.inbound[0].user, password = _config.inbound[0].pass } };
@@ -170,14 +172,14 @@ namespace v2rayN.Handler
{ {
if (_config.tunModeItem.mtu <= 0) if (_config.tunModeItem.mtu <= 0)
{ {
_config.tunModeItem.mtu = Utile.ToInt(Global.TunMtus[0]); _config.tunModeItem.mtu = Utils.ToInt(Global.TunMtus[0]);
} }
if (Utile.IsNullOrEmpty(_config.tunModeItem.stack)) if (Utils.IsNullOrEmpty(_config.tunModeItem.stack))
{ {
_config.tunModeItem.stack = Global.TunStacks[0]; _config.tunModeItem.stack = Global.TunStacks[0];
} }
var tunInbound = JsonUtile.Deserialize<Inbound4Sbox>(Utile.GetEmbedText(Global.TunSingboxInboundFileName)) ?? new Inbound4Sbox { }; var tunInbound = JsonUtils.Deserialize<Inbound4Sbox>(Utils.GetEmbedText(Global.TunSingboxInboundFileName)) ?? new Inbound4Sbox { };
tunInbound.mtu = _config.tunModeItem.mtu; tunInbound.mtu = _config.tunModeItem.mtu;
tunInbound.strict_route = _config.tunModeItem.strictRoute; tunInbound.strict_route = _config.tunModeItem.strictRoute;
tunInbound.stack = _config.tunModeItem.stack; tunInbound.stack = _config.tunModeItem.stack;
@@ -200,7 +202,7 @@ namespace v2rayN.Handler
private Inbound4Sbox GetInbound(Inbound4Sbox inItem, EInboundProtocol protocol, bool bSocks) private Inbound4Sbox GetInbound(Inbound4Sbox inItem, EInboundProtocol protocol, bool bSocks)
{ {
var inbound = JsonUtile.DeepCopy(inItem); var inbound = JsonUtils.DeepCopy(inItem);
inbound.tag = protocol.ToString(); inbound.tag = protocol.ToString();
inbound.listen_port = inItem.listen_port + (int)protocol; inbound.listen_port = inItem.listen_port + (int)protocol;
inbound.type = bSocks ? EInboundProtocol.socks.ToString() : EInboundProtocol.http.ToString(); inbound.type = bSocks ? EInboundProtocol.socks.ToString() : EInboundProtocol.http.ToString();
@@ -213,105 +215,111 @@ namespace v2rayN.Handler
{ {
outbound.server = node.address; outbound.server = node.address;
outbound.server_port = node.port; outbound.server_port = node.port;
outbound.type = Global.ProtocolTypes[node.configType];
if (node.configType == EConfigType.VMess) switch (node.configType)
{ {
outbound.type = Global.ProtocolTypes[EConfigType.VMess]; case EConfigType.VMess:
outbound.uuid = node.id;
outbound.alter_id = node.alterId;
if (Global.VmessSecurities.Contains(node.security))
{
outbound.security = node.security;
}
else
{
outbound.security = Global.DefaultSecurity;
}
GenOutboundMux(node, outbound);
}
else if (node.configType == EConfigType.Shadowsocks)
{
outbound.type = Global.ProtocolTypes[EConfigType.Shadowsocks];
outbound.method = LazyConfig.Instance.GetShadowsocksSecurities(node).Contains(node.security) ? node.security : Global.None;
outbound.password = node.id;
GenOutboundMux(node, outbound);
}
else if (node.configType == EConfigType.Socks)
{
outbound.type = Global.ProtocolTypes[EConfigType.Socks];
outbound.version = "5";
if (!Utile.IsNullOrEmpty(node.security)
&& !Utile.IsNullOrEmpty(node.id))
{
outbound.username = node.security;
outbound.password = node.id;
}
}
else if (node.configType == EConfigType.VLESS)
{
outbound.type = Global.ProtocolTypes[EConfigType.VLESS];
outbound.uuid = node.id;
outbound.packet_encoding = "xudp";
if (Utile.IsNullOrEmpty(node.flow))
{
GenOutboundMux(node, outbound);
}
else
{
outbound.flow = node.flow;
}
}
else if (node.configType == EConfigType.Trojan)
{
outbound.type = Global.ProtocolTypes[EConfigType.Trojan];
outbound.password = node.id;
GenOutboundMux(node, outbound);
}
else if (node.configType == EConfigType.Hysteria2)
{
outbound.type = Global.ProtocolTypes[EConfigType.Hysteria2];
outbound.password = node.id;
if (!Utile.IsNullOrEmpty(node.path))
{
outbound.obfs = new()
{ {
type = "salamander", outbound.uuid = node.id;
password = node.path.TrimEx(), outbound.alter_id = node.alterId;
}; if (Global.VmessSecurities.Contains(node.security))
} {
outbound.security = node.security;
}
else
{
outbound.security = Global.DefaultSecurity;
}
outbound.up_mbps = _config.hysteriaItem.up_mbps > 0 ? _config.hysteriaItem.up_mbps : null; GenOutboundMux(node, outbound);
outbound.down_mbps = _config.hysteriaItem.down_mbps > 0 ? _config.hysteriaItem.down_mbps : null; break;
} }
else if (node.configType == EConfigType.Tuic) case EConfigType.Shadowsocks:
{ {
outbound.type = Global.ProtocolTypes[EConfigType.Tuic]; outbound.method = LazyConfig.Instance.GetShadowsocksSecurities(node).Contains(node.security) ? node.security : Global.None;
outbound.password = node.id;
outbound.uuid = node.id; GenOutboundMux(node, outbound);
outbound.password = node.security; break;
outbound.congestion_control = node.headerType; }
} case EConfigType.Socks:
else if (node.configType == EConfigType.Wireguard) {
{ outbound.version = "5";
outbound.type = Global.ProtocolTypes[EConfigType.Wireguard]; if (!Utils.IsNullOrEmpty(node.security)
&& !Utils.IsNullOrEmpty(node.id))
{
outbound.username = node.security;
outbound.password = node.id;
}
break;
}
case EConfigType.Http:
{
if (!Utils.IsNullOrEmpty(node.security)
&& !Utils.IsNullOrEmpty(node.id))
{
outbound.username = node.security;
outbound.password = node.id;
}
break;
}
case EConfigType.VLESS:
{
outbound.uuid = node.id;
outbound.private_key = node.id; outbound.packet_encoding = "xudp";
outbound.peer_public_key = node.publicKey;
outbound.reserved = Utile.String2List(node.path).Select(int.Parse).ToArray(); if (Utils.IsNullOrEmpty(node.flow))
outbound.local_address = [.. Utile.String2List(node.requestHost)]; {
outbound.mtu = Utile.ToInt(node.shortId.IsNullOrEmpty() ? Global.TunMtus.FirstOrDefault() : node.shortId); GenOutboundMux(node, outbound);
}
else
{
outbound.flow = node.flow;
}
break;
}
case EConfigType.Trojan:
{
outbound.password = node.id;
GenOutboundMux(node, outbound);
break;
}
case EConfigType.Hysteria2:
{
outbound.password = node.id;
if (!Utils.IsNullOrEmpty(node.path))
{
outbound.obfs = new()
{
type = "salamander",
password = node.path.TrimEx(),
};
}
outbound.up_mbps = _config.hysteriaItem.up_mbps > 0 ? _config.hysteriaItem.up_mbps : null;
outbound.down_mbps = _config.hysteriaItem.down_mbps > 0 ? _config.hysteriaItem.down_mbps : null;
break;
}
case EConfigType.Tuic:
{
outbound.uuid = node.id;
outbound.password = node.security;
outbound.congestion_control = node.headerType;
break;
}
case EConfigType.Wireguard:
{
outbound.private_key = node.id;
outbound.peer_public_key = node.publicKey;
outbound.reserved = Utils.String2List(node.path).Select(int.Parse).ToArray();
outbound.local_address = [.. Utils.String2List(node.requestHost)];
outbound.mtu = Utils.ToInt(node.shortId.IsNullOrEmpty() ? Global.TunMtus.FirstOrDefault() : node.shortId);
break;
}
} }
GenOutboundTls(node, outbound); GenOutboundTls(node, outbound);
@@ -354,22 +362,22 @@ namespace v2rayN.Handler
if (node.streamSecurity == Global.StreamSecurityReality || node.streamSecurity == Global.StreamSecurity) if (node.streamSecurity == Global.StreamSecurityReality || node.streamSecurity == Global.StreamSecurity)
{ {
var server_name = string.Empty; var server_name = string.Empty;
if (!string.IsNullOrWhiteSpace(node.sni)) if (!Utils.IsNullOrEmpty(node.sni))
{ {
server_name = node.sni; server_name = node.sni;
} }
else if (!string.IsNullOrWhiteSpace(node.requestHost)) else if (!Utils.IsNullOrEmpty(node.requestHost))
{ {
server_name = Utile.String2List(node.requestHost)[0]; server_name = Utils.String2List(node.requestHost)[0];
} }
var tls = new Tls4Sbox() var tls = new Tls4Sbox()
{ {
enabled = true, enabled = true,
server_name = server_name, server_name = server_name,
insecure = Utile.ToBool(node.allowInsecure.IsNullOrEmpty() ? _config.coreBasicItem.defAllowInsecure.ToString().ToLower() : node.allowInsecure), insecure = Utils.ToBool(node.allowInsecure.IsNullOrEmpty() ? _config.coreBasicItem.defAllowInsecure.ToString().ToLower() : node.allowInsecure),
alpn = node.GetAlpn(), alpn = node.GetAlpn(),
}; };
if (!Utile.IsNullOrEmpty(node.fingerprint)) if (!Utils.IsNullOrEmpty(node.fingerprint))
{ {
tls.utls = new Utls4Sbox() tls.utls = new Utls4Sbox()
{ {
@@ -407,8 +415,8 @@ namespace v2rayN.Handler
{ {
case nameof(ETransport.h2): case nameof(ETransport.h2):
transport.type = nameof(ETransport.http); transport.type = nameof(ETransport.http);
transport.host = Utile.IsNullOrEmpty(node.requestHost) ? null : Utile.String2List(node.requestHost); transport.host = Utils.IsNullOrEmpty(node.requestHost) ? null : Utils.String2List(node.requestHost);
transport.path = Utile.IsNullOrEmpty(node.path) ? null : node.path; transport.path = Utils.IsNullOrEmpty(node.path) ? null : node.path;
break; break;
case nameof(ETransport.tcp): //http case nameof(ETransport.tcp): //http
@@ -422,16 +430,16 @@ namespace v2rayN.Handler
else else
{ {
transport.type = nameof(ETransport.http); transport.type = nameof(ETransport.http);
transport.host = Utile.IsNullOrEmpty(node.requestHost) ? null : Utile.String2List(node.requestHost); transport.host = Utils.IsNullOrEmpty(node.requestHost) ? null : Utils.String2List(node.requestHost);
transport.path = Utile.IsNullOrEmpty(node.path) ? null : node.path; transport.path = Utils.IsNullOrEmpty(node.path) ? null : node.path;
} }
} }
break; break;
case nameof(ETransport.ws): case nameof(ETransport.ws):
transport.type = nameof(ETransport.ws); transport.type = nameof(ETransport.ws);
transport.path = Utile.IsNullOrEmpty(node.path) ? null : node.path; transport.path = Utils.IsNullOrEmpty(node.path) ? null : node.path;
if (!Utile.IsNullOrEmpty(node.requestHost)) if (!Utils.IsNullOrEmpty(node.requestHost))
{ {
transport.headers = new() transport.headers = new()
{ {
@@ -442,8 +450,8 @@ namespace v2rayN.Handler
case nameof(ETransport.httpupgrade): case nameof(ETransport.httpupgrade):
transport.type = nameof(ETransport.httpupgrade); transport.type = nameof(ETransport.httpupgrade);
transport.path = Utile.IsNullOrEmpty(node.path) ? null : node.path; transport.path = Utils.IsNullOrEmpty(node.path) ? null : node.path;
transport.host = Utile.IsNullOrEmpty(node.requestHost) ? null : node.requestHost; transport.host = Utils.IsNullOrEmpty(node.requestHost) ? null : node.requestHost;
break; break;
@@ -490,14 +498,14 @@ namespace v2rayN.Handler
//current proxy //current proxy
var outbound = singboxConfig.outbounds[0]; var outbound = singboxConfig.outbounds[0];
var txtOutbound = Utile.GetEmbedText(Global.SingboxSampleOutbound); var txtOutbound = Utils.GetEmbedText(Global.SingboxSampleOutbound);
//Previous proxy //Previous proxy
var prevNode = LazyConfig.Instance.GetProfileItemViaRemarks(subItem.prevProfile!); var prevNode = LazyConfig.Instance.GetProfileItemViaRemarks(subItem.prevProfile!);
if (prevNode is not null if (prevNode is not null
&& prevNode.configType != EConfigType.Custom) && prevNode.configType != EConfigType.Custom)
{ {
var prevOutbound = JsonUtile.Deserialize<Outbound4Sbox>(txtOutbound); var prevOutbound = JsonUtils.Deserialize<Outbound4Sbox>(txtOutbound);
GenOutbound(prevNode, prevOutbound); GenOutbound(prevNode, prevOutbound);
prevOutbound.tag = $"{Global.ProxyTag}2"; prevOutbound.tag = $"{Global.ProxyTag}2";
singboxConfig.outbounds.Add(prevOutbound); singboxConfig.outbounds.Add(prevOutbound);
@@ -510,7 +518,7 @@ namespace v2rayN.Handler
if (nextNode is not null if (nextNode is not null
&& nextNode.configType != EConfigType.Custom) && nextNode.configType != EConfigType.Custom)
{ {
var nextOutbound = JsonUtile.Deserialize<Outbound4Sbox>(txtOutbound); var nextOutbound = JsonUtils.Deserialize<Outbound4Sbox>(txtOutbound);
GenOutbound(nextNode, nextOutbound); GenOutbound(nextNode, nextOutbound);
nextOutbound.tag = Global.ProxyTag; nextOutbound.tag = Global.ProxyTag;
singboxConfig.outbounds.Insert(0, nextOutbound); singboxConfig.outbounds.Insert(0, nextOutbound);
@@ -535,7 +543,7 @@ namespace v2rayN.Handler
{ {
singboxConfig.route.auto_detect_interface = true; singboxConfig.route.auto_detect_interface = true;
var tunRules = JsonUtile.Deserialize<List<Rule4Sbox>>(Utile.GetEmbedText(Global.TunSingboxRulesFileName)); var tunRules = JsonUtils.Deserialize<List<Rule4Sbox>>(Utils.GetEmbedText(Global.TunSingboxRulesFileName));
singboxConfig.route.rules.AddRange(tunRules); singboxConfig.route.rules.AddRange(tunRules);
GenRoutingDirectExe(out List<string> lstDnsExe, out List<string> lstDirectExe); GenRoutingDirectExe(out List<string> lstDnsExe, out List<string> lstDirectExe);
@@ -558,7 +566,7 @@ namespace v2rayN.Handler
var routing = ConfigHandler.GetDefaultRouting(_config); var routing = ConfigHandler.GetDefaultRouting(_config);
if (routing != null) if (routing != null)
{ {
var rules = JsonUtile.Deserialize<List<RulesItem>>(routing.ruleSet); var rules = JsonUtils.Deserialize<List<RulesItem>>(routing.ruleSet);
foreach (var item in rules!) foreach (var item in rules!)
{ {
if (item.enabled) if (item.enabled)
@@ -573,7 +581,7 @@ namespace v2rayN.Handler
var lockedItem = ConfigHandler.GetLockedRoutingItem(_config); var lockedItem = ConfigHandler.GetLockedRoutingItem(_config);
if (lockedItem != null) if (lockedItem != null)
{ {
var rules = JsonUtile.Deserialize<List<RulesItem>>(lockedItem.ruleSet); var rules = JsonUtils.Deserialize<List<RulesItem>>(lockedItem.ruleSet);
foreach (var item in rules!) foreach (var item in rules!)
{ {
GenRoutingUserRule(item, singboxConfig.route.rules); GenRoutingUserRule(item, singboxConfig.route.rules);
@@ -628,7 +636,7 @@ namespace v2rayN.Handler
outbound = item.outboundTag, outbound = item.outboundTag,
}; };
if (!Utile.IsNullOrEmpty(item.port)) if (!Utils.IsNullOrEmpty(item.port))
{ {
if (item.port.Contains("-")) if (item.port.Contains("-"))
{ {
@@ -636,7 +644,7 @@ namespace v2rayN.Handler
} }
else else
{ {
rule.port = new List<int> { Utile.ToInt(item.port) }; rule.port = new List<int> { Utils.ToInt(item.port) };
} }
} }
if (item.protocol?.Count > 0) if (item.protocol?.Count > 0)
@@ -647,28 +655,37 @@ namespace v2rayN.Handler
{ {
rule.inbound = item.inboundTag; rule.inbound = item.inboundTag;
} }
var rule2 = JsonUtile.DeepCopy(rule); var rule1 = JsonUtils.DeepCopy(rule);
var rule3 = JsonUtile.DeepCopy(rule); var rule2 = JsonUtils.DeepCopy(rule);
var rule3 = JsonUtils.DeepCopy(rule);
var hasDomainIp = false; var hasDomainIp = false;
if (item.domain?.Count > 0) if (item.domain?.Count > 0)
{ {
var countDomain = 0;
foreach (var it in item.domain) foreach (var it in item.domain)
{ {
ParseV2Domain(it, rule); if (ParseV2Domain(it, rule1)) countDomain++;
}
if (countDomain > 0)
{
rules.Add(rule1);
hasDomainIp = true;
} }
rules.Add(rule);
hasDomainIp = true;
} }
if (item.ip?.Count > 0) if (item.ip?.Count > 0)
{ {
var countIp = 0;
foreach (var it in item.ip) foreach (var it in item.ip)
{ {
ParseV2Address(it, rule2); if (ParseV2Address(it, rule2)) countIp++;
}
if (countIp > 0)
{
rules.Add(rule2);
hasDomainIp = true;
} }
rules.Add(rule2);
hasDomainIp = true;
} }
if (_config.tunModeItem.enableTun && item.process?.Count > 0) if (_config.tunModeItem.enableTun && item.process?.Count > 0)
@@ -678,7 +695,8 @@ namespace v2rayN.Handler
hasDomainIp = true; hasDomainIp = true;
} }
if (!hasDomainIp) if (!hasDomainIp
&& (rule.port != null || rule.port_range != null || rule.protocol != null || rule.inbound != null))
{ {
rules.Add(rule); rules.Add(rule);
} }
@@ -690,11 +708,11 @@ namespace v2rayN.Handler
return 0; return 0;
} }
private void ParseV2Domain(string domain, Rule4Sbox rule) private bool ParseV2Domain(string domain, Rule4Sbox rule)
{ {
if (domain.StartsWith("#") || domain.StartsWith("ext:") || domain.StartsWith("ext-domain:")) if (domain.StartsWith("#") || domain.StartsWith("ext:") || domain.StartsWith("ext-domain:"))
{ {
return; return false;
} }
else if (domain.StartsWith("geosite:")) else if (domain.StartsWith("geosite:"))
{ {
@@ -728,17 +746,22 @@ namespace v2rayN.Handler
rule.domain_keyword ??= []; rule.domain_keyword ??= [];
rule.domain_keyword?.Add(domain); rule.domain_keyword?.Add(domain);
} }
return true;
} }
private void ParseV2Address(string address, Rule4Sbox rule) private bool ParseV2Address(string address, Rule4Sbox rule)
{ {
if (address.StartsWith("ext:") || address.StartsWith("ext-ip:")) if (address.StartsWith("ext:") || address.StartsWith("ext-ip:"))
{ {
return; return false;
} }
else if (address.StartsWith("geoip:!")) else if (address.StartsWith("geoip:!"))
{ {
return; return false;
}
else if (address.Equals("geoip:private"))
{
rule.ip_is_private = true;
} }
else if (address.StartsWith("geoip:")) else if (address.StartsWith("geoip:"))
{ {
@@ -750,34 +773,25 @@ namespace v2rayN.Handler
if (rule.ip_cidr is null) { rule.ip_cidr = new(); } if (rule.ip_cidr is null) { rule.ip_cidr = new(); }
rule.ip_cidr?.Add(address); rule.ip_cidr?.Add(address);
} }
return true;
} }
private int GenDns(ProfileItem node, SingboxConfig singboxConfig) private int GenDns(ProfileItem node, SingboxConfig singboxConfig)
{ {
try try
{ {
Dns4Sbox? dns4Sbox; var item = LazyConfig.Instance.GetDNSItem(ECoreType.sing_box);
var strDNS = string.Empty;
if (_config.tunModeItem.enableTun) if (_config.tunModeItem.enableTun)
{ {
var item = LazyConfig.Instance.GetDNSItem(ECoreType.sing_box); strDNS = Utils.IsNullOrEmpty(item?.tunDNS) ? Utils.GetEmbedText(Global.TunSingboxDNSFileName) : item?.tunDNS;
var tunDNS = item?.tunDNS;
if (string.IsNullOrWhiteSpace(tunDNS))
{
tunDNS = Utile.GetEmbedText(Global.TunSingboxDNSFileName);
}
dns4Sbox = JsonUtile.Deserialize<Dns4Sbox>(tunDNS);
} }
else else
{ {
var item = LazyConfig.Instance.GetDNSItem(ECoreType.sing_box); strDNS = Utils.IsNullOrEmpty(item?.normalDNS) ? Utils.GetEmbedText(Global.DNSSingboxNormalFileName) : item?.normalDNS;
var normalDNS = item?.normalDNS;
if (string.IsNullOrWhiteSpace(normalDNS))
{
normalDNS = "{\"servers\":[{\"address\":\"tcp://8.8.8.8\"}]}";
}
dns4Sbox = JsonUtile.Deserialize<Dns4Sbox>(normalDNS);
} }
var dns4Sbox = JsonUtils.Deserialize<Dns4Sbox>(strDNS);
if (dns4Sbox is null) if (dns4Sbox is null)
{ {
return 0; return 0;
@@ -814,10 +828,10 @@ namespace v2rayN.Handler
{ {
singboxConfig.experimental = new Experimental4Sbox() singboxConfig.experimental = new Experimental4Sbox()
{ {
//cache_file = new CacheFile4Sbox() cache_file = new CacheFile4Sbox()
//{ {
// enabled = true enabled = true
//}, },
//v2ray_api = new V2ray_Api4Sbox() //v2ray_api = new V2ray_Api4Sbox()
//{ //{
// listen = $"{Global.Loopback}:{Global.StatePort}", // listen = $"{Global.Loopback}:{Global.StatePort}",
@@ -835,6 +849,59 @@ namespace v2rayN.Handler
return 0; return 0;
} }
private int ConvertGeo2Ruleset(SingboxConfig singboxConfig)
{
var geosite = "geosite";
var geoip = "geoip";
var ruleSets = new List<string>();
//convert route geosite & geoip to ruleset
foreach (var rule in singboxConfig.route.rules.Where(t => t.geosite?.Count > 0).ToList() ?? [])
{
rule.rule_set = rule?.geosite?.Select(t => $"{geosite}-{t}").ToList();
rule.geosite = null;
ruleSets.AddRange(rule.rule_set);
}
foreach (var rule in singboxConfig.route.rules.Where(t => t.geoip?.Count > 0).ToList() ?? [])
{
rule.rule_set = rule?.geoip?.Select(t => $"{geoip}-{t}").ToList();
rule.geoip = null;
ruleSets.AddRange(rule.rule_set);
}
//convert dns geosite & geoip to ruleset
foreach (var rule in singboxConfig.dns?.rules.Where(t => t.geosite?.Count > 0).ToList() ?? [])
{
rule.rule_set = rule?.geosite?.Select(t => $"{geosite}-{t}").ToList();
rule.geosite = null;
}
foreach (var rule in singboxConfig.dns?.rules.Where(t => t.geoip?.Count > 0).ToList() ?? [])
{
rule.rule_set = rule?.geoip?.Select(t => $"{geoip}-{t}").ToList();
rule.geoip = null;
}
foreach (var dnsRule in singboxConfig.dns?.rules.Where(t => t.rule_set?.Count > 0).ToList() ?? [])
{
ruleSets.AddRange(dnsRule.rule_set);
}
//Add ruleset srs
singboxConfig.route.rule_set = [];
foreach (var item in new HashSet<string>(ruleSets))
{
singboxConfig.route.rule_set.Add(new()
{
type = "remote",
format = "binary",
tag = item,
url = string.Format(Global.SingboxRulesetUrl, item.StartsWith(geosite) ? geosite : geoip, item),
download_detour = Global.ProxyTag
});
}
return 0;
}
#endregion private gen function #endregion private gen function
#region Gen speedtest config #region Gen speedtest config
@@ -852,15 +919,15 @@ namespace v2rayN.Handler
msg = ResUI.InitialConfiguration; msg = ResUI.InitialConfiguration;
string result = Utile.GetEmbedText(Global.SingboxSampleClient); string result = Utils.GetEmbedText(Global.SingboxSampleClient);
string txtOutbound = Utile.GetEmbedText(Global.SingboxSampleOutbound); string txtOutbound = Utils.GetEmbedText(Global.SingboxSampleOutbound);
if (Utile.IsNullOrEmpty(result) || txtOutbound.IsNullOrEmpty()) if (Utils.IsNullOrEmpty(result) || txtOutbound.IsNullOrEmpty())
{ {
msg = ResUI.FailedGetDefaultConfiguration; msg = ResUI.FailedGetDefaultConfiguration;
return -1; return -1;
} }
singboxConfig = JsonUtile.Deserialize<SingboxConfig>(result); singboxConfig = JsonUtils.Deserialize<SingboxConfig>(result);
if (singboxConfig == null) if (singboxConfig == null)
{ {
msg = ResUI.FailedGenDefaultConfiguration; msg = ResUI.FailedGenDefaultConfiguration;
@@ -899,7 +966,7 @@ namespace v2rayN.Handler
if (it.configType is EConfigType.VMess or EConfigType.VLESS) if (it.configType is EConfigType.VMess or EConfigType.VLESS)
{ {
var item2 = LazyConfig.Instance.GetProfileItem(it.indexId); var item2 = LazyConfig.Instance.GetProfileItem(it.indexId);
if (item2 is null || Utile.IsNullOrEmpty(item2.id) || !Utile.IsGuidByParse(item2.id)) if (item2 is null || Utils.IsNullOrEmpty(item2.id) || !Utils.IsGuidByParse(item2.id))
{ {
continue; continue;
} }
@@ -958,7 +1025,7 @@ namespace v2rayN.Handler
continue; continue;
} }
var outbound = JsonUtile.Deserialize<Outbound4Sbox>(txtOutbound); var outbound = JsonUtils.Deserialize<Outbound4Sbox>(txtOutbound);
GenOutbound(item, outbound); GenOutbound(item, outbound);
outbound.tag = Global.ProxyTag + inbound.listen_port.ToString(); outbound.tag = Global.ProxyTag + inbound.listen_port.ToString();
singboxConfig.outbounds.Add(outbound); singboxConfig.outbounds.Add(outbound);
@@ -972,6 +1039,13 @@ namespace v2rayN.Handler
singboxConfig.route.rules.Add(rule); singboxConfig.route.rules.Add(rule);
} }
GenDns(new(), singboxConfig);
var dnsServer = singboxConfig.dns?.servers.FirstOrDefault();
if (dnsServer != null)
{
dnsServer.detour = singboxConfig.route.rules.LastOrDefault()?.outbound;
}
//msg = string.Format(ResUI.SuccessfulConfiguration"), node.getSummary()); //msg = string.Format(ResUI.SuccessfulConfiguration"), node.getSummary());
return 0; return 0;
} }

View File

@@ -1,6 +1,6 @@
using System.Net; using System.Net;
using System.Net.NetworkInformation; using System.Net.NetworkInformation;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.Resx; using v2rayN.Resx;
namespace v2rayN.Handler namespace v2rayN.Handler
@@ -28,14 +28,14 @@ namespace v2rayN.Handler
msg = ResUI.InitialConfiguration; msg = ResUI.InitialConfiguration;
string result = Utile.GetEmbedText(Global.V2raySampleClient); string result = Utils.GetEmbedText(Global.V2raySampleClient);
if (Utile.IsNullOrEmpty(result)) if (Utils.IsNullOrEmpty(result))
{ {
msg = ResUI.FailedGetDefaultConfiguration; msg = ResUI.FailedGetDefaultConfiguration;
return -1; return -1;
} }
v2rayConfig = JsonUtile.Deserialize<V2rayConfig>(result); v2rayConfig = JsonUtils.Deserialize<V2rayConfig>(result);
if (v2rayConfig == null) if (v2rayConfig == null)
{ {
msg = ResUI.FailedGenDefaultConfiguration; msg = ResUI.FailedGenDefaultConfiguration;
@@ -77,8 +77,8 @@ namespace v2rayN.Handler
{ {
var dtNow = DateTime.Now; var dtNow = DateTime.Now;
v2rayConfig.log.loglevel = _config.coreBasicItem.loglevel; v2rayConfig.log.loglevel = _config.coreBasicItem.loglevel;
v2rayConfig.log.access = Utile.GetLogPath($"Vaccess_{dtNow:yyyy-MM-dd}.txt"); v2rayConfig.log.access = Utils.GetLogPath($"Vaccess_{dtNow:yyyy-MM-dd}.txt");
v2rayConfig.log.error = Utile.GetLogPath($"Verror_{dtNow:yyyy-MM-dd}.txt"); v2rayConfig.log.error = Utils.GetLogPath($"Verror_{dtNow:yyyy-MM-dd}.txt");
} }
else else
{ {
@@ -120,7 +120,7 @@ namespace v2rayN.Handler
v2rayConfig.inbounds.Add(inbound4); v2rayConfig.inbounds.Add(inbound4);
//auth //auth
if (!Utile.IsNullOrEmpty(_config.inbound[0].user) && !Utile.IsNullOrEmpty(_config.inbound[0].pass)) if (!Utils.IsNullOrEmpty(_config.inbound[0].user) && !Utils.IsNullOrEmpty(_config.inbound[0].pass))
{ {
inbound3.settings.auth = "password"; inbound3.settings.auth = "password";
inbound3.settings.accounts = new List<AccountsItem4Ray> { new AccountsItem4Ray() { user = _config.inbound[0].user, pass = _config.inbound[0].pass } }; inbound3.settings.accounts = new List<AccountsItem4Ray> { new AccountsItem4Ray() { user = _config.inbound[0].user, pass = _config.inbound[0].pass } };
@@ -145,13 +145,13 @@ namespace v2rayN.Handler
private Inbounds4Ray? GetInbound(InItem inItem, EInboundProtocol protocol, bool bSocks) private Inbounds4Ray? GetInbound(InItem inItem, EInboundProtocol protocol, bool bSocks)
{ {
string result = Utile.GetEmbedText(Global.V2raySampleInbound); string result = Utils.GetEmbedText(Global.V2raySampleInbound);
if (Utile.IsNullOrEmpty(result)) if (Utils.IsNullOrEmpty(result))
{ {
return null; return null;
} }
var inbound = JsonUtile.Deserialize<Inbounds4Ray>(result); var inbound = JsonUtils.Deserialize<Inbounds4Ray>(result);
if (inbound == null) if (inbound == null)
{ {
return null; return null;
@@ -173,23 +173,23 @@ namespace v2rayN.Handler
if (v2rayConfig.routing?.rules != null) if (v2rayConfig.routing?.rules != null)
{ {
v2rayConfig.routing.domainStrategy = _config.routingBasicItem.domainStrategy; v2rayConfig.routing.domainStrategy = _config.routingBasicItem.domainStrategy;
v2rayConfig.routing.domainMatcher = Utile.IsNullOrEmpty(_config.routingBasicItem.domainMatcher) ? null : _config.routingBasicItem.domainMatcher; v2rayConfig.routing.domainMatcher = Utils.IsNullOrEmpty(_config.routingBasicItem.domainMatcher) ? null : _config.routingBasicItem.domainMatcher;
if (_config.routingBasicItem.enableRoutingAdvanced) if (_config.routingBasicItem.enableRoutingAdvanced)
{ {
var routing = ConfigHandler.GetDefaultRouting(_config); var routing = ConfigHandler.GetDefaultRouting(_config);
if (routing != null) if (routing != null)
{ {
if (!Utile.IsNullOrEmpty(routing.domainStrategy)) if (!Utils.IsNullOrEmpty(routing.domainStrategy))
{ {
v2rayConfig.routing.domainStrategy = routing.domainStrategy; v2rayConfig.routing.domainStrategy = routing.domainStrategy;
} }
var rules = JsonUtile.Deserialize<List<RulesItem>>(routing.ruleSet); var rules = JsonUtils.Deserialize<List<RulesItem>>(routing.ruleSet);
foreach (var item in rules) foreach (var item in rules)
{ {
if (item.enabled) if (item.enabled)
{ {
var item2 = JsonUtile.Deserialize<RulesItem4Ray>(JsonUtile.Serialize(item)); var item2 = JsonUtils.Deserialize<RulesItem4Ray>(JsonUtils.Serialize(item));
GenRoutingUserRule(item2, v2rayConfig); GenRoutingUserRule(item2, v2rayConfig);
} }
} }
@@ -200,10 +200,10 @@ namespace v2rayN.Handler
var lockedItem = ConfigHandler.GetLockedRoutingItem(_config); var lockedItem = ConfigHandler.GetLockedRoutingItem(_config);
if (lockedItem != null) if (lockedItem != null)
{ {
var rules = JsonUtile.Deserialize<List<RulesItem>>(lockedItem.ruleSet); var rules = JsonUtils.Deserialize<List<RulesItem>>(lockedItem.ruleSet);
foreach (var item in rules) foreach (var item in rules)
{ {
var item2 = JsonUtile.Deserialize<RulesItem4Ray>(JsonUtile.Serialize(item)); var item2 = JsonUtils.Deserialize<RulesItem4Ray>(JsonUtils.Serialize(item));
GenRoutingUserRule(item2, v2rayConfig); GenRoutingUserRule(item2, v2rayConfig);
} }
} }
@@ -225,7 +225,7 @@ namespace v2rayN.Handler
{ {
return 0; return 0;
} }
if (Utile.IsNullOrEmpty(rules.port)) if (Utils.IsNullOrEmpty(rules.port))
{ {
rules.port = null; rules.port = null;
} }
@@ -249,7 +249,7 @@ namespace v2rayN.Handler
var hasDomainIp = false; var hasDomainIp = false;
if (rules.domain?.Count > 0) if (rules.domain?.Count > 0)
{ {
var it = JsonUtile.DeepCopy(rules); var it = JsonUtils.DeepCopy(rules);
it.ip = null; it.ip = null;
it.type = "field"; it.type = "field";
for (int k = it.domain.Count - 1; k >= 0; k--) for (int k = it.domain.Count - 1; k >= 0; k--)
@@ -265,7 +265,7 @@ namespace v2rayN.Handler
} }
if (rules.ip?.Count > 0) if (rules.ip?.Count > 0)
{ {
var it = JsonUtile.DeepCopy(rules); var it = JsonUtils.DeepCopy(rules);
it.domain = null; it.domain = null;
it.type = "field"; it.type = "field";
v2rayConfig.routing.rules.Add(it); v2rayConfig.routing.rules.Add(it);
@@ -273,12 +273,12 @@ namespace v2rayN.Handler
} }
if (!hasDomainIp) if (!hasDomainIp)
{ {
if (!Utile.IsNullOrEmpty(rules.port) if (!Utils.IsNullOrEmpty(rules.port)
|| (rules.protocol?.Count > 0) || (rules.protocol?.Count > 0)
|| (rules.inboundTag?.Count > 0) || (rules.inboundTag?.Count > 0)
) )
{ {
var it = JsonUtile.DeepCopy(rules); var it = JsonUtils.DeepCopy(rules);
it.type = "field"; it.type = "field";
v2rayConfig.routing.rules.Add(it); v2rayConfig.routing.rules.Add(it);
} }
@@ -295,182 +295,188 @@ namespace v2rayN.Handler
{ {
try try
{ {
if (node.configType == EConfigType.VMess) switch (node.configType)
{ {
VnextItem4Ray vnextItem; case EConfigType.VMess:
if (outbound.settings.vnext.Count <= 0)
{
vnextItem = new VnextItem4Ray();
outbound.settings.vnext.Add(vnextItem);
}
else
{
vnextItem = outbound.settings.vnext[0];
}
vnextItem.address = node.address;
vnextItem.port = node.port;
UsersItem4Ray usersItem;
if (vnextItem.users.Count <= 0)
{
usersItem = new UsersItem4Ray();
vnextItem.users.Add(usersItem);
}
else
{
usersItem = vnextItem.users[0];
}
//远程服务器用户ID
usersItem.id = node.id;
usersItem.alterId = node.alterId;
usersItem.email = Global.UserEMail;
if (Global.VmessSecurities.Contains(node.security))
{
usersItem.security = node.security;
}
else
{
usersItem.security = Global.DefaultSecurity;
}
GenOutboundMux(node, outbound, _config.coreBasicItem.muxEnabled);
outbound.protocol = Global.ProtocolTypes[EConfigType.VMess];
outbound.settings.servers = null;
}
else if (node.configType == EConfigType.Shadowsocks)
{
ServersItem4Ray serversItem;
if (outbound.settings.servers.Count <= 0)
{
serversItem = new ServersItem4Ray();
outbound.settings.servers.Add(serversItem);
}
else
{
serversItem = outbound.settings.servers[0];
}
serversItem.address = node.address;
serversItem.port = node.port;
serversItem.password = node.id;
serversItem.method = LazyConfig.Instance.GetShadowsocksSecurities(node).Contains(node.security) ? node.security : "none";
serversItem.ota = false;
serversItem.level = 1;
GenOutboundMux(node, outbound, false);
outbound.protocol = Global.ProtocolTypes[EConfigType.Shadowsocks];
outbound.settings.vnext = null;
}
else if (node.configType == EConfigType.Socks)
{
ServersItem4Ray serversItem;
if (outbound.settings.servers.Count <= 0)
{
serversItem = new ServersItem4Ray();
outbound.settings.servers.Add(serversItem);
}
else
{
serversItem = outbound.settings.servers[0];
}
serversItem.address = node.address;
serversItem.port = node.port;
serversItem.method = null;
serversItem.password = null;
if (!Utile.IsNullOrEmpty(node.security)
&& !Utile.IsNullOrEmpty(node.id))
{
SocksUsersItem4Ray socksUsersItem = new()
{ {
user = node.security, VnextItem4Ray vnextItem;
pass = node.id, if (outbound.settings.vnext.Count <= 0)
level = 1 {
}; vnextItem = new VnextItem4Ray();
outbound.settings.vnext.Add(vnextItem);
}
else
{
vnextItem = outbound.settings.vnext[0];
}
vnextItem.address = node.address;
vnextItem.port = node.port;
serversItem.users = new List<SocksUsersItem4Ray>() { socksUsersItem }; UsersItem4Ray usersItem;
} if (vnextItem.users.Count <= 0)
{
usersItem = new UsersItem4Ray();
vnextItem.users.Add(usersItem);
}
else
{
usersItem = vnextItem.users[0];
}
//远程服务器用户ID
usersItem.id = node.id;
usersItem.alterId = node.alterId;
usersItem.email = Global.UserEMail;
if (Global.VmessSecurities.Contains(node.security))
{
usersItem.security = node.security;
}
else
{
usersItem.security = Global.DefaultSecurity;
}
GenOutboundMux(node, outbound, false); GenOutboundMux(node, outbound, _config.coreBasicItem.muxEnabled);
outbound.protocol = Global.ProtocolTypes[EConfigType.Socks]; outbound.settings.servers = null;
outbound.settings.vnext = null; break;
} }
else if (node.configType == EConfigType.VLESS) case EConfigType.Shadowsocks:
{
VnextItem4Ray vnextItem;
if (outbound.settings.vnext.Count <= 0)
{
vnextItem = new VnextItem4Ray();
outbound.settings.vnext.Add(vnextItem);
}
else
{
vnextItem = outbound.settings.vnext[0];
}
vnextItem.address = node.address;
vnextItem.port = node.port;
UsersItem4Ray usersItem;
if (vnextItem.users.Count <= 0)
{
usersItem = new UsersItem4Ray();
vnextItem.users.Add(usersItem);
}
else
{
usersItem = vnextItem.users[0];
}
usersItem.id = node.id;
usersItem.email = Global.UserEMail;
usersItem.encryption = node.security;
GenOutboundMux(node, outbound, _config.coreBasicItem.muxEnabled);
if (node.streamSecurity == Global.StreamSecurityReality
|| node.streamSecurity == Global.StreamSecurity)
{
if (!Utile.IsNullOrEmpty(node.flow))
{ {
usersItem.flow = node.flow; ServersItem4Ray serversItem;
if (outbound.settings.servers.Count <= 0)
{
serversItem = new ServersItem4Ray();
outbound.settings.servers.Add(serversItem);
}
else
{
serversItem = outbound.settings.servers[0];
}
serversItem.address = node.address;
serversItem.port = node.port;
serversItem.password = node.id;
serversItem.method = LazyConfig.Instance.GetShadowsocksSecurities(node).Contains(node.security) ? node.security : "none";
serversItem.ota = false;
serversItem.level = 1;
GenOutboundMux(node, outbound, false); GenOutboundMux(node, outbound, false);
outbound.settings.vnext = null;
break;
} }
} case EConfigType.Socks:
if (node.streamSecurity == Global.StreamSecurityReality && Utile.IsNullOrEmpty(node.flow)) case EConfigType.Http:
{ {
GenOutboundMux(node, outbound, _config.coreBasicItem.muxEnabled); ServersItem4Ray serversItem;
} if (outbound.settings.servers.Count <= 0)
{
serversItem = new ServersItem4Ray();
outbound.settings.servers.Add(serversItem);
}
else
{
serversItem = outbound.settings.servers[0];
}
serversItem.address = node.address;
serversItem.port = node.port;
serversItem.method = null;
serversItem.password = null;
outbound.protocol = Global.ProtocolTypes[EConfigType.VLESS]; if (!Utils.IsNullOrEmpty(node.security)
outbound.settings.servers = null; && !Utils.IsNullOrEmpty(node.id))
{
SocksUsersItem4Ray socksUsersItem = new()
{
user = node.security,
pass = node.id,
level = 1
};
serversItem.users = new List<SocksUsersItem4Ray>() { socksUsersItem };
}
GenOutboundMux(node, outbound, false);
outbound.settings.vnext = null;
break;
}
case EConfigType.VLESS:
{
VnextItem4Ray vnextItem;
if (outbound.settings.vnext?.Count <= 0)
{
vnextItem = new VnextItem4Ray();
outbound.settings.vnext.Add(vnextItem);
}
else
{
vnextItem = outbound.settings.vnext[0];
}
vnextItem.address = node.address;
vnextItem.port = node.port;
UsersItem4Ray usersItem;
if (vnextItem.users.Count <= 0)
{
usersItem = new UsersItem4Ray();
vnextItem.users.Add(usersItem);
}
else
{
usersItem = vnextItem.users[0];
}
usersItem.id = node.id;
usersItem.email = Global.UserEMail;
usersItem.encryption = node.security;
GenOutboundMux(node, outbound, _config.coreBasicItem.muxEnabled);
if (node.streamSecurity == Global.StreamSecurityReality
|| node.streamSecurity == Global.StreamSecurity)
{
if (!Utils.IsNullOrEmpty(node.flow))
{
usersItem.flow = node.flow;
GenOutboundMux(node, outbound, false);
}
}
if (node.streamSecurity == Global.StreamSecurityReality && Utils.IsNullOrEmpty(node.flow))
{
GenOutboundMux(node, outbound, _config.coreBasicItem.muxEnabled);
}
outbound.settings.servers = null;
break;
}
case EConfigType.Trojan:
{
ServersItem4Ray serversItem;
if (outbound.settings.servers.Count <= 0)
{
serversItem = new ServersItem4Ray();
outbound.settings.servers.Add(serversItem);
}
else
{
serversItem = outbound.settings.servers[0];
}
serversItem.address = node.address;
serversItem.port = node.port;
serversItem.password = node.id;
serversItem.ota = false;
serversItem.level = 1;
GenOutboundMux(node, outbound, false);
outbound.settings.vnext = null;
break;
}
} }
else if (node.configType == EConfigType.Trojan)
{
ServersItem4Ray serversItem;
if (outbound.settings.servers.Count <= 0)
{
serversItem = new ServersItem4Ray();
outbound.settings.servers.Add(serversItem);
}
else
{
serversItem = outbound.settings.servers[0];
}
serversItem.address = node.address;
serversItem.port = node.port;
serversItem.password = node.id;
serversItem.ota = false; outbound.protocol = Global.ProtocolTypes[node.configType];
serversItem.level = 1;
GenOutboundMux(node, outbound, false);
outbound.protocol = Global.ProtocolTypes[EConfigType.Trojan];
outbound.settings.vnext = null;
}
GenBoundStreamSettings(node, outbound.streamSettings); GenBoundStreamSettings(node, outbound.streamSettings);
} }
catch (Exception ex) catch (Exception ex)
@@ -529,17 +535,17 @@ namespace v2rayN.Handler
TlsSettings4Ray tlsSettings = new() TlsSettings4Ray tlsSettings = new()
{ {
allowInsecure = Utile.ToBool(node.allowInsecure.IsNullOrEmpty() ? _config.coreBasicItem.defAllowInsecure.ToString().ToLower() : node.allowInsecure), allowInsecure = Utils.ToBool(node.allowInsecure.IsNullOrEmpty() ? _config.coreBasicItem.defAllowInsecure.ToString().ToLower() : node.allowInsecure),
alpn = node.GetAlpn(), alpn = node.GetAlpn(),
fingerprint = node.fingerprint.IsNullOrEmpty() ? _config.coreBasicItem.defFingerprint : node.fingerprint fingerprint = node.fingerprint.IsNullOrEmpty() ? _config.coreBasicItem.defFingerprint : node.fingerprint
}; };
if (!string.IsNullOrWhiteSpace(sni)) if (!Utils.IsNullOrEmpty(sni))
{ {
tlsSettings.serverName = sni; tlsSettings.serverName = sni;
} }
else if (!string.IsNullOrWhiteSpace(host)) else if (!Utils.IsNullOrEmpty(host))
{ {
tlsSettings.serverName = Utile.String2List(host)[0]; tlsSettings.serverName = Utils.String2List(host)[0];
} }
streamSettings.tlsSettings = tlsSettings; streamSettings.tlsSettings = tlsSettings;
} }
@@ -581,7 +587,7 @@ namespace v2rayN.Handler
{ {
type = node.headerType type = node.headerType
}; };
if (!Utile.IsNullOrEmpty(node.path)) if (!Utils.IsNullOrEmpty(node.path))
{ {
kcpSettings.seed = node.path; kcpSettings.seed = node.path;
} }
@@ -592,15 +598,15 @@ namespace v2rayN.Handler
WsSettings4Ray wsSettings = new(); WsSettings4Ray wsSettings = new();
wsSettings.headers = new Headers4Ray(); wsSettings.headers = new Headers4Ray();
string path = node.path; string path = node.path;
if (!string.IsNullOrWhiteSpace(host)) if (!Utils.IsNullOrEmpty(host))
{ {
wsSettings.headers.Host = host; wsSettings.headers.Host = host;
} }
if (!string.IsNullOrWhiteSpace(path)) if (!Utils.IsNullOrEmpty(path))
{ {
wsSettings.path = path; wsSettings.path = path;
} }
if (!string.IsNullOrWhiteSpace(useragent)) if (!Utils.IsNullOrEmpty(useragent))
{ {
wsSettings.headers.UserAgent = useragent; wsSettings.headers.UserAgent = useragent;
} }
@@ -611,11 +617,11 @@ namespace v2rayN.Handler
case nameof(ETransport.httpupgrade): case nameof(ETransport.httpupgrade):
HttpupgradeSettings4Ray httpupgradeSettings = new(); HttpupgradeSettings4Ray httpupgradeSettings = new();
if (!string.IsNullOrWhiteSpace(node.path)) if (!Utils.IsNullOrEmpty(node.path))
{ {
httpupgradeSettings.path = node.path; httpupgradeSettings.path = node.path;
} }
if (!string.IsNullOrWhiteSpace(host)) if (!Utils.IsNullOrEmpty(host))
{ {
httpupgradeSettings.host = host; httpupgradeSettings.host = host;
} }
@@ -626,9 +632,9 @@ namespace v2rayN.Handler
case nameof(ETransport.h2): case nameof(ETransport.h2):
HttpSettings4Ray httpSettings = new(); HttpSettings4Ray httpSettings = new();
if (!string.IsNullOrWhiteSpace(host)) if (!Utils.IsNullOrEmpty(host))
{ {
httpSettings.host = Utile.String2List(host); httpSettings.host = Utils.String2List(host);
} }
httpSettings.path = node.path; httpSettings.path = node.path;
@@ -649,7 +655,7 @@ namespace v2rayN.Handler
streamSettings.quicSettings = quicsettings; streamSettings.quicSettings = quicsettings;
if (node.streamSecurity == Global.StreamSecurity) if (node.streamSecurity == Global.StreamSecurity)
{ {
if (!string.IsNullOrWhiteSpace(sni)) if (!Utils.IsNullOrEmpty(sni))
{ {
streamSettings.tlsSettings.serverName = sni; streamSettings.tlsSettings.serverName = sni;
} }
@@ -663,6 +669,7 @@ namespace v2rayN.Handler
case nameof(ETransport.grpc): case nameof(ETransport.grpc):
GrpcSettings4Ray grpcSettings = new() GrpcSettings4Ray grpcSettings = new()
{ {
authority = Utils.IsNullOrEmpty(host) ? null : host,
serviceName = node.path, serviceName = node.path,
multiMode = (node.headerType == Global.GrpcMultiMode), multiMode = (node.headerType == Global.GrpcMultiMode),
idle_timeout = _config.grpcItem.idle_timeout, idle_timeout = _config.grpcItem.idle_timeout,
@@ -686,7 +693,7 @@ namespace v2rayN.Handler
}; };
//request Host //request Host
string request = Utile.GetEmbedText(Global.V2raySampleHttpRequestFileName); string request = Utils.GetEmbedText(Global.V2raySampleHttpRequestFileName);
string[] arrHost = host.Split(','); string[] arrHost = host.Split(',');
string host2 = string.Join("\",\"", arrHost); string host2 = string.Join("\",\"", arrHost);
request = request.Replace("$requestHost$", $"\"{host2}\""); request = request.Replace("$requestHost$", $"\"{host2}\"");
@@ -694,13 +701,13 @@ namespace v2rayN.Handler
request = request.Replace("$requestUserAgent$", $"\"{useragent}\""); request = request.Replace("$requestUserAgent$", $"\"{useragent}\"");
//Path //Path
string pathHttp = @"/"; string pathHttp = @"/";
if (!Utile.IsNullOrEmpty(node.path)) if (!Utils.IsNullOrEmpty(node.path))
{ {
string[] arrPath = node.path.Split(','); string[] arrPath = node.path.Split(',');
pathHttp = string.Join("\",\"", arrPath); pathHttp = string.Join("\",\"", arrPath);
} }
request = request.Replace("$requestPath$", $"\"{pathHttp}\""); request = request.Replace("$requestPath$", $"\"{pathHttp}\"");
tcpSettings.header.request = JsonUtile.Deserialize<object>(request); tcpSettings.header.request = JsonUtils.Deserialize<object>(request);
streamSettings.tcpSettings = tcpSettings; streamSettings.tcpSettings = tcpSettings;
} }
@@ -721,20 +728,20 @@ namespace v2rayN.Handler
var item = LazyConfig.Instance.GetDNSItem(ECoreType.Xray); var item = LazyConfig.Instance.GetDNSItem(ECoreType.Xray);
var normalDNS = item?.normalDNS; var normalDNS = item?.normalDNS;
var domainStrategy4Freedom = item?.domainStrategy4Freedom; var domainStrategy4Freedom = item?.domainStrategy4Freedom;
if (string.IsNullOrWhiteSpace(normalDNS)) if (Utils.IsNullOrEmpty(normalDNS))
{ {
normalDNS = "1.1.1.1,8.8.8.8"; normalDNS = Utils.GetEmbedText(Global.DNSV2rayNormalFileName);
} }
//Outbound Freedom domainStrategy //Outbound Freedom domainStrategy
if (!string.IsNullOrWhiteSpace(domainStrategy4Freedom)) if (!Utils.IsNullOrEmpty(domainStrategy4Freedom))
{ {
var outbound = v2rayConfig.outbounds[1]; var outbound = v2rayConfig.outbounds[1];
outbound.settings.domainStrategy = domainStrategy4Freedom; outbound.settings.domainStrategy = domainStrategy4Freedom;
outbound.settings.userLevel = 0; outbound.settings.userLevel = 0;
} }
var obj = JsonUtile.ParseJson(normalDNS); var obj = JsonUtils.ParseJson(normalDNS);
if (obj is null) if (obj is null)
{ {
List<string> servers = []; List<string> servers = [];
@@ -743,14 +750,14 @@ namespace v2rayN.Handler
{ {
servers.Add(str); servers.Add(str);
} }
obj = JsonUtile.ParseJson("{}"); obj = JsonUtils.ParseJson("{}");
obj["servers"] = JsonUtile.SerializeToNode(servers); obj["servers"] = JsonUtils.SerializeToNode(servers);
} }
// 追加至 dns 设置 // 追加至 dns 设置
if (item.useSystemHosts) if (item.useSystemHosts)
{ {
var systemHosts = Utile.GetSystemHosts(); var systemHosts = Utils.GetSystemHosts();
if (systemHosts.Count > 0) if (systemHosts.Count > 0)
{ {
var normalHost = obj["hosts"]; var normalHost = obj["hosts"];
@@ -827,6 +834,33 @@ namespace v2rayN.Handler
private int GenMoreOutbounds(ProfileItem node, V2rayConfig v2rayConfig) private int GenMoreOutbounds(ProfileItem node, V2rayConfig v2rayConfig)
{ {
//fragment proxy
if (_config.coreBasicItem.enableFragment
&& !Utils.IsNullOrEmpty(v2rayConfig.outbounds[0].streamSettings?.security))
{
var fragmentOutbound = new Outbounds4Ray
{
protocol = "freedom",
tag = $"{Global.ProxyTag}3",
settings = new()
{
fragment = new()
{
packets = "tlshello",
length = "100-200",
interval = "10-20"
}
}
};
v2rayConfig.outbounds.Add(fragmentOutbound);
v2rayConfig.outbounds[0].streamSettings.sockopt = new()
{
dialerProxy = fragmentOutbound.tag
};
return 0;
}
if (node.subid.IsNullOrEmpty()) if (node.subid.IsNullOrEmpty())
{ {
return 0; return 0;
@@ -841,7 +875,7 @@ namespace v2rayN.Handler
//current proxy //current proxy
var outbound = v2rayConfig.outbounds[0]; var outbound = v2rayConfig.outbounds[0];
var txtOutbound = Utile.GetEmbedText(Global.V2raySampleOutbound); var txtOutbound = Utils.GetEmbedText(Global.V2raySampleOutbound);
//Previous proxy //Previous proxy
var prevNode = LazyConfig.Instance.GetProfileItemViaRemarks(subItem.prevProfile!); var prevNode = LazyConfig.Instance.GetProfileItemViaRemarks(subItem.prevProfile!);
@@ -851,7 +885,7 @@ namespace v2rayN.Handler
&& prevNode.configType != EConfigType.Tuic && prevNode.configType != EConfigType.Tuic
&& prevNode.configType != EConfigType.Wireguard) && prevNode.configType != EConfigType.Wireguard)
{ {
var prevOutbound = JsonUtile.Deserialize<Outbounds4Ray>(txtOutbound); var prevOutbound = JsonUtils.Deserialize<Outbounds4Ray>(txtOutbound);
GenOutbound(prevNode, prevOutbound); GenOutbound(prevNode, prevOutbound);
prevOutbound.tag = $"{Global.ProxyTag}2"; prevOutbound.tag = $"{Global.ProxyTag}2";
v2rayConfig.outbounds.Add(prevOutbound); v2rayConfig.outbounds.Add(prevOutbound);
@@ -870,7 +904,7 @@ namespace v2rayN.Handler
&& nextNode.configType != EConfigType.Tuic && nextNode.configType != EConfigType.Tuic
&& nextNode.configType != EConfigType.Wireguard) && nextNode.configType != EConfigType.Wireguard)
{ {
var nextOutbound = JsonUtile.Deserialize<Outbounds4Ray>(txtOutbound); var nextOutbound = JsonUtils.Deserialize<Outbounds4Ray>(txtOutbound);
GenOutbound(nextNode, nextOutbound); GenOutbound(nextNode, nextOutbound);
nextOutbound.tag = Global.ProxyTag; nextOutbound.tag = Global.ProxyTag;
v2rayConfig.outbounds.Insert(0, nextOutbound); v2rayConfig.outbounds.Insert(0, nextOutbound);
@@ -907,15 +941,15 @@ namespace v2rayN.Handler
msg = ResUI.InitialConfiguration; msg = ResUI.InitialConfiguration;
string result = Utile.GetEmbedText(Global.V2raySampleClient); string result = Utils.GetEmbedText(Global.V2raySampleClient);
string txtOutbound = Utile.GetEmbedText(Global.V2raySampleOutbound); string txtOutbound = Utils.GetEmbedText(Global.V2raySampleOutbound);
if (Utile.IsNullOrEmpty(result) || txtOutbound.IsNullOrEmpty()) if (Utils.IsNullOrEmpty(result) || txtOutbound.IsNullOrEmpty())
{ {
msg = ResUI.FailedGetDefaultConfiguration; msg = ResUI.FailedGetDefaultConfiguration;
return -1; return -1;
} }
v2rayConfig = JsonUtile.Deserialize<V2rayConfig>(result); v2rayConfig = JsonUtils.Deserialize<V2rayConfig>(result);
if (v2rayConfig == null) if (v2rayConfig == null)
{ {
msg = ResUI.FailedGenDefaultConfiguration; msg = ResUI.FailedGenDefaultConfiguration;
@@ -953,7 +987,7 @@ namespace v2rayN.Handler
if (it.configType is EConfigType.VMess or EConfigType.VLESS) if (it.configType is EConfigType.VMess or EConfigType.VLESS)
{ {
var item2 = LazyConfig.Instance.GetProfileItem(it.indexId); var item2 = LazyConfig.Instance.GetProfileItem(it.indexId);
if (item2 is null || Utile.IsNullOrEmpty(item2.id) || !Utile.IsGuidByParse(item2.id)) if (item2 is null || Utils.IsNullOrEmpty(item2.id) || !Utils.IsGuidByParse(item2.id))
{ {
continue; continue;
} }
@@ -1012,7 +1046,7 @@ namespace v2rayN.Handler
continue; continue;
} }
var outbound = JsonUtile.Deserialize<Outbounds4Ray>(txtOutbound); var outbound = JsonUtils.Deserialize<Outbounds4Ray>(txtOutbound);
GenOutbound(item, outbound); GenOutbound(item, outbound);
outbound.tag = Global.ProxyTag + inbound.port.ToString(); outbound.tag = Global.ProxyTag + inbound.port.ToString();
v2rayConfig.outbounds.Add(outbound); v2rayConfig.outbounds.Add(outbound);

View File

@@ -2,7 +2,7 @@
using System.IO; using System.IO;
using System.Reactive.Linq; using System.Reactive.Linq;
using System.Text; using System.Text;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.Resx; using v2rayN.Resx;
namespace v2rayN.Handler namespace v2rayN.Handler
@@ -22,8 +22,8 @@ namespace v2rayN.Handler
_config = config; _config = config;
_updateFunc = update; _updateFunc = update;
Environment.SetEnvironmentVariable("v2ray.location.asset", Utile.GetBinPath(""), EnvironmentVariableTarget.Process); Environment.SetEnvironmentVariable("v2ray.location.asset", Utils.GetBinPath(""), EnvironmentVariableTarget.Process);
Environment.SetEnvironmentVariable("xray.location.asset", Utile.GetBinPath(""), EnvironmentVariableTarget.Process); Environment.SetEnvironmentVariable("xray.location.asset", Utils.GetBinPath(""), EnvironmentVariableTarget.Process);
} }
public void LoadCore() public void LoadCore()
@@ -35,7 +35,7 @@ namespace v2rayN.Handler
return; return;
} }
string fileName = Utile.GetConfigPath(Global.CoreConfigFileName); string fileName = Utils.GetConfigPath(Global.CoreConfigFileName);
if (CoreConfigHandler.GenerateClientConfig(node, fileName, out string msg, out string content) != 0) if (CoreConfigHandler.GenerateClientConfig(node, fileName, out string msg, out string content) != 0)
{ {
ShowMsg(false, msg); ShowMsg(false, msg);
@@ -48,7 +48,7 @@ namespace v2rayN.Handler
if (_config.tunModeItem.enableTun) if (_config.tunModeItem.enableTun)
{ {
Thread.Sleep(1000); Thread.Sleep(1000);
Utile.RemoveTunDevice(); Utils.RemoveTunDevice();
} }
CoreStart(node); CoreStart(node);
@@ -77,7 +77,7 @@ namespace v2rayN.Handler
{ {
int pid = -1; int pid = -1;
var coreType = selecteds.Exists(t => t.configType == EConfigType.Hysteria2 || t.configType == EConfigType.Tuic || t.configType == EConfigType.Wireguard) ? ECoreType.sing_box : ECoreType.Xray; var coreType = selecteds.Exists(t => t.configType == EConfigType.Hysteria2 || t.configType == EConfigType.Tuic || t.configType == EConfigType.Wireguard) ? ECoreType.sing_box : ECoreType.Xray;
string configPath = Utile.GetConfigPath(Global.CoreSpeedtestConfigFileName); string configPath = Utils.GetConfigPath(Global.CoreSpeedtestConfigFileName);
if (CoreConfigHandler.GenerateClientSpeedtestConfig(_config, configPath, selecteds, coreType, out string msg) != 0) if (CoreConfigHandler.GenerateClientSpeedtestConfig(_config, configPath, selecteds, coreType, out string msg) != 0)
{ {
ShowMsg(false, msg); ShowMsg(false, msg);
@@ -126,7 +126,7 @@ namespace v2rayN.Handler
foreach (Process p in existing) foreach (Process p in existing)
{ {
string? path = p.MainModule?.FileName; string? path = p.MainModule?.FileName;
if (path == $"{Utile.GetBinPath(vName, it.coreType.ToString())}.exe") if (path == $"{Utils.GetBinPath(vName, it.coreType.ToString())}.exe")
{ {
KillProcess(p); KillProcess(p);
} }
@@ -162,16 +162,16 @@ namespace v2rayN.Handler
foreach (string name in coreInfo.coreExes) foreach (string name in coreInfo.coreExes)
{ {
string vName = $"{name}.exe"; string vName = $"{name}.exe";
vName = Utile.GetBinPath(vName, coreInfo.coreType.ToString()); vName = Utils.GetBinPath(vName, coreInfo.coreType.ToString());
if (File.Exists(vName)) if (File.Exists(vName))
{ {
fileName = vName; fileName = vName;
break; break;
} }
} }
if (Utile.IsNullOrEmpty(fileName)) if (Utils.IsNullOrEmpty(fileName))
{ {
string msg = string.Format(ResUI.NotFoundCore, Utile.GetBinPath("", coreInfo.coreType.ToString()), string.Join(", ", coreInfo.coreExes.ToArray()), coreInfo.coreUrl); string msg = string.Format(ResUI.NotFoundCore, Utils.GetBinPath("", coreInfo.coreType.ToString()), string.Join(", ", coreInfo.coreExes.ToArray()), coreInfo.coreUrl);
Logging.SaveLog(msg); Logging.SaveLog(msg);
ShowMsg(false, msg); ShowMsg(false, msg);
} }
@@ -192,6 +192,7 @@ namespace v2rayN.Handler
{ {
coreType = LazyConfig.Instance.GetCoreType(node, node.configType); coreType = LazyConfig.Instance.GetCoreType(node, node.configType);
} }
_config.runningCoreType = coreType;
var coreInfo = LazyConfig.Instance.GetCoreInfo(coreType); var coreInfo = LazyConfig.Instance.GetCoreInfo(coreType);
var displayLog = node.configType != EConfigType.Custom || node.displayLog; var displayLog = node.configType != EConfigType.Custom || node.displayLog;
@@ -207,17 +208,19 @@ namespace v2rayN.Handler
{ {
if ((node.configType == EConfigType.Custom && node.preSocksPort > 0)) if ((node.configType == EConfigType.Custom && node.preSocksPort > 0))
{ {
var preCoreType = _config.tunModeItem.enableTun ? ECoreType.sing_box : ECoreType.Xray;
var itemSocks = new ProfileItem() var itemSocks = new ProfileItem()
{ {
coreType = ECoreType.sing_box, coreType = preCoreType,
configType = EConfigType.Socks, configType = EConfigType.Socks,
address = Global.Loopback, address = Global.Loopback,
port = node.preSocksPort port = node.preSocksPort
}; };
string fileName2 = Utile.GetConfigPath(Global.CorePreConfigFileName); _config.runningCoreType = preCoreType;
string fileName2 = Utils.GetConfigPath(Global.CorePreConfigFileName);
if (CoreConfigHandler.GenerateClientConfig(itemSocks, fileName2, out string msg2, out string configStr) == 0) if (CoreConfigHandler.GenerateClientConfig(itemSocks, fileName2, out string msg2, out string configStr) == 0)
{ {
var coreInfo2 = LazyConfig.Instance.GetCoreInfo(ECoreType.sing_box); var coreInfo2 = LazyConfig.Instance.GetCoreInfo(preCoreType);
var proc2 = RunProcess(node, coreInfo2, $" -c {Global.CorePreConfigFileName}", true); var proc2 = RunProcess(node, coreInfo2, $" -c {Global.CorePreConfigFileName}", true);
if (proc2 is not null) if (proc2 is not null)
{ {
@@ -267,7 +270,7 @@ namespace v2rayN.Handler
try try
{ {
string fileName = CoreFindExe(coreInfo); string fileName = CoreFindExe(coreInfo);
if (Utile.IsNullOrEmpty(fileName)) if (Utils.IsNullOrEmpty(fileName))
{ {
return null; return null;
} }
@@ -277,7 +280,7 @@ namespace v2rayN.Handler
{ {
FileName = fileName, FileName = fileName,
Arguments = string.Format(coreInfo.arguments, configPath), Arguments = string.Format(coreInfo.arguments, configPath),
WorkingDirectory = Utile.GetConfigPath(), WorkingDirectory = Utils.GetConfigPath(),
UseShellExecute = false, UseShellExecute = false,
RedirectStandardOutput = displayLog, RedirectStandardOutput = displayLog,
RedirectStandardError = displayLog, RedirectStandardError = displayLog,
@@ -292,7 +295,7 @@ namespace v2rayN.Handler
{ {
proc.OutputDataReceived += (sender, e) => proc.OutputDataReceived += (sender, e) =>
{ {
if (!string.IsNullOrEmpty(e.Data)) if (!Utils.IsNullOrEmpty(e.Data))
{ {
string msg = e.Data + Environment.NewLine; string msg = e.Data + Environment.NewLine;
ShowMsg(false, msg); ShowMsg(false, msg);
@@ -300,7 +303,7 @@ namespace v2rayN.Handler
}; };
proc.ErrorDataReceived += (sender, e) => proc.ErrorDataReceived += (sender, e) =>
{ {
if (!string.IsNullOrEmpty(e.Data)) if (!Utils.IsNullOrEmpty(e.Data))
{ {
string msg = e.Data + Environment.NewLine; string msg = e.Data + Environment.NewLine;
ShowMsg(false, msg); ShowMsg(false, msg);

View File

@@ -4,7 +4,7 @@ using System.Net;
using System.Net.Http; using System.Net.Http;
using System.Net.Http.Headers; using System.Net.Http.Headers;
using System.Net.Sockets; using System.Net.Sockets;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.Resx; using v2rayN.Resx;
namespace v2rayN.Handler namespace v2rayN.Handler
@@ -34,7 +34,7 @@ namespace v2rayN.Handler
{ {
try try
{ {
Utile.SetSecurityProtocol(LazyConfig.Instance.GetConfig().guiItem.enableSecurityProtocolTls13); Utils.SetSecurityProtocol(LazyConfig.Instance.GetConfig().guiItem.enableSecurityProtocolTls13);
var progress = new Progress<string>(); var progress = new Progress<string>();
progress.ProgressChanged += (sender, value) => progress.ProgressChanged += (sender, value) =>
@@ -66,7 +66,7 @@ namespace v2rayN.Handler
{ {
try try
{ {
Utile.SetSecurityProtocol(LazyConfig.Instance.GetConfig().guiItem.enableSecurityProtocolTls13); Utils.SetSecurityProtocol(LazyConfig.Instance.GetConfig().guiItem.enableSecurityProtocolTls13);
UpdateCompleted?.Invoke(this, new ResultEventArgs(false, $"{ResUI.Downloading} {url}")); UpdateCompleted?.Invoke(this, new ResultEventArgs(false, $"{ResUI.Downloading} {url}"));
var progress = new Progress<double>(); var progress = new Progress<double>();
@@ -78,7 +78,7 @@ namespace v2rayN.Handler
var webProxy = GetWebProxy(blProxy); var webProxy = GetWebProxy(blProxy);
await DownloaderHelper.Instance.DownloadFileAsync(webProxy, await DownloaderHelper.Instance.DownloadFileAsync(webProxy,
url, url,
Utile.GetTempPath(Utile.GetDownloadFileName(url)), Utils.GetTempPath(Utils.GetDownloadFileName(url)),
progress, progress,
downloadTimeout); downloadTimeout);
} }
@@ -96,7 +96,7 @@ namespace v2rayN.Handler
public async Task<string?> UrlRedirectAsync(string url, bool blProxy) public async Task<string?> UrlRedirectAsync(string url, bool blProxy)
{ {
Utile.SetSecurityProtocol(LazyConfig.Instance.GetConfig().guiItem.enableSecurityProtocolTls13); Utils.SetSecurityProtocol(LazyConfig.Instance.GetConfig().guiItem.enableSecurityProtocolTls13);
var webRequestHandler = new SocketsHttpHandler var webRequestHandler = new SocketsHttpHandler
{ {
AllowAutoRedirect = false, AllowAutoRedirect = false,
@@ -121,7 +121,7 @@ namespace v2rayN.Handler
try try
{ {
var result1 = await DownloadStringAsync(url, blProxy, userAgent); var result1 = await DownloadStringAsync(url, blProxy, userAgent);
if (!Utile.IsNullOrEmpty(result1)) if (!Utils.IsNullOrEmpty(result1))
{ {
return result1; return result1;
} }
@@ -139,7 +139,7 @@ namespace v2rayN.Handler
try try
{ {
var result2 = await DownloadStringViaDownloader(url, blProxy, userAgent); var result2 = await DownloadStringViaDownloader(url, blProxy, userAgent);
if (!Utile.IsNullOrEmpty(result2)) if (!Utils.IsNullOrEmpty(result2))
{ {
return result2; return result2;
} }
@@ -159,7 +159,7 @@ namespace v2rayN.Handler
using var wc = new WebClient(); using var wc = new WebClient();
wc.Proxy = GetWebProxy(blProxy); wc.Proxy = GetWebProxy(blProxy);
var result3 = await wc.DownloadStringTaskAsync(url); var result3 = await wc.DownloadStringTaskAsync(url);
if (!Utile.IsNullOrEmpty(result3)) if (!Utils.IsNullOrEmpty(result3))
{ {
return result3; return result3;
} }
@@ -185,7 +185,7 @@ namespace v2rayN.Handler
{ {
try try
{ {
Utile.SetSecurityProtocol(LazyConfig.Instance.GetConfig().guiItem.enableSecurityProtocolTls13); Utils.SetSecurityProtocol(LazyConfig.Instance.GetConfig().guiItem.enableSecurityProtocolTls13);
var webProxy = GetWebProxy(blProxy); var webProxy = GetWebProxy(blProxy);
var client = new HttpClient(new SocketsHttpHandler() var client = new HttpClient(new SocketsHttpHandler()
{ {
@@ -193,17 +193,17 @@ namespace v2rayN.Handler
UseProxy = webProxy != null UseProxy = webProxy != null
}); });
if (Utile.IsNullOrEmpty(userAgent)) if (Utils.IsNullOrEmpty(userAgent))
{ {
userAgent = Utile.GetVersion(false); userAgent = Utils.GetVersion(false);
} }
client.DefaultRequestHeaders.UserAgent.TryParseAdd(userAgent); client.DefaultRequestHeaders.UserAgent.TryParseAdd(userAgent);
Uri uri = new(url); Uri uri = new(url);
//Authorization Header //Authorization Header
if (!Utile.IsNullOrEmpty(uri.UserInfo)) if (!Utils.IsNullOrEmpty(uri.UserInfo))
{ {
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", Utile.Base64Encode(uri.UserInfo)); client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", Utils.Base64Encode(uri.UserInfo));
} }
using var cts = new CancellationTokenSource(); using var cts = new CancellationTokenSource();
@@ -230,13 +230,13 @@ namespace v2rayN.Handler
{ {
try try
{ {
Utile.SetSecurityProtocol(LazyConfig.Instance.GetConfig().guiItem.enableSecurityProtocolTls13); Utils.SetSecurityProtocol(LazyConfig.Instance.GetConfig().guiItem.enableSecurityProtocolTls13);
var webProxy = GetWebProxy(blProxy); var webProxy = GetWebProxy(blProxy);
if (Utile.IsNullOrEmpty(userAgent)) if (Utils.IsNullOrEmpty(userAgent))
{ {
userAgent = Utile.GetVersion(false); userAgent = Utils.GetVersion(false);
} }
var result = await DownloaderHelper.Instance.DownloadStringAsync(webProxy, url, userAgent, 30); var result = await DownloaderHelper.Instance.DownloadStringAsync(webProxy, url, userAgent, 30);
return result; return result;

View File

@@ -4,7 +4,7 @@ using System.Text;
using System.Windows; using System.Windows;
using System.Windows.Input; using System.Windows.Input;
using System.Windows.Interop; using System.Windows.Interop;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.Resx; using v2rayN.Resx;
namespace v2rayN.Handler namespace v2rayN.Handler

View File

@@ -1,5 +1,5 @@
using System.Runtime.Intrinsics.X86; using System.Runtime.Intrinsics.X86;
using v2rayN.Model; using v2rayN.Models;
namespace v2rayN.Handler namespace v2rayN.Handler
{ {
@@ -19,7 +19,7 @@ namespace v2rayN.Handler
{ {
if (_statePort is null) if (_statePort is null)
{ {
_statePort = Utile.GetFreePort(GetLocalPort(EInboundProtocol.api)); _statePort = Utils.GetFreePort(GetLocalPort(EInboundProtocol.api));
} }
return _statePort.Value; return _statePort.Value;
@@ -77,7 +77,7 @@ namespace v2rayN.Handler
public List<ProfileItem> ProfileItems(string subid) public List<ProfileItem> ProfileItems(string subid)
{ {
if (Utile.IsNullOrEmpty(subid)) if (Utils.IsNullOrEmpty(subid))
{ {
return SQLiteHelper.Instance.Table<ProfileItem>().ToList(); return SQLiteHelper.Instance.Table<ProfileItem>().ToList();
} }
@@ -89,7 +89,7 @@ namespace v2rayN.Handler
public List<string> ProfileItemIndexes(string subid) public List<string> ProfileItemIndexes(string subid)
{ {
if (Utile.IsNullOrEmpty(subid)) if (Utils.IsNullOrEmpty(subid))
{ {
return SQLiteHelper.Instance.Table<ProfileItem>().Select(t => t.indexId).ToList(); return SQLiteHelper.Instance.Table<ProfileItem>().Select(t => t.indexId).ToList();
} }
@@ -106,11 +106,11 @@ namespace v2rayN.Handler
from ProfileItem a from ProfileItem a
left join SubItem b on a.subid = b.id left join SubItem b on a.subid = b.id
where 1=1 "; where 1=1 ";
if (!Utile.IsNullOrEmpty(subid)) if (!Utils.IsNullOrEmpty(subid))
{ {
sql += $" and a.subid = '{subid}'"; sql += $" and a.subid = '{subid}'";
} }
if (!Utile.IsNullOrEmpty(filter)) if (!Utils.IsNullOrEmpty(filter))
{ {
if (filter.Contains('\'')) if (filter.Contains('\''))
{ {
@@ -124,7 +124,7 @@ namespace v2rayN.Handler
public ProfileItem? GetProfileItem(string indexId) public ProfileItem? GetProfileItem(string indexId)
{ {
if (Utile.IsNullOrEmpty(indexId)) if (Utils.IsNullOrEmpty(indexId))
{ {
return null; return null;
} }
@@ -133,7 +133,7 @@ namespace v2rayN.Handler
public ProfileItem? GetProfileItemViaRemarks(string remarks) public ProfileItem? GetProfileItemViaRemarks(string remarks)
{ {
if (Utile.IsNullOrEmpty(remarks)) if (Utils.IsNullOrEmpty(remarks))
{ {
return null; return null;
} }
@@ -206,7 +206,7 @@ namespace v2rayN.Handler
{ {
InitCoreInfo(); InitCoreInfo();
} }
return coreInfo!.FirstOrDefault(t => t.coreType == coreType); return coreInfo?.FirstOrDefault(t => t.coreType == coreType);
} }
public List<CoreInfo> GetCoreInfo() public List<CoreInfo> GetCoreInfo()

View File

@@ -3,7 +3,7 @@ using Splat;
using System.Drawing; using System.Drawing;
using System.IO; using System.IO;
using System.Windows.Media.Imaging; using System.Windows.Media.Imaging;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.Resx; using v2rayN.Resx;
namespace v2rayN.Handler namespace v2rayN.Handler
@@ -27,7 +27,7 @@ namespace v2rayN.Handler
} }
//Load from local file //Load from local file
var fileName = Utile.GetPath($"NotifyIcon{index + 1}.ico"); var fileName = Utils.GetPath($"NotifyIcon{index + 1}.ico");
if (File.Exists(fileName)) if (File.Exists(fileName))
{ {
return new Icon(fileName); return new Icon(fileName);
@@ -79,7 +79,7 @@ namespace v2rayN.Handler
} }
var item = ConfigHandler.GetDefaultRouting(config); var item = ConfigHandler.GetDefaultRouting(config);
if (item == null || Utile.IsNullOrEmpty(item.customIcon) || !File.Exists(item.customIcon)) if (item == null || Utils.IsNullOrEmpty(item.customIcon) || !File.Exists(item.customIcon))
{ {
return null; return null;
} }
@@ -141,7 +141,7 @@ namespace v2rayN.Handler
return; return;
} }
string fileName = fileDialog.FileName; string fileName = fileDialog.FileName;
if (Utile.IsNullOrEmpty(fileName)) if (Utils.IsNullOrEmpty(fileName))
{ {
return; return;
} }

View File

@@ -1,6 +1,6 @@
using System.Collections.Concurrent; using System.Collections.Concurrent;
using System.Reactive.Linq; using System.Reactive.Linq;
using v2rayN.Model; using v2rayN.Models;
namespace v2rayN.Handler namespace v2rayN.Handler
{ {
@@ -44,7 +44,7 @@ namespace v2rayN.Handler
private void IndexIdEnqueue(string indexId) private void IndexIdEnqueue(string indexId)
{ {
if (!Utile.IsNullOrEmpty(indexId) && !_queIndexIds.Contains(indexId)) if (!Utils.IsNullOrEmpty(indexId) && !_queIndexIds.Contains(indexId))
{ {
_queIndexIds.Enqueue(indexId); _queIndexIds.Enqueue(indexId);
} }

View File

@@ -51,7 +51,7 @@ namespace v2rayN.Handler
} }
else if (type is 2 or 4) // named proxy or autoproxy script URL else if (type is 2 or 4) // named proxy or autoproxy script URL
{ {
optionCount = Utile.IsNullOrEmpty(exceptions) ? 2 : 3; optionCount = Utils.IsNullOrEmpty(exceptions) ? 2 : 3;
} }
int m_Int = (int)PerConnFlags.PROXY_TYPE_DIRECT; int m_Int = (int)PerConnFlags.PROXY_TYPE_DIRECT;

View File

@@ -1,6 +1,6 @@
using System.Collections.Specialized; using System.Collections.Specialized;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.Resx; using v2rayN.Resx;
namespace v2rayN.Handler namespace v2rayN.Handler
@@ -65,8 +65,8 @@ namespace v2rayN.Handler
fp = item.fingerprint fp = item.fingerprint
}; };
url = JsonUtile.Serialize(vmessQRCode); url = JsonUtils.Serialize(vmessQRCode);
url = Utile.Base64Encode(url); url = Utils.Base64Encode(url);
url = $"{Global.ProtocolShares[EConfigType.VMess]}{url}"; url = $"{Global.ProtocolShares[EConfigType.VMess]}{url}";
return url; return url;
@@ -77,9 +77,9 @@ namespace v2rayN.Handler
string url = string.Empty; string url = string.Empty;
string remark = string.Empty; string remark = string.Empty;
if (!Utile.IsNullOrEmpty(item.remarks)) if (!Utils.IsNullOrEmpty(item.remarks))
{ {
remark = "#" + Utile.UrlEncode(item.remarks); remark = "#" + Utils.UrlEncode(item.remarks);
} }
//url = string.Format("{0}:{1}@{2}:{3}", //url = string.Format("{0}:{1}@{2}:{3}",
// item.security, // item.security,
@@ -88,7 +88,7 @@ namespace v2rayN.Handler
// item.port); // item.port);
//url = Utile.Base64Encode(url); //url = Utile.Base64Encode(url);
//new Sip002 //new Sip002
var pw = Utile.Base64Encode($"{item.security}:{item.id}"); var pw = Utils.Base64Encode($"{item.security}:{item.id}");
url = $"{pw}@{GetIpv6(item.address)}:{item.port}"; url = $"{pw}@{GetIpv6(item.address)}:{item.port}";
url = $"{Global.ProtocolShares[EConfigType.Shadowsocks]}{url}{remark}"; url = $"{Global.ProtocolShares[EConfigType.Shadowsocks]}{url}{remark}";
return url; return url;
@@ -98,9 +98,9 @@ namespace v2rayN.Handler
{ {
string url = string.Empty; string url = string.Empty;
string remark = string.Empty; string remark = string.Empty;
if (!Utile.IsNullOrEmpty(item.remarks)) if (!Utils.IsNullOrEmpty(item.remarks))
{ {
remark = "#" + Utile.UrlEncode(item.remarks); remark = "#" + Utils.UrlEncode(item.remarks);
} }
//url = string.Format("{0}:{1}@{2}:{3}", //url = string.Format("{0}:{1}@{2}:{3}",
// item.security, // item.security,
@@ -109,7 +109,7 @@ namespace v2rayN.Handler
// item.port); // item.port);
//url = Utile.Base64Encode(url); //url = Utile.Base64Encode(url);
//new //new
var pw = Utile.Base64Encode($"{item.security}:{item.id}"); var pw = Utils.Base64Encode($"{item.security}:{item.id}");
url = $"{pw}@{GetIpv6(item.address)}:{item.port}"; url = $"{pw}@{GetIpv6(item.address)}:{item.port}";
url = $"{Global.ProtocolShares[EConfigType.Socks]}{url}{remark}"; url = $"{Global.ProtocolShares[EConfigType.Socks]}{url}{remark}";
return url; return url;
@@ -119,9 +119,9 @@ namespace v2rayN.Handler
{ {
string url = string.Empty; string url = string.Empty;
string remark = string.Empty; string remark = string.Empty;
if (!Utile.IsNullOrEmpty(item.remarks)) if (!Utils.IsNullOrEmpty(item.remarks))
{ {
remark = "#" + Utile.UrlEncode(item.remarks); remark = "#" + Utils.UrlEncode(item.remarks);
} }
var dicQuery = new Dictionary<string, string>(); var dicQuery = new Dictionary<string, string>();
GetStdTransport(item, null, ref dicQuery); GetStdTransport(item, null, ref dicQuery);
@@ -139,12 +139,12 @@ namespace v2rayN.Handler
{ {
string url = string.Empty; string url = string.Empty;
string remark = string.Empty; string remark = string.Empty;
if (!Utile.IsNullOrEmpty(item.remarks)) if (!Utils.IsNullOrEmpty(item.remarks))
{ {
remark = "#" + Utile.UrlEncode(item.remarks); remark = "#" + Utils.UrlEncode(item.remarks);
} }
var dicQuery = new Dictionary<string, string>(); var dicQuery = new Dictionary<string, string>();
if (!Utile.IsNullOrEmpty(item.security)) if (!Utils.IsNullOrEmpty(item.security))
{ {
dicQuery.Add("encryption", item.security); dicQuery.Add("encryption", item.security);
} }
@@ -167,23 +167,23 @@ namespace v2rayN.Handler
{ {
string url = string.Empty; string url = string.Empty;
string remark = string.Empty; string remark = string.Empty;
if (!Utile.IsNullOrEmpty(item.remarks)) if (!Utils.IsNullOrEmpty(item.remarks))
{ {
remark = "#" + Utile.UrlEncode(item.remarks); remark = "#" + Utils.UrlEncode(item.remarks);
} }
var dicQuery = new Dictionary<string, string>(); var dicQuery = new Dictionary<string, string>();
if (!Utile.IsNullOrEmpty(item.sni)) if (!Utils.IsNullOrEmpty(item.sni))
{ {
dicQuery.Add("sni", item.sni); dicQuery.Add("sni", item.sni);
} }
if (!Utile.IsNullOrEmpty(item.alpn)) if (!Utils.IsNullOrEmpty(item.alpn))
{ {
dicQuery.Add("alpn", Utile.UrlEncode(item.alpn)); dicQuery.Add("alpn", Utils.UrlEncode(item.alpn));
} }
if (!Utile.IsNullOrEmpty(item.path)) if (!Utils.IsNullOrEmpty(item.path))
{ {
dicQuery.Add("obfs", "salamander"); dicQuery.Add("obfs", "salamander");
dicQuery.Add("obfs-password", Utile.UrlEncode(item.path)); dicQuery.Add("obfs-password", Utils.UrlEncode(item.path));
} }
dicQuery.Add("insecure", item.allowInsecure.ToLower() == "true" ? "1" : "0"); dicQuery.Add("insecure", item.allowInsecure.ToLower() == "true" ? "1" : "0");
@@ -201,18 +201,18 @@ namespace v2rayN.Handler
{ {
string url = string.Empty; string url = string.Empty;
string remark = string.Empty; string remark = string.Empty;
if (!Utile.IsNullOrEmpty(item.remarks)) if (!Utils.IsNullOrEmpty(item.remarks))
{ {
remark = "#" + Utile.UrlEncode(item.remarks); remark = "#" + Utils.UrlEncode(item.remarks);
} }
var dicQuery = new Dictionary<string, string>(); var dicQuery = new Dictionary<string, string>();
if (!Utile.IsNullOrEmpty(item.sni)) if (!Utils.IsNullOrEmpty(item.sni))
{ {
dicQuery.Add("sni", item.sni); dicQuery.Add("sni", item.sni);
} }
if (!Utile.IsNullOrEmpty(item.alpn)) if (!Utils.IsNullOrEmpty(item.alpn))
{ {
dicQuery.Add("alpn", Utile.UrlEncode(item.alpn)); dicQuery.Add("alpn", Utils.UrlEncode(item.alpn));
} }
dicQuery.Add("congestion_control", item.headerType); dicQuery.Add("congestion_control", item.headerType);
@@ -230,32 +230,32 @@ namespace v2rayN.Handler
{ {
string url = string.Empty; string url = string.Empty;
string remark = string.Empty; string remark = string.Empty;
if (!Utile.IsNullOrEmpty(item.remarks)) if (!Utils.IsNullOrEmpty(item.remarks))
{ {
remark = "#" + Utile.UrlEncode(item.remarks); remark = "#" + Utils.UrlEncode(item.remarks);
} }
var dicQuery = new Dictionary<string, string>(); var dicQuery = new Dictionary<string, string>();
if (!Utile.IsNullOrEmpty(item.publicKey)) if (!Utils.IsNullOrEmpty(item.publicKey))
{ {
dicQuery.Add("publickey", Utile.UrlEncode(item.publicKey)); dicQuery.Add("publickey", Utils.UrlEncode(item.publicKey));
} }
if (!Utile.IsNullOrEmpty(item.path)) if (!Utils.IsNullOrEmpty(item.path))
{ {
dicQuery.Add("reserved", Utile.UrlEncode(item.path)); dicQuery.Add("reserved", Utils.UrlEncode(item.path));
} }
if (!Utile.IsNullOrEmpty(item.requestHost)) if (!Utils.IsNullOrEmpty(item.requestHost))
{ {
dicQuery.Add("address", Utile.UrlEncode(item.requestHost)); dicQuery.Add("address", Utils.UrlEncode(item.requestHost));
} }
if (!Utile.IsNullOrEmpty(item.shortId)) if (!Utils.IsNullOrEmpty(item.shortId))
{ {
dicQuery.Add("mtu", Utile.UrlEncode(item.shortId)); dicQuery.Add("mtu", Utils.UrlEncode(item.shortId));
} }
string query = "?" + string.Join("&", dicQuery.Select(x => x.Key + "=" + x.Value).ToArray()); string query = "?" + string.Join("&", dicQuery.Select(x => x.Key + "=" + x.Value).ToArray());
url = string.Format("{0}@{1}:{2}", url = string.Format("{0}@{1}:{2}",
Utile.UrlEncode(item.id), Utils.UrlEncode(item.id),
GetIpv6(item.address), GetIpv6(item.address),
item.port); item.port);
url = $"{Global.ProtocolShares[EConfigType.Wireguard]}{url}/{query}{remark}"; url = $"{Global.ProtocolShares[EConfigType.Wireguard]}{url}/{query}{remark}";
@@ -264,17 +264,17 @@ namespace v2rayN.Handler
private static string GetIpv6(string address) private static string GetIpv6(string address)
{ {
return Utile.IsIpv6(address) ? $"[{address}]" : address; return Utils.IsIpv6(address) ? $"[{address}]" : address;
} }
private static int GetStdTransport(ProfileItem item, string? securityDef, ref Dictionary<string, string> dicQuery) private static int GetStdTransport(ProfileItem item, string? securityDef, ref Dictionary<string, string> dicQuery)
{ {
if (!Utile.IsNullOrEmpty(item.flow)) if (!Utils.IsNullOrEmpty(item.flow))
{ {
dicQuery.Add("flow", item.flow); dicQuery.Add("flow", item.flow);
} }
if (!Utile.IsNullOrEmpty(item.streamSecurity)) if (!Utils.IsNullOrEmpty(item.streamSecurity))
{ {
dicQuery.Add("security", item.streamSecurity); dicQuery.Add("security", item.streamSecurity);
} }
@@ -285,89 +285,90 @@ namespace v2rayN.Handler
dicQuery.Add("security", securityDef); dicQuery.Add("security", securityDef);
} }
} }
if (!Utile.IsNullOrEmpty(item.sni)) if (!Utils.IsNullOrEmpty(item.sni))
{ {
dicQuery.Add("sni", item.sni); dicQuery.Add("sni", item.sni);
} }
if (!Utile.IsNullOrEmpty(item.alpn)) if (!Utils.IsNullOrEmpty(item.alpn))
{ {
dicQuery.Add("alpn", Utile.UrlEncode(item.alpn)); dicQuery.Add("alpn", Utils.UrlEncode(item.alpn));
} }
if (!Utile.IsNullOrEmpty(item.fingerprint)) if (!Utils.IsNullOrEmpty(item.fingerprint))
{ {
dicQuery.Add("fp", Utile.UrlEncode(item.fingerprint)); dicQuery.Add("fp", Utils.UrlEncode(item.fingerprint));
} }
if (!Utile.IsNullOrEmpty(item.publicKey)) if (!Utils.IsNullOrEmpty(item.publicKey))
{ {
dicQuery.Add("pbk", Utile.UrlEncode(item.publicKey)); dicQuery.Add("pbk", Utils.UrlEncode(item.publicKey));
} }
if (!Utile.IsNullOrEmpty(item.shortId)) if (!Utils.IsNullOrEmpty(item.shortId))
{ {
dicQuery.Add("sid", Utile.UrlEncode(item.shortId)); dicQuery.Add("sid", Utils.UrlEncode(item.shortId));
} }
if (!Utile.IsNullOrEmpty(item.spiderX)) if (!Utils.IsNullOrEmpty(item.spiderX))
{ {
dicQuery.Add("spx", Utile.UrlEncode(item.spiderX)); dicQuery.Add("spx", Utils.UrlEncode(item.spiderX));
} }
dicQuery.Add("type", !Utile.IsNullOrEmpty(item.network) ? item.network : nameof(ETransport.tcp)); dicQuery.Add("type", !Utils.IsNullOrEmpty(item.network) ? item.network : nameof(ETransport.tcp));
switch (item.network) switch (item.network)
{ {
case nameof(ETransport.tcp): case nameof(ETransport.tcp):
dicQuery.Add("headerType", !Utile.IsNullOrEmpty(item.headerType) ? item.headerType : Global.None); dicQuery.Add("headerType", !Utils.IsNullOrEmpty(item.headerType) ? item.headerType : Global.None);
if (!Utile.IsNullOrEmpty(item.requestHost)) if (!Utils.IsNullOrEmpty(item.requestHost))
{ {
dicQuery.Add("host", Utile.UrlEncode(item.requestHost)); dicQuery.Add("host", Utils.UrlEncode(item.requestHost));
} }
break; break;
case nameof(ETransport.kcp): case nameof(ETransport.kcp):
dicQuery.Add("headerType", !Utile.IsNullOrEmpty(item.headerType) ? item.headerType : Global.None); dicQuery.Add("headerType", !Utils.IsNullOrEmpty(item.headerType) ? item.headerType : Global.None);
if (!Utile.IsNullOrEmpty(item.path)) if (!Utils.IsNullOrEmpty(item.path))
{ {
dicQuery.Add("seed", Utile.UrlEncode(item.path)); dicQuery.Add("seed", Utils.UrlEncode(item.path));
} }
break; break;
case nameof(ETransport.ws): case nameof(ETransport.ws):
case nameof(ETransport.httpupgrade): case nameof(ETransport.httpupgrade):
if (!Utile.IsNullOrEmpty(item.requestHost)) if (!Utils.IsNullOrEmpty(item.requestHost))
{ {
dicQuery.Add("host", Utile.UrlEncode(item.requestHost)); dicQuery.Add("host", Utils.UrlEncode(item.requestHost));
} }
if (!Utile.IsNullOrEmpty(item.path)) if (!Utils.IsNullOrEmpty(item.path))
{ {
dicQuery.Add("path", Utile.UrlEncode(item.path)); dicQuery.Add("path", Utils.UrlEncode(item.path));
} }
break; break;
case nameof(ETransport.http): case nameof(ETransport.http):
case nameof(ETransport.h2): case nameof(ETransport.h2):
dicQuery["type"] = nameof(ETransport.http); dicQuery["type"] = nameof(ETransport.http);
if (!Utile.IsNullOrEmpty(item.requestHost)) if (!Utils.IsNullOrEmpty(item.requestHost))
{ {
dicQuery.Add("host", Utile.UrlEncode(item.requestHost)); dicQuery.Add("host", Utils.UrlEncode(item.requestHost));
} }
if (!Utile.IsNullOrEmpty(item.path)) if (!Utils.IsNullOrEmpty(item.path))
{ {
dicQuery.Add("path", Utile.UrlEncode(item.path)); dicQuery.Add("path", Utils.UrlEncode(item.path));
} }
break; break;
case nameof(ETransport.quic): case nameof(ETransport.quic):
dicQuery.Add("headerType", !Utile.IsNullOrEmpty(item.headerType) ? item.headerType : Global.None); dicQuery.Add("headerType", !Utils.IsNullOrEmpty(item.headerType) ? item.headerType : Global.None);
dicQuery.Add("quicSecurity", Utile.UrlEncode(item.requestHost)); dicQuery.Add("quicSecurity", Utils.UrlEncode(item.requestHost));
dicQuery.Add("key", Utile.UrlEncode(item.path)); dicQuery.Add("key", Utils.UrlEncode(item.path));
break; break;
case nameof(ETransport.grpc): case nameof(ETransport.grpc):
if (!Utile.IsNullOrEmpty(item.path)) if (!Utils.IsNullOrEmpty(item.path))
{ {
dicQuery.Add("serviceName", Utile.UrlEncode(item.path)); dicQuery.Add("authority", Utils.UrlEncode(item.requestHost));
dicQuery.Add("serviceName", Utils.UrlEncode(item.path));
if (item.headerType is Global.GrpcGunMode or Global.GrpcMultiMode) if (item.headerType is Global.GrpcGunMode or Global.GrpcMultiMode)
{ {
dicQuery.Add("mode", Utile.UrlEncode(item.headerType)); dicQuery.Add("mode", Utils.UrlEncode(item.headerType));
} }
} }
break; break;
@@ -392,7 +393,7 @@ namespace v2rayN.Handler
try try
{ {
string result = clipboardData.TrimEx(); string result = clipboardData.TrimEx();
if (Utile.IsNullOrEmpty(result)) if (Utils.IsNullOrEmpty(result))
{ {
msg = ResUI.FailedReadConfiguration; msg = ResUI.FailedReadConfiguration;
return null; return null;
@@ -483,10 +484,10 @@ namespace v2rayN.Handler
}; };
result = result[Global.ProtocolShares[EConfigType.VMess].Length..]; result = result[Global.ProtocolShares[EConfigType.VMess].Length..];
result = Utile.Base64Decode(result); result = Utils.Base64Decode(result);
//转成Json //转成Json
VmessQRCode? vmessQRCode = JsonUtile.Deserialize<VmessQRCode>(result); VmessQRCode? vmessQRCode = JsonUtils.Deserialize<VmessQRCode>(result);
if (vmessQRCode == null) if (vmessQRCode == null)
{ {
msg = ResUI.FailedConversionConfiguration; msg = ResUI.FailedConversionConfiguration;
@@ -496,30 +497,30 @@ namespace v2rayN.Handler
profileItem.network = Global.DefaultNetwork; profileItem.network = Global.DefaultNetwork;
profileItem.headerType = Global.None; profileItem.headerType = Global.None;
profileItem.configVersion = Utile.ToInt(vmessQRCode.v); profileItem.configVersion = Utils.ToInt(vmessQRCode.v);
profileItem.remarks = Utile.ToString(vmessQRCode.ps); profileItem.remarks = Utils.ToString(vmessQRCode.ps);
profileItem.address = Utile.ToString(vmessQRCode.add); profileItem.address = Utils.ToString(vmessQRCode.add);
profileItem.port = Utile.ToInt(vmessQRCode.port); profileItem.port = Utils.ToInt(vmessQRCode.port);
profileItem.id = Utile.ToString(vmessQRCode.id); profileItem.id = Utils.ToString(vmessQRCode.id);
profileItem.alterId = Utile.ToInt(vmessQRCode.aid); profileItem.alterId = Utils.ToInt(vmessQRCode.aid);
profileItem.security = Utile.ToString(vmessQRCode.scy); profileItem.security = Utils.ToString(vmessQRCode.scy);
profileItem.security = !Utile.IsNullOrEmpty(vmessQRCode.scy) ? vmessQRCode.scy : Global.DefaultSecurity; profileItem.security = !Utils.IsNullOrEmpty(vmessQRCode.scy) ? vmessQRCode.scy : Global.DefaultSecurity;
if (!Utile.IsNullOrEmpty(vmessQRCode.net)) if (!Utils.IsNullOrEmpty(vmessQRCode.net))
{ {
profileItem.network = vmessQRCode.net; profileItem.network = vmessQRCode.net;
} }
if (!Utile.IsNullOrEmpty(vmessQRCode.type)) if (!Utils.IsNullOrEmpty(vmessQRCode.type))
{ {
profileItem.headerType = vmessQRCode.type; profileItem.headerType = vmessQRCode.type;
} }
profileItem.requestHost = Utile.ToString(vmessQRCode.host); profileItem.requestHost = Utils.ToString(vmessQRCode.host);
profileItem.path = Utile.ToString(vmessQRCode.path); profileItem.path = Utils.ToString(vmessQRCode.path);
profileItem.streamSecurity = Utile.ToString(vmessQRCode.tls); profileItem.streamSecurity = Utils.ToString(vmessQRCode.tls);
profileItem.sni = Utile.ToString(vmessQRCode.sni); profileItem.sni = Utils.ToString(vmessQRCode.sni);
profileItem.alpn = Utile.ToString(vmessQRCode.alpn); profileItem.alpn = Utils.ToString(vmessQRCode.alpn);
profileItem.fingerprint = Utile.ToString(vmessQRCode.fp); profileItem.fingerprint = Utils.ToString(vmessQRCode.fp);
return profileItem; return profileItem;
} }
@@ -536,7 +537,7 @@ namespace v2rayN.Handler
{ {
result = result[..indexSplit]; result = result[..indexSplit];
} }
result = Utile.Base64Decode(result); result = Utils.Base64Decode(result);
string[] arr1 = result.Split('@'); string[] arr1 = result.Split('@');
if (arr1.Length != 2) if (arr1.Length != 2)
@@ -551,7 +552,7 @@ namespace v2rayN.Handler
} }
profileItem.address = arr22[0]; profileItem.address = arr22[0];
profileItem.port = Utile.ToInt(arr22[1]); profileItem.port = Utils.ToInt(arr22[1]);
profileItem.security = arr21[0]; profileItem.security = arr21[0];
profileItem.id = arr21[1]; profileItem.id = arr21[1];
@@ -575,7 +576,7 @@ namespace v2rayN.Handler
i.address = u.IdnHost; i.address = u.IdnHost;
i.port = u.Port; i.port = u.Port;
i.remarks = u.GetComponents(UriComponents.Fragment, UriFormat.Unescaped); i.remarks = u.GetComponents(UriComponents.Fragment, UriFormat.Unescaped);
var query = Utile.ParseQueryString(u.Query); var query = Utils.ParseQueryString(u.Query);
var m = StdVmessUserInfo.Match(u.UserInfo); var m = StdVmessUserInfo.Match(u.UserInfo);
if (!m.Success) return null; if (!m.Success) return null;
@@ -592,7 +593,7 @@ namespace v2rayN.Handler
break; break;
default: default:
if (!string.IsNullOrWhiteSpace(i.streamSecurity)) if (!Utils.IsNullOrEmpty(i.streamSecurity))
return null; return null;
break; break;
} }
@@ -613,7 +614,7 @@ namespace v2rayN.Handler
case nameof(ETransport.httpupgrade): case nameof(ETransport.httpupgrade):
string p1 = query["path"] ?? "/"; string p1 = query["path"] ?? "/";
string h1 = query["host"] ?? ""; string h1 = query["host"] ?? "";
i.requestHost = Utile.UrlDecode(h1); i.requestHost = Utils.UrlDecode(h1);
i.path = p1; i.path = p1;
break; break;
@@ -622,7 +623,7 @@ namespace v2rayN.Handler
i.network = nameof(ETransport.h2); i.network = nameof(ETransport.h2);
string p2 = query["path"] ?? "/"; string p2 = query["path"] ?? "/";
string h2 = query["host"] ?? ""; string h2 = query["host"] ?? "";
i.requestHost = Utile.UrlDecode(h2); i.requestHost = Utils.UrlDecode(h2);
i.path = p2; i.path = p2;
break; break;
@@ -631,7 +632,7 @@ namespace v2rayN.Handler
string k = query["key"] ?? ""; string k = query["key"] ?? "";
string t3 = query["type"] ?? Global.None; string t3 = query["type"] ?? Global.None;
i.headerType = t3; i.headerType = t3;
i.requestHost = Utile.UrlDecode(s); i.requestHost = Utils.UrlDecode(s);
i.path = k; i.path = k;
break; break;
@@ -669,12 +670,12 @@ namespace v2rayN.Handler
return null; return null;
} }
server.security = userInfoParts[0]; server.security = userInfoParts[0];
server.id = Utile.UrlDecode(userInfoParts[1]); server.id = Utils.UrlDecode(userInfoParts[1]);
} }
else else
{ {
// parse base64 UserInfo // parse base64 UserInfo
string userInfo = Utile.Base64Decode(rawUserInfo); string userInfo = Utils.Base64Decode(rawUserInfo);
string[] userInfoParts = userInfo.Split(new[] { ':' }, 2); string[] userInfoParts = userInfo.Split(new[] { ':' }, 2);
if (userInfoParts.Length != 2) if (userInfoParts.Length != 2)
{ {
@@ -684,12 +685,12 @@ namespace v2rayN.Handler
server.id = userInfoParts[1]; server.id = userInfoParts[1];
} }
var queryParameters = Utile.ParseQueryString(parsedUrl.Query); var queryParameters = Utils.ParseQueryString(parsedUrl.Query);
if (queryParameters["plugin"] != null) if (queryParameters["plugin"] != null)
{ {
//obfs-host exists //obfs-host exists
var obfsHost = queryParameters["plugin"]?.Split(';').FirstOrDefault(t => t.Contains("obfs-host")); var obfsHost = queryParameters["plugin"]?.Split(';').FirstOrDefault(t => t.Contains("obfs-host"));
if (queryParameters["plugin"].Contains("obfs=http") && !Utile.IsNullOrEmpty(obfsHost)) if (queryParameters["plugin"].Contains("obfs=http") && !Utils.IsNullOrEmpty(obfsHost))
{ {
obfsHost = obfsHost?.Replace("obfs-host=", ""); obfsHost = obfsHost?.Replace("obfs-host=", "");
server.network = Global.DefaultNetwork; server.network = Global.DefaultNetwork;
@@ -717,14 +718,14 @@ namespace v2rayN.Handler
ProfileItem server = new(); ProfileItem server = new();
var base64 = match.Groups["base64"].Value.TrimEnd('/'); var base64 = match.Groups["base64"].Value.TrimEnd('/');
var tag = match.Groups["tag"].Value; var tag = match.Groups["tag"].Value;
if (!Utile.IsNullOrEmpty(tag)) if (!Utils.IsNullOrEmpty(tag))
{ {
server.remarks = Utile.UrlDecode(tag); server.remarks = Utils.UrlDecode(tag);
} }
Match details; Match details;
try try
{ {
details = DetailsParser.Match(Utile.Base64Decode(base64)); details = DetailsParser.Match(Utils.Base64Decode(base64));
} }
catch (FormatException) catch (FormatException)
{ {
@@ -735,7 +736,7 @@ namespace v2rayN.Handler
server.security = details.Groups["method"].Value; server.security = details.Groups["method"].Value;
server.id = details.Groups["password"].Value; server.id = details.Groups["password"].Value;
server.address = details.Groups["hostname"].Value; server.address = details.Groups["hostname"].Value;
server.port = Utile.ToInt(details.Groups["port"].Value); server.port = Utils.ToInt(details.Groups["port"].Value);
return server; return server;
} }
@@ -755,7 +756,7 @@ namespace v2rayN.Handler
{ {
try try
{ {
profileItem.remarks = Utile.UrlDecode(result.Substring(indexRemark + 1, result.Length - indexRemark - 1)); profileItem.remarks = Utils.UrlDecode(result.Substring(indexRemark + 1, result.Length - indexRemark - 1));
} }
catch { } catch { }
result = result[..indexRemark]; result = result[..indexRemark];
@@ -767,7 +768,7 @@ namespace v2rayN.Handler
} }
else else
{ {
result = Utile.Base64Decode(result); result = Utils.Base64Decode(result);
} }
string[] arr1 = result.Split('@'); string[] arr1 = result.Split('@');
@@ -783,7 +784,7 @@ namespace v2rayN.Handler
return null; return null;
} }
profileItem.address = arr1[1][..indexPort]; profileItem.address = arr1[1][..indexPort];
profileItem.port = Utile.ToInt(arr1[1][(indexPort + 1)..]); profileItem.port = Utils.ToInt(arr1[1][(indexPort + 1)..]);
profileItem.security = arr21[0]; profileItem.security = arr21[0];
profileItem.id = arr21[1]; profileItem.id = arr21[1];
@@ -810,7 +811,7 @@ namespace v2rayN.Handler
// parse base64 UserInfo // parse base64 UserInfo
string rawUserInfo = parsedUrl.GetComponents(UriComponents.UserInfo, UriFormat.Unescaped); string rawUserInfo = parsedUrl.GetComponents(UriComponents.UserInfo, UriFormat.Unescaped);
string userInfo = Utile.Base64Decode(rawUserInfo); string userInfo = Utils.Base64Decode(rawUserInfo);
string[] userInfoParts = userInfo.Split(new[] { ':' }, 2); string[] userInfoParts = userInfo.Split(new[] { ':' }, 2);
if (userInfoParts.Length == 2) if (userInfoParts.Length == 2)
{ {
@@ -833,9 +834,9 @@ namespace v2rayN.Handler
item.address = url.IdnHost; item.address = url.IdnHost;
item.port = url.Port; item.port = url.Port;
item.remarks = url.GetComponents(UriComponents.Fragment, UriFormat.Unescaped); item.remarks = url.GetComponents(UriComponents.Fragment, UriFormat.Unescaped);
item.id = Utile.UrlDecode(url.UserInfo); item.id = Utils.UrlDecode(url.UserInfo);
var query = Utile.ParseQueryString(url.Query); var query = Utils.ParseQueryString(url.Query);
ResolveStdTransport(query, ref item); ResolveStdTransport(query, ref item);
return item; return item;
@@ -854,9 +855,9 @@ namespace v2rayN.Handler
item.address = url.IdnHost; item.address = url.IdnHost;
item.port = url.Port; item.port = url.Port;
item.remarks = url.GetComponents(UriComponents.Fragment, UriFormat.Unescaped); item.remarks = url.GetComponents(UriComponents.Fragment, UriFormat.Unescaped);
item.id = Utile.UrlDecode(url.UserInfo); item.id = Utils.UrlDecode(url.UserInfo);
var query = Utile.ParseQueryString(url.Query); var query = Utils.ParseQueryString(url.Query);
item.security = query["encryption"] ?? Global.None; item.security = query["encryption"] ?? Global.None;
item.streamSecurity = query["security"] ?? ""; item.streamSecurity = query["security"] ?? "";
ResolveStdTransport(query, ref item); ResolveStdTransport(query, ref item);
@@ -876,11 +877,11 @@ namespace v2rayN.Handler
item.address = url.IdnHost; item.address = url.IdnHost;
item.port = url.Port; item.port = url.Port;
item.remarks = url.GetComponents(UriComponents.Fragment, UriFormat.Unescaped); item.remarks = url.GetComponents(UriComponents.Fragment, UriFormat.Unescaped);
item.id = Utile.UrlDecode(url.UserInfo); item.id = Utils.UrlDecode(url.UserInfo);
var query = Utile.ParseQueryString(url.Query); var query = Utils.ParseQueryString(url.Query);
ResolveStdTransport(query, ref item); ResolveStdTransport(query, ref item);
item.path = Utile.UrlDecode(query["obfs-password"] ?? ""); item.path = Utils.UrlDecode(query["obfs-password"] ?? "");
item.allowInsecure = (query["insecure"] ?? "") == "1" ? "true" : "false"; item.allowInsecure = (query["insecure"] ?? "") == "1" ? "true" : "false";
return item; return item;
@@ -905,7 +906,7 @@ namespace v2rayN.Handler
item.security = userInfoParts[1]; item.security = userInfoParts[1];
} }
var query = Utile.ParseQueryString(url.Query); var query = Utils.ParseQueryString(url.Query);
ResolveStdTransport(query, ref item); ResolveStdTransport(query, ref item);
item.headerType = query["congestion_control"] ?? ""; item.headerType = query["congestion_control"] ?? "";
@@ -924,14 +925,14 @@ namespace v2rayN.Handler
item.address = url.IdnHost; item.address = url.IdnHost;
item.port = url.Port; item.port = url.Port;
item.remarks = url.GetComponents(UriComponents.Fragment, UriFormat.Unescaped); item.remarks = url.GetComponents(UriComponents.Fragment, UriFormat.Unescaped);
item.id = Utile.UrlDecode(url.UserInfo); item.id = Utils.UrlDecode(url.UserInfo);
var query = Utile.ParseQueryString(url.Query); var query = Utils.ParseQueryString(url.Query);
item.publicKey = Utile.UrlDecode(query["publickey"] ?? ""); item.publicKey = Utils.UrlDecode(query["publickey"] ?? "");
item.path = Utile.UrlDecode(query["reserved"] ?? ""); item.path = Utils.UrlDecode(query["reserved"] ?? "");
item.requestHost = Utile.UrlDecode(query["address"] ?? ""); item.requestHost = Utils.UrlDecode(query["address"] ?? "");
item.shortId = Utile.UrlDecode(query["mtu"] ?? ""); item.shortId = Utils.UrlDecode(query["mtu"] ?? "");
return item; return item;
} }
@@ -941,48 +942,49 @@ namespace v2rayN.Handler
item.flow = query["flow"] ?? ""; item.flow = query["flow"] ?? "";
item.streamSecurity = query["security"] ?? ""; item.streamSecurity = query["security"] ?? "";
item.sni = query["sni"] ?? ""; item.sni = query["sni"] ?? "";
item.alpn = Utile.UrlDecode(query["alpn"] ?? ""); item.alpn = Utils.UrlDecode(query["alpn"] ?? "");
item.fingerprint = Utile.UrlDecode(query["fp"] ?? ""); item.fingerprint = Utils.UrlDecode(query["fp"] ?? "");
item.publicKey = Utile.UrlDecode(query["pbk"] ?? ""); item.publicKey = Utils.UrlDecode(query["pbk"] ?? "");
item.shortId = Utile.UrlDecode(query["sid"] ?? ""); item.shortId = Utils.UrlDecode(query["sid"] ?? "");
item.spiderX = Utile.UrlDecode(query["spx"] ?? ""); item.spiderX = Utils.UrlDecode(query["spx"] ?? "");
item.network = query["type"] ?? nameof(ETransport.tcp); item.network = query["type"] ?? nameof(ETransport.tcp);
switch (item.network) switch (item.network)
{ {
case nameof(ETransport.tcp): case nameof(ETransport.tcp):
item.headerType = query["headerType"] ?? Global.None; item.headerType = query["headerType"] ?? Global.None;
item.requestHost = Utile.UrlDecode(query["host"] ?? ""); item.requestHost = Utils.UrlDecode(query["host"] ?? "");
break; break;
case nameof(ETransport.kcp): case nameof(ETransport.kcp):
item.headerType = query["headerType"] ?? Global.None; item.headerType = query["headerType"] ?? Global.None;
item.path = Utile.UrlDecode(query["seed"] ?? ""); item.path = Utils.UrlDecode(query["seed"] ?? "");
break; break;
case nameof(ETransport.ws): case nameof(ETransport.ws):
case nameof(ETransport.httpupgrade): case nameof(ETransport.httpupgrade):
item.requestHost = Utile.UrlDecode(query["host"] ?? ""); item.requestHost = Utils.UrlDecode(query["host"] ?? "");
item.path = Utile.UrlDecode(query["path"] ?? "/"); item.path = Utils.UrlDecode(query["path"] ?? "/");
break; break;
case nameof(ETransport.http): case nameof(ETransport.http):
case nameof(ETransport.h2): case nameof(ETransport.h2):
item.network = nameof(ETransport.h2); item.network = nameof(ETransport.h2);
item.requestHost = Utile.UrlDecode(query["host"] ?? ""); item.requestHost = Utils.UrlDecode(query["host"] ?? "");
item.path = Utile.UrlDecode(query["path"] ?? "/"); item.path = Utils.UrlDecode(query["path"] ?? "/");
break; break;
case nameof(ETransport.quic): case nameof(ETransport.quic):
item.headerType = query["headerType"] ?? Global.None; item.headerType = query["headerType"] ?? Global.None;
item.requestHost = query["quicSecurity"] ?? Global.None; item.requestHost = query["quicSecurity"] ?? Global.None;
item.path = Utile.UrlDecode(query["key"] ?? ""); item.path = Utils.UrlDecode(query["key"] ?? "");
break; break;
case nameof(ETransport.grpc): case nameof(ETransport.grpc):
item.path = Utile.UrlDecode(query["serviceName"] ?? ""); item.requestHost = Utils.UrlDecode(query["authority"] ?? "");
item.headerType = Utile.UrlDecode(query["mode"] ?? Global.GrpcGunMode); item.path = Utils.UrlDecode(query["serviceName"] ?? "");
item.headerType = Utils.UrlDecode(query["mode"] ?? Global.GrpcGunMode);
break; break;
default: default:

View File

@@ -2,7 +2,7 @@
using System.Diagnostics; using System.Diagnostics;
using System.Net; using System.Net;
using System.Net.Sockets; using System.Net.Sockets;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.Resx; using v2rayN.Resx;
namespace v2rayN.Handler namespace v2rayN.Handler

View File

@@ -1,4 +1,4 @@
using v2rayN.Model; using v2rayN.Models;
namespace v2rayN.Handler namespace v2rayN.Handler
{ {

View File

@@ -1,6 +1,6 @@
using System.Net.WebSockets; using System.Net.WebSockets;
using System.Text; using System.Text;
using v2rayN.Model; using v2rayN.Models;
namespace v2rayN.Handler namespace v2rayN.Handler
{ {
@@ -61,8 +61,13 @@ namespace v2rayN.Handler
while (!_exitFlag) while (!_exitFlag)
{ {
await Task.Delay(1000);
try try
{ {
if (!(_config.runningCoreType is ECoreType.sing_box or ECoreType.clash or ECoreType.clash_meta or ECoreType.mihomo))
{
continue;
}
if (webSocket != null) if (webSocket != null)
{ {
if (webSocket.State == WebSocketState.Aborted if (webSocket.State == WebSocketState.Aborted
@@ -84,7 +89,7 @@ namespace v2rayN.Handler
while (!res.CloseStatus.HasValue) while (!res.CloseStatus.HasValue)
{ {
var result = Encoding.UTF8.GetString(buffer, 0, res.Count); var result = Encoding.UTF8.GetString(buffer, 0, res.Count);
if (!string.IsNullOrEmpty(result)) if (!Utils.IsNullOrEmpty(result))
{ {
ParseOutput(result, out ulong up, out ulong down); ParseOutput(result, out ulong up, out ulong down);
@@ -101,10 +106,6 @@ namespace v2rayN.Handler
catch catch
{ {
} }
finally
{
await Task.Delay(1000);
}
} }
} }
@@ -113,7 +114,7 @@ namespace v2rayN.Handler
up = 0; down = 0; up = 0; down = 0;
try try
{ {
var trafficItem = JsonUtile.Deserialize<TrafficItem>(source); var trafficItem = JsonUtils.Deserialize<TrafficItem>(source);
if (trafficItem != null) if (trafficItem != null)
{ {
up = trafficItem.up; up = trafficItem.up;

View File

@@ -1,19 +1,19 @@
using Grpc.Core; using Grpc.Core;
using Grpc.Net.Client; using Grpc.Net.Client;
using ProtosLib.Statistics; using ProtosLib.Statistics;
using v2rayN.Model; using v2rayN.Models;
namespace v2rayN.Handler namespace v2rayN.Handler
{ {
internal class StatisticsV2ray internal class StatisticsV2ray
{ {
private Model.Config _config; private Models.Config _config;
private GrpcChannel? _channel; private GrpcChannel? _channel;
private StatsService.StatsServiceClient? _client; private StatsService.StatsServiceClient? _client;
private bool _exitFlag; private bool _exitFlag;
private Action<ServerSpeedItem> _updateFunc; private Action<ServerSpeedItem> _updateFunc;
public StatisticsV2ray(Model.Config config, Action<ServerSpeedItem> update) public StatisticsV2ray(Models.Config config, Action<ServerSpeedItem> update)
{ {
_config = config; _config = config;
_updateFunc = update; _updateFunc = update;
@@ -49,14 +49,20 @@ namespace v2rayN.Handler
{ {
while (!_exitFlag) while (!_exitFlag)
{ {
await Task.Delay(1000);
try try
{ {
if (!(_config.runningCoreType is ECoreType.Xray or ECoreType.v2fly or ECoreType.v2fly_v5 or ECoreType.SagerNet))
{
continue;
}
if (_channel?.State == ConnectivityState.Ready) if (_channel?.State == ConnectivityState.Ready)
{ {
QueryStatsResponse? res = null; QueryStatsResponse? res = null;
try try
{ {
res = await _client.QueryStatsAsync(new QueryStatsRequest() { Pattern = "", Reset = true }); if (_client != null)
res = await _client.QueryStatsAsync(new QueryStatsRequest() { Pattern = "", Reset = true });
} }
catch catch
{ {
@@ -68,8 +74,8 @@ namespace v2rayN.Handler
_updateFunc(server); _updateFunc(server);
} }
} }
await Task.Delay(1000); if (_channel != null)
if (_channel != null) await _channel.ConnectAsync(); await _channel.ConnectAsync();
} }
catch catch
{ {

View File

@@ -1,5 +1,5 @@
using PacLib; using PacLib;
using v2rayN.Model; using v2rayN.Models;
namespace v2rayN.Handler namespace v2rayN.Handler
{ {
@@ -53,7 +53,7 @@ namespace v2rayN.Handler
var strExceptions = $"<local>;{config.constItem.defIEProxyExceptions};{config.systemProxyExceptions}"; var strExceptions = $"<local>;{config.constItem.defIEProxyExceptions};{config.systemProxyExceptions}";
var strProxy = string.Empty; var strProxy = string.Empty;
if (Utile.IsNullOrEmpty(config.systemProxyAdvancedProtocol)) if (Utils.IsNullOrEmpty(config.systemProxyAdvancedProtocol))
{ {
strProxy = $"{Global.Loopback}:{port}"; strProxy = $"{Global.Loopback}:{port}";
} }
@@ -75,7 +75,7 @@ namespace v2rayN.Handler
} }
else if (type == ESysProxyType.Pac) else if (type == ESysProxyType.Pac)
{ {
PacHandler.Start(Utile.GetConfigPath(), port, portPac); PacHandler.Start(Utils.GetConfigPath(), port, portPac);
var strProxy = $"{Global.HttpProtocol}{Global.Loopback}:{portPac}/pac?t={DateTime.Now.Ticks}"; var strProxy = $"{Global.HttpProtocol}{Global.Loopback}:{portPac}/pac?t={DateTime.Now.Ticks}";
ProxySetting.SetProxy(strProxy, "", 4); // use pac script url for auto-config proxy ProxySetting.SetProxy(strProxy, "", 4); // use pac script url for auto-config proxy
} }
@@ -97,7 +97,7 @@ namespace v2rayN.Handler
try try
{ {
//TODO To be verified //TODO To be verified
Utile.RegWriteValue(@"Software\Microsoft\Windows\CurrentVersion\Internet Settings", "ProxyEnable", 0); Utils.RegWriteValue(@"Software\Microsoft\Windows\CurrentVersion\Internet Settings", "ProxyEnable", 0);
} }
catch catch
{ {

View File

@@ -6,7 +6,7 @@ using System.Runtime.InteropServices;
using System.Text; using System.Text;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using System.Windows; using System.Windows;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.Resx; using v2rayN.Resx;
namespace v2rayN.Handler namespace v2rayN.Handler
@@ -47,15 +47,15 @@ namespace v2rayN.Handler
try try
{ {
string fileName = Utile.GetTempPath(Utile.GetDownloadFileName(url)); string fileName = Utils.GetTempPath(Utils.GetDownloadFileName(url));
fileName = Utile.UrlEncode(fileName); fileName = Utils.UrlEncode(fileName);
Process process = new() Process process = new()
{ {
StartInfo = new ProcessStartInfo StartInfo = new ProcessStartInfo
{ {
FileName = "v2rayUpgrade.exe", FileName = "v2rayUpgrade.exe",
Arguments = fileName.AppendQuotes(), Arguments = fileName.AppendQuotes(),
WorkingDirectory = Utile.StartupPath() WorkingDirectory = Utils.StartupPath()
} }
}; };
process.Start(); process.Start();
@@ -179,7 +179,7 @@ namespace v2rayN.Handler
string url = item.url.TrimEx(); string url = item.url.TrimEx();
string userAgent = item.userAgent.TrimEx(); string userAgent = item.userAgent.TrimEx();
string hashCode = $"{item.remarks}->"; string hashCode = $"{item.remarks}->";
if (Utile.IsNullOrEmpty(id) || Utile.IsNullOrEmpty(url) || (!Utile.IsNullOrEmpty(subId) && item.id != subId)) if (Utils.IsNullOrEmpty(id) || Utils.IsNullOrEmpty(url) || (!Utils.IsNullOrEmpty(subId) && item.id != subId))
{ {
//_updateFunc(false, $"{hashCode}{ResUI.MsgNoValidSubscription}"); //_updateFunc(false, $"{hashCode}{ResUI.MsgNoValidSubscription}");
continue; continue;
@@ -203,12 +203,12 @@ namespace v2rayN.Handler
_updateFunc(false, $"{hashCode}{ResUI.MsgStartGettingSubscriptions}"); _updateFunc(false, $"{hashCode}{ResUI.MsgStartGettingSubscriptions}");
//one url //one url
url = Utile.GetPunycode(url); url = Utils.GetPunycode(url);
//convert //convert
if (!Utile.IsNullOrEmpty(item.convertTarget)) if (!Utils.IsNullOrEmpty(item.convertTarget))
{ {
var subConvertUrl = string.IsNullOrEmpty(config.constItem.subConvertUrl) ? Global.SubConvertUrls.FirstOrDefault() : config.constItem.subConvertUrl; var subConvertUrl = Utils.IsNullOrEmpty(config.constItem.subConvertUrl) ? Global.SubConvertUrls.FirstOrDefault() : config.constItem.subConvertUrl;
url = string.Format(subConvertUrl!, Utile.UrlEncode(url)); url = string.Format(subConvertUrl!, Utils.UrlEncode(url));
if (!url.Contains("target=")) if (!url.Contains("target="))
{ {
url += string.Format("&target={0}", item.convertTarget); url += string.Format("&target={0}", item.convertTarget);
@@ -219,17 +219,17 @@ namespace v2rayN.Handler
} }
} }
var result = await downloadHandle.TryDownloadString(url, blProxy, userAgent); var result = await downloadHandle.TryDownloadString(url, blProxy, userAgent);
if (blProxy && Utile.IsNullOrEmpty(result)) if (blProxy && Utils.IsNullOrEmpty(result))
{ {
result = await downloadHandle.TryDownloadString(url, false, userAgent); result = await downloadHandle.TryDownloadString(url, false, userAgent);
} }
//more url //more url
if (Utile.IsNullOrEmpty(item.convertTarget) && !Utile.IsNullOrEmpty(item.moreUrl.TrimEx())) if (Utils.IsNullOrEmpty(item.convertTarget) && !Utils.IsNullOrEmpty(item.moreUrl.TrimEx()))
{ {
if (!Utile.IsNullOrEmpty(result) && Utile.IsBase64String(result!)) if (!Utils.IsNullOrEmpty(result) && Utils.IsBase64String(result!))
{ {
result = Utile.Base64Decode(result); result = Utils.Base64Decode(result);
} }
var lstUrl = new List<string> var lstUrl = new List<string>
@@ -238,22 +238,22 @@ namespace v2rayN.Handler
}; };
foreach (var it in lstUrl) foreach (var it in lstUrl)
{ {
var url2 = Utile.GetPunycode(it); var url2 = Utils.GetPunycode(it);
if (Utile.IsNullOrEmpty(url2)) if (Utils.IsNullOrEmpty(url2))
{ {
continue; continue;
} }
var result2 = await downloadHandle.TryDownloadString(url2, blProxy, userAgent); var result2 = await downloadHandle.TryDownloadString(url2, blProxy, userAgent);
if (blProxy && Utile.IsNullOrEmpty(result2)) if (blProxy && Utils.IsNullOrEmpty(result2))
{ {
result2 = await downloadHandle.TryDownloadString(url2, false, userAgent); result2 = await downloadHandle.TryDownloadString(url2, false, userAgent);
} }
if (!Utile.IsNullOrEmpty(result2)) if (!Utils.IsNullOrEmpty(result2))
{ {
if (Utile.IsBase64String(result2!)) if (Utils.IsBase64String(result2!))
{ {
result += Utile.Base64Decode(result2); result += Utils.Base64Decode(result2);
} }
else else
{ {
@@ -263,14 +263,14 @@ namespace v2rayN.Handler
} }
} }
if (Utile.IsNullOrEmpty(result)) if (Utils.IsNullOrEmpty(result))
{ {
_updateFunc(false, $"{hashCode}{ResUI.MsgSubscriptionDecodingFailed}"); _updateFunc(false, $"{hashCode}{ResUI.MsgSubscriptionDecodingFailed}");
} }
else else
{ {
_updateFunc(false, $"{hashCode}{ResUI.MsgGetSubscriptionSuccessfully}"); _updateFunc(false, $"{hashCode}{ResUI.MsgGetSubscriptionSuccessfully}");
if (result!.Length < 99) if (result?.Length < 99)
{ {
_updateFunc(false, $"{hashCode}{result}"); _updateFunc(false, $"{hashCode}{result}");
} }
@@ -325,7 +325,7 @@ namespace v2rayN.Handler
string url = coreInfo.coreReleaseApiUrl; string url = coreInfo.coreReleaseApiUrl;
var result = await (new DownloadHandle()).DownloadStringAsync(url, true, ""); var result = await (new DownloadHandle()).DownloadStringAsync(url, true, "");
if (!Utile.IsNullOrEmpty(result)) if (!Utils.IsNullOrEmpty(result))
{ {
responseHandler(type, result, preRelease); responseHandler(type, result, preRelease);
} }
@@ -354,7 +354,7 @@ namespace v2rayN.Handler
foreach (string name in coreInfo.coreExes) foreach (string name in coreInfo.coreExes)
{ {
string vName = $"{name}.exe"; string vName = $"{name}.exe";
vName = Utile.GetBinPath(vName, coreInfo.coreType.ToString()); vName = Utils.GetBinPath(vName, coreInfo.coreType.ToString());
if (File.Exists(vName)) if (File.Exists(vName))
{ {
filePath = vName; filePath = vName;
@@ -372,7 +372,7 @@ namespace v2rayN.Handler
using Process p = new(); using Process p = new();
p.StartInfo.FileName = filePath.AppendQuotes(); p.StartInfo.FileName = filePath.AppendQuotes();
p.StartInfo.Arguments = coreInfo.versionArg; p.StartInfo.Arguments = coreInfo.versionArg;
p.StartInfo.WorkingDirectory = Utile.StartupPath(); p.StartInfo.WorkingDirectory = Utils.StartupPath();
p.StartInfo.UseShellExecute = false; p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true; p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.CreateNoWindow = true; p.StartInfo.CreateNoWindow = true;
@@ -414,10 +414,10 @@ namespace v2rayN.Handler
{ {
try try
{ {
var gitHubReleases = JsonUtile.Deserialize<List<GitHubRelease>>(gitHubReleaseApi); var gitHubReleases = JsonUtils.Deserialize<List<GitHubRelease>>(gitHubReleaseApi);
var gitHubRelease = preRelease ? gitHubReleases!.First() : gitHubReleases!.First(r => r.Prerelease == false); var gitHubRelease = preRelease ? gitHubReleases?.First() : gitHubReleases?.First(r => r.Prerelease == false);
var version = new SemanticVersion(gitHubRelease!.TagName); var version = new SemanticVersion(gitHubRelease?.TagName!);
var body = gitHubRelease!.Body; var body = gitHubRelease?.Body;
var coreInfo = LazyConfig.Instance.GetCoreInfo(type); var coreInfo = LazyConfig.Instance.GetCoreInfo(type);
@@ -498,7 +498,7 @@ namespace v2rayN.Handler
} }
case ECoreType.v2rayN: case ECoreType.v2rayN:
{ {
curVersion = new SemanticVersion(FileVersionInfo.GetVersionInfo(Utile.GetExePath()).FileVersion.ToString()); curVersion = new SemanticVersion(FileVersionInfo.GetVersionInfo(Utils.GetExePath()).FileVersion.ToString());
message = string.Format(ResUI.IsLatestN, type, curVersion); message = string.Format(ResUI.IsLatestN, type, curVersion);
switch (RuntimeInformation.ProcessArchitecture) switch (RuntimeInformation.ProcessArchitecture)
{ {
@@ -570,7 +570,7 @@ namespace v2rayN.Handler
try try
{ {
string fileName = Utile.GetTempPath(Utile.GetDownloadFileName(url)); string fileName = Utils.GetTempPath(Utils.GetDownloadFileName(url));
if (File.Exists(fileName)) if (File.Exists(fileName))
{ {
//Global.coreTypes.ForEach(it => //Global.coreTypes.ForEach(it =>
@@ -578,7 +578,7 @@ namespace v2rayN.Handler
// string targetPath = Utile.GetBinPath($"{geoName}.dat", (ECoreType)Enum.Parse(typeof(ECoreType), it)); // string targetPath = Utile.GetBinPath($"{geoName}.dat", (ECoreType)Enum.Parse(typeof(ECoreType), it));
// File.Copy(fileName, targetPath, true); // File.Copy(fileName, targetPath, true);
//}); //});
string targetPath = Utile.GetBinPath($"{geoName}.dat"); string targetPath = Utils.GetBinPath($"{geoName}.dat");
File.Copy(fileName, targetPath, true); File.Copy(fileName, targetPath, true);
File.Delete(fileName); File.Delete(fileName);

View File

@@ -1,4 +1,4 @@
namespace v2rayN.Model namespace v2rayN.Models
{ {
public class ComboItem public class ComboItem
{ {

View File

@@ -1,4 +1,4 @@
namespace v2rayN.Model namespace v2rayN.Models
{ {
/// <summary> /// <summary>
/// 本软件配置文件实体类 /// 本软件配置文件实体类
@@ -14,6 +14,8 @@
public string systemProxyExceptions { get; set; } public string systemProxyExceptions { get; set; }
public string systemProxyAdvancedProtocol { get; set; } public string systemProxyAdvancedProtocol { get; set; }
public ECoreType runningCoreType { get; set; }
#endregion property #endregion property
#region other entities #region other entities

View File

@@ -1,6 +1,6 @@
using System.Windows.Input; using System.Windows.Input;
namespace v2rayN.Model namespace v2rayN.Models
{ {
[Serializable] [Serializable]
public class CoreBasicItem public class CoreBasicItem
@@ -31,6 +31,8 @@ namespace v2rayN.Model
/// 默认用户代理 /// 默认用户代理
/// </summary> /// </summary>
public string defUserAgent { get; set; } public string defUserAgent { get; set; }
public bool enableFragment { get; set; }
} }
[Serializable] [Serializable]
@@ -122,7 +124,7 @@ namespace v2rayN.Model
public int currentFontSize { get; set; } public int currentFontSize { get; set; }
public bool enableDragDropSort { get; set; } public bool enableDragDropSort { get; set; }
public bool doubleClick2Activate { get; set; } public bool doubleClick2Activate { get; set; }
public bool autoHideStartup { get; set; } = true; public bool autoHideStartup { get; set; }
public string mainMsgFilter { get; set; } public string mainMsgFilter { get; set; }
public List<ColumnItem> mainColumnItem { get; set; } public List<ColumnItem> mainColumnItem { get; set; }
} }

View File

@@ -1,4 +1,4 @@
namespace v2rayN.Model namespace v2rayN.Models
{ {
[Serializable] [Serializable]
public class ConfigOld public class ConfigOld

View File

@@ -1,4 +1,4 @@
namespace v2rayN.Model namespace v2rayN.Models
{ {
[Serializable] [Serializable]
public class CoreInfo public class CoreInfo

View File

@@ -1,6 +1,6 @@
using SQLite; using SQLite;
namespace v2rayN.Model namespace v2rayN.Models
{ {
[Serializable] [Serializable]
public class DNSItem public class DNSItem

View File

@@ -1,4 +1,4 @@
namespace v2rayN.Model namespace v2rayN.Models
{ {
public enum EConfigType public enum EConfigType
{ {
@@ -10,6 +10,7 @@
Trojan = 6, Trojan = 6,
Hysteria2 = 7, Hysteria2 = 7,
Tuic = 8, Tuic = 8,
Wireguard = 9 Wireguard = 9,
Http = 10
} }
} }

View File

@@ -1,4 +1,4 @@
namespace v2rayN.Model namespace v2rayN.Models
{ {
public enum ECoreType public enum ECoreType
{ {

View File

@@ -1,4 +1,4 @@
namespace v2rayN.Model namespace v2rayN.Models
{ {
public enum EGlobalHotkey public enum EGlobalHotkey
{ {

View File

@@ -1,4 +1,4 @@
namespace v2rayN.Model namespace v2rayN.Models
{ {
public enum EInboundProtocol public enum EInboundProtocol
{ {

View File

@@ -1,4 +1,4 @@
namespace v2rayN.Model namespace v2rayN.Models
{ {
public enum EMove public enum EMove
{ {

View File

@@ -1,4 +1,4 @@
namespace v2rayN.Model namespace v2rayN.Models
{ {
public enum EServerColName public enum EServerColName
{ {

View File

@@ -1,4 +1,4 @@
namespace v2rayN.Model namespace v2rayN.Models
{ {
public enum ESpeedActionType public enum ESpeedActionType
{ {

View File

@@ -1,4 +1,4 @@
namespace v2rayN.Model namespace v2rayN.Models
{ {
public enum ESysProxyType public enum ESysProxyType
{ {

View File

@@ -1,4 +1,4 @@
namespace v2rayN.Model namespace v2rayN.Models
{ {
public enum ETransport public enum ETransport
{ {

View File

@@ -1,4 +1,4 @@
namespace v2rayN.Model namespace v2rayN.Models
{ {
public enum EViewAction public enum EViewAction
{ {

View File

@@ -1,6 +1,6 @@
using System.Text.Json.Serialization; using System.Text.Json.Serialization;
namespace v2rayN.Model namespace v2rayN.Models
{ {
public class GitHubReleaseAsset public class GitHubReleaseAsset
{ {

View File

@@ -1,6 +1,6 @@
using SQLite; using SQLite;
namespace v2rayN.Model namespace v2rayN.Models
{ {
[Serializable] [Serializable]
public class ProfileExItem public class ProfileExItem

View File

@@ -1,6 +1,6 @@
using SQLite; using SQLite;
namespace v2rayN.Model namespace v2rayN.Models
{ {
[Serializable] [Serializable]
public class ProfileItem public class ProfileItem
@@ -60,19 +60,19 @@ namespace v2rayN.Model
public List<string> GetAlpn() public List<string> GetAlpn()
{ {
if (Utile.IsNullOrEmpty(alpn)) if (Utils.IsNullOrEmpty(alpn))
{ {
return null; return null;
} }
else else
{ {
return Utile.String2List(alpn); return Utils.String2List(alpn);
} }
} }
public string GetNetwork() public string GetNetwork()
{ {
if (Utile.IsNullOrEmpty(network) || !Global.Networks.Contains(network)) if (Utils.IsNullOrEmpty(network) || !Global.Networks.Contains(network))
{ {
return Global.DefaultNetwork; return Global.DefaultNetwork;
} }

View File

@@ -1,4 +1,4 @@
namespace v2rayN.Model namespace v2rayN.Models
{ {
[Serializable] [Serializable]
public class ProfileItemModel : ProfileItem public class ProfileItemModel : ProfileItem

View File

@@ -1,6 +1,6 @@
using SQLite; using SQLite;
namespace v2rayN.Model namespace v2rayN.Models
{ {
[Serializable] [Serializable]
public class RoutingItem public class RoutingItem

View File

@@ -1,4 +1,4 @@
namespace v2rayN.Model namespace v2rayN.Models
{ {
[Serializable] [Serializable]
public class RoutingItemModel : RoutingItem public class RoutingItemModel : RoutingItem

View File

@@ -1,4 +1,4 @@
namespace v2rayN.Model namespace v2rayN.Models
{ {
[Serializable] [Serializable]
public class RulesItem public class RulesItem

View File

@@ -1,4 +1,4 @@
namespace v2rayN.Model namespace v2rayN.Models
{ {
[Serializable] [Serializable]
public class RulesItemModel : RulesItem public class RulesItemModel : RulesItem

View File

@@ -1,4 +1,4 @@
namespace v2rayN.Model namespace v2rayN.Models
{ {
[Serializable] [Serializable]
internal class ServerSpeedItem : ServerStatItem internal class ServerSpeedItem : ServerStatItem

View File

@@ -1,6 +1,6 @@
using SQLite; using SQLite;
namespace v2rayN.Model namespace v2rayN.Models
{ {
[Serializable] [Serializable]
public class ServerStatItem public class ServerStatItem

View File

@@ -1,4 +1,4 @@
namespace v2rayN.Model namespace v2rayN.Models
{ {
[Serializable] [Serializable]
internal class ServerTestItem internal class ServerTestItem

View File

@@ -1,9 +1,9 @@
namespace v2rayN.Model namespace v2rayN.Models
{ {
public class SingboxConfig public class SingboxConfig
{ {
public Log4Sbox log { get; set; } public Log4Sbox log { get; set; }
public object dns { get; set; } public Dns4Sbox? dns { get; set; }
public List<Inbound4Sbox> inbounds { get; set; } public List<Inbound4Sbox> inbounds { get; set; }
public List<Outbound4Sbox> outbounds { get; set; } public List<Outbound4Sbox> outbounds { get; set; }
public Route4Sbox route { get; set; } public Route4Sbox route { get; set; }
@@ -35,6 +35,7 @@
{ {
public bool? auto_detect_interface { get; set; } public bool? auto_detect_interface { get; set; }
public List<Rule4Sbox> rules { get; set; } public List<Rule4Sbox> rules { get; set; }
public List<Ruleset4Sbox>? rule_set { get; set; }
} }
[Serializable] [Serializable]
@@ -48,6 +49,7 @@
public string type { get; set; } public string type { get; set; }
public string mode { get; set; } public string mode { get; set; }
public string network { get; set; } public string network { get; set; }
public bool? ip_is_private { get; set; }
public List<int>? port { get; set; } public List<int>? port { get; set; }
public List<string>? port_range { get; set; } public List<string>? port_range { get; set; }
public List<string>? geosite { get; set; } public List<string>? geosite { get; set; }
@@ -58,8 +60,8 @@
public List<string>? geoip { get; set; } public List<string>? geoip { get; set; }
public List<string>? ip_cidr { get; set; } public List<string>? ip_cidr { get; set; }
public List<string>? source_ip_cidr { get; set; } public List<string>? source_ip_cidr { get; set; }
public List<string>? process_name { get; set; } public List<string>? process_name { get; set; }
public List<string>? rule_set { get; set; }
} }
[Serializable] [Serializable]
@@ -186,7 +188,7 @@
public string address { get; set; } public string address { get; set; }
public string address_resolver { get; set; } public string address_resolver { get; set; }
public string strategy { get; set; } public string strategy { get; set; }
public string detour { get; set; } public string? detour { get; set; }
} }
public class Experimental4Sbox public class Experimental4Sbox
@@ -230,4 +232,13 @@
public string? cache_id { get; set; } public string? cache_id { get; set; }
public bool? store_fakeip { get; set; } public bool? store_fakeip { get; set; }
} }
public class Ruleset4Sbox
{
public string? tag { get; set; }
public string? type { get; set; }
public string? format { get; set; }
public string? url { get; set; }
public string? download_detour { get; set; }
}
} }

View File

@@ -1,4 +1,4 @@
namespace v2rayN.Model namespace v2rayN.Models
{ {
public class SsSIP008 public class SsSIP008
{ {

View File

@@ -1,6 +1,6 @@
using SQLite; using SQLite;
namespace v2rayN.Model namespace v2rayN.Models
{ {
[Serializable] [Serializable]
public class SubItem public class SubItem

View File

@@ -1,4 +1,4 @@
namespace v2rayN.Model namespace v2rayN.Models
{ {
internal class SysProxyConfig internal class SysProxyConfig
{ {

View File

@@ -1,12 +1,17 @@
using System.Text.Json.Serialization; using System.Text.Json.Serialization;
namespace v2rayN.Model namespace v2rayN.Models
{ {
/// <summary> /// <summary>
/// v2ray配置文件实体类 例子SampleConfig.txt /// v2ray配置文件实体类 例子SampleConfig.txt
/// </summary> /// </summary>
public class V2rayConfig public class V2rayConfig
{ {
/// <summary>
/// Properties that do not belong to Ray
/// </summary>
public string? remarks { get; set; }
/// <summary> /// <summary>
/// 日志配置 /// 日志配置
/// </summary> /// </summary>
@@ -227,7 +232,7 @@ namespace v2rayN.Model
/// <summary> /// <summary>
/// ///
/// </summary> /// </summary>
public List<VnextItem4Ray> vnext { get; set; } public List<VnextItem4Ray>? vnext { get; set; }
/// <summary> /// <summary>
/// ///
@@ -248,6 +253,8 @@ namespace v2rayN.Model
/// ///
/// </summary> /// </summary>
public int? userLevel { get; set; } public int? userLevel { get; set; }
public FragmentItem4Ray? fragment { get; set; }
} }
public class VnextItem4Ray public class VnextItem4Ray
@@ -283,17 +290,17 @@ namespace v2rayN.Model
/// <summary> /// <summary>
/// ///
/// </summary> /// </summary>
public string method { get; set; } public string? method { get; set; }
/// <summary> /// <summary>
/// ///
/// </summary> /// </summary>
public bool ota { get; set; } public bool? ota { get; set; }
/// <summary> /// <summary>
/// ///
/// </summary> /// </summary>
public string password { get; set; } public string? password { get; set; }
/// <summary> /// <summary>
/// ///
@@ -303,7 +310,7 @@ namespace v2rayN.Model
/// <summary> /// <summary>
/// ///
/// </summary> /// </summary>
public int level { get; set; } public int? level { get; set; }
/// <summary> /// <summary>
/// trojan /// trojan
@@ -331,7 +338,7 @@ namespace v2rayN.Model
/// <summary> /// <summary>
/// ///
/// </summary> /// </summary>
public int level { get; set; } public int? level { get; set; }
} }
public class Mux4Ray public class Mux4Ray
@@ -384,19 +391,19 @@ namespace v2rayN.Model
[Serializable] [Serializable]
public class RulesItem4Ray public class RulesItem4Ray
{ {
public string type { get; set; } public string? type { get; set; }
public string port { get; set; } public string? port { get; set; }
public List<string> inboundTag { get; set; } public List<string>? inboundTag { get; set; }
public string outboundTag { get; set; } public string? outboundTag { get; set; }
public List<string> ip { get; set; } public List<string>? ip { get; set; }
public List<string> domain { get; set; } public List<string>? domain { get; set; }
public List<string> protocol { get; set; } public List<string>? protocol { get; set; }
} }
public class StreamSettings4Ray public class StreamSettings4Ray
@@ -634,7 +641,8 @@ namespace v2rayN.Model
public class GrpcSettings4Ray public class GrpcSettings4Ray
{ {
public string serviceName { get; set; } public string? authority { get; set; }
public string? serviceName { get; set; }
public bool multiMode { get; set; } public bool multiMode { get; set; }
public int idle_timeout { get; set; } public int idle_timeout { get; set; }
public int health_check_timeout { get; set; } public int health_check_timeout { get; set; }
@@ -659,4 +667,11 @@ namespace v2rayN.Model
{ {
public string? dialerProxy { get; set; } public string? dialerProxy { get; set; }
} }
public class FragmentItem4Ray
{
public string? packets { get; set; }
public string? length { get; set; }
public string? interval { get; set; }
}
} }

View File

@@ -1,4 +1,4 @@
namespace v2rayN.Model namespace v2rayN.Models
{ {
/// <summary> /// <summary>
/// Tcp伪装http的Request只要Host /// Tcp伪装http的Request只要Host

View File

@@ -1,6 +1,6 @@
using System.Text.Json.Serialization; using System.Text.Json.Serialization;
namespace v2rayN.Model namespace v2rayN.Models
{ {
/// <summary> /// <summary>
/// https://github.com/2dust/v2rayN/wiki/ /// https://github.com/2dust/v2rayN/wiki/

View File

@@ -618,6 +618,15 @@ namespace v2rayN.Resx {
} }
} }
/// <summary>
/// 查找类似 Add [Http] server 的本地化字符串。
/// </summary>
public static string menuAddHttpServer {
get {
return ResourceManager.GetString("menuAddHttpServer", resourceCulture);
}
}
/// <summary> /// <summary>
/// 查找类似 Add [Hysteria2] server 的本地化字符串。 /// 查找类似 Add [Hysteria2] server 的本地化字符串。
/// </summary> /// </summary>
@@ -2626,6 +2635,24 @@ namespace v2rayN.Resx {
} }
} }
/// <summary>
/// 查找类似 Enable fragment 的本地化字符串。
/// </summary>
public static string TbSettingsEnableFragment {
get {
return ResourceManager.GetString("TbSettingsEnableFragment", resourceCulture);
}
}
/// <summary>
/// 查找类似 Use Xray and enable non-Tun mode, which conflicts with the group previous proxy 的本地化字符串。
/// </summary>
public static string TbSettingsEnableFragmentTips {
get {
return ResourceManager.GetString("TbSettingsEnableFragmentTips", resourceCulture);
}
}
/// <summary> /// <summary>
/// 查找类似 Enable hardware acceleration(Require restart) 的本地化字符串。 /// 查找类似 Enable hardware acceleration(Require restart) 的本地化字符串。
/// </summary> /// </summary>
@@ -3149,7 +3176,7 @@ namespace v2rayN.Resx {
} }
/// <summary> /// <summary>
/// 查找类似 * After setting this value, an socks service will be started using sing-box to provide functions such as speed display 的本地化字符串。 /// 查找类似 * After setting this value, an socks service will be started using Xray/sing-box(Tun) to provide functions such as speed display 的本地化字符串。
/// </summary> /// </summary>
public static string TipPreSocksPort { public static string TipPreSocksPort {
get { get {
@@ -3283,6 +3310,15 @@ namespace v2rayN.Resx {
} }
} }
/// <summary>
/// 查找类似 *grpc Authority 的本地化字符串。
/// </summary>
public static string TransportRequestHostTip5 {
get {
return ResourceManager.GetString("TransportRequestHostTip5", resourceCulture);
}
}
/// <summary> /// <summary>
/// 查找类似 Ungrouped 的本地化字符串。 /// 查找类似 Ungrouped 的本地化字符串。
/// </summary> /// </summary>

View File

@@ -698,7 +698,7 @@
<value>txtPreSocksPort</value> <value>txtPreSocksPort</value>
</data> </data>
<data name="TipPreSocksPort" xml:space="preserve"> <data name="TipPreSocksPort" xml:space="preserve">
<value>* After setting this value, an socks service will be started using sing-box to provide functions such as speed display</value> <value>* After setting this value, an socks service will be started using Xray/sing-box(Tun) to provide functions such as speed display</value>
</data> </data>
<data name="TbBrowse" xml:space="preserve"> <data name="TbBrowse" xml:space="preserve">
<value>Browse</value> <value>Browse</value>

View File

@@ -701,7 +701,7 @@
<value>txtPreSocksPort</value> <value>txtPreSocksPort</value>
</data> </data>
<data name="TipPreSocksPort" xml:space="preserve"> <data name="TipPreSocksPort" xml:space="preserve">
<value>* After setting this value, an socks service will be started using sing-box to provide functions such as speed display</value> <value>* After setting this value, an socks service will be started using Xray/sing-box(Tun) to provide functions such as speed display</value>
</data> </data>
<data name="TbBrowse" xml:space="preserve"> <data name="TbBrowse" xml:space="preserve">
<value>Browse</value> <value>Browse</value>
@@ -1195,4 +1195,16 @@
<data name="SpeedtestingStop" xml:space="preserve"> <data name="SpeedtestingStop" xml:space="preserve">
<value>Test terminating...</value> <value>Test terminating...</value>
</data> </data>
<data name="TransportRequestHostTip5" xml:space="preserve">
<value>*grpc Authority</value>
</data>
<data name="menuAddHttpServer" xml:space="preserve">
<value>Add [Http] server</value>
</data>
<data name="TbSettingsEnableFragmentTips" xml:space="preserve">
<value>Use Xray and enable non-Tun mode, which conflicts with the group previous proxy</value>
</data>
<data name="TbSettingsEnableFragment" xml:space="preserve">
<value>Enable fragment</value>
</data>
</root> </root>

View File

@@ -701,7 +701,7 @@
<value>txtPreSocksPort</value> <value>txtPreSocksPort</value>
</data> </data>
<data name="TipPreSocksPort" xml:space="preserve"> <data name="TipPreSocksPort" xml:space="preserve">
<value>* После установки этого значения служба socks будет запущена с использованием sing-box для обеспечения таких функций, как отображение скорости</value> <value>* После установки этого значения служба socks будет запущена с использованием Xray/sing-box(Tun) для обеспечения таких функций, как отображение скорости</value>
</data> </data>
<data name="TbBrowse" xml:space="preserve"> <data name="TbBrowse" xml:space="preserve">
<value>Просмотр</value> <value>Просмотр</value>

View File

@@ -701,7 +701,7 @@
<value>Socks端口</value> <value>Socks端口</value>
</data> </data>
<data name="TipPreSocksPort" xml:space="preserve"> <data name="TipPreSocksPort" xml:space="preserve">
<value>* 自定义配置的Socks端口值可不设置当设置此值后将使用sing-box额外启动一个前置Socks服务提供分流和速度显示等功能</value> <value>* 自定义配置的Socks端口值可不设置当设置此值后将使用Xray/sing-box(Tun)额外启动一个前置Socks服务提供分流和速度显示等功能</value>
</data> </data>
<data name="TbBrowse" xml:space="preserve"> <data name="TbBrowse" xml:space="preserve">
<value>浏览</value> <value>浏览</value>
@@ -1192,4 +1192,16 @@
<data name="SpeedtestingStop" xml:space="preserve"> <data name="SpeedtestingStop" xml:space="preserve">
<value>测试终止中...</value> <value>测试终止中...</value>
</data> </data>
<data name="TransportRequestHostTip5" xml:space="preserve">
<value>*grpc Authority</value>
</data>
<data name="menuAddHttpServer" xml:space="preserve">
<value>添加[Http]服务器</value>
</data>
<data name="TbSettingsEnableFragment" xml:space="preserve">
<value>启用分片Fragment</value>
</data>
<data name="TbSettingsEnableFragmentTips" xml:space="preserve">
<value>使用Xray且非Tun模式启用和分组前置代理冲突</value>
</data>
</root> </root>

View File

@@ -700,7 +700,7 @@
<value>SOCKS埠</value> <value>SOCKS埠</value>
</data> </data>
<data name="TipPreSocksPort" xml:space="preserve"> <data name="TipPreSocksPort" xml:space="preserve">
<value>* 自訂配置的Socks埠值可不設定當設定此值後將使用sing-box額外啟動一個前置Socks服務提供分流和速度顯示等功能</value> <value>* 自訂配置的Socks埠值可不設定當設定此值後將使用Xray/sing-box(Tun)額外啟動一個前置Socks服務提供分流和速度顯示等功能</value>
</data> </data>
<!--********************************************--> <!--********************************************-->
<data name="TbBrowse" xml:space="preserve"> <data name="TbBrowse" xml:space="preserve">
@@ -1165,4 +1165,16 @@
<data name="SpeedtestingStop" xml:space="preserve"> <data name="SpeedtestingStop" xml:space="preserve">
<value>測試終止中...</value> <value>測試終止中...</value>
</data> </data>
<data name="TransportRequestHostTip5" xml:space="preserve">
<value>*grpc Authority</value>
</data>
<data name="menuAddHttpServer" xml:space="preserve">
<value>新增[Http]伺服器</value>
</data>
<data name="TbSettingsEnableFragment" xml:space="preserve">
<value>啟用分片Fragment</value>
</data>
<data name="TbSettingsEnableFragmentTips" xml:space="preserve">
<value>使用Xray且非Tun模式啟用和分組前置代理衝突</value>
</data>
</root> </root>

View File

@@ -13,20 +13,10 @@
}, },
{ {
"outboundTag": "proxy", "outboundTag": "proxy",
"ip": [
"geoip:cloudflare",
"geoip:cloudfront",
"geoip:facebook",
"geoip:fastly",
"geoip:google",
"geoip:netflix",
"geoip:telegram",
"geoip:twitter"
],
"domain": [ "domain": [
"geosite:gfw", "geosite:geolocation-!cn",
"geosite:greatfire", "geosite:greatfire"
"geosite:tld-!cn"
] ]
}, },
{ {

View File

@@ -15,7 +15,8 @@
{ {
"outboundTag": "direct", "outboundTag": "direct",
"domain": [ "domain": [
"geosite:cn" "geosite:cn",
"geosite:geolocation-cn"
] ]
}, },
{ {

View File

@@ -3,11 +3,13 @@
{ {
"tag": "remote", "tag": "remote",
"address": "tcp://8.8.8.8", "address": "tcp://8.8.8.8",
"strategy": "ipv4_only",
"detour": "proxy" "detour": "proxy"
}, },
{ {
"tag": "local", "tag": "local",
"address": "223.5.5.5", "address": "223.5.5.5",
"strategy": "ipv4_only",
"detour": "direct" "detour": "direct"
}, },
{ {
@@ -17,14 +19,14 @@
], ],
"rules": [ "rules": [
{ {
"geosite": [ "rule_set": [
"cn" "geosite-geolocation-!cn"
], ],
"server": "local" "server": "remote"
}, },
{ {
"geosite": [ "rule_set": [
"category-ads-all" "geosite-category-ads-all"
], ],
"server": "block" "server": "block"
} }

View File

@@ -7,7 +7,8 @@
{ {
"address": "223.5.5.5", "address": "223.5.5.5",
"domains": [ "domains": [
"geosite:cn" "geosite:cn",
"geosite:geolocation-cn"
], ],
"expectIPs": [ "expectIPs": [
"geoip:cn" "geoip:cn"

View File

@@ -3,11 +3,13 @@
{ {
"tag": "remote", "tag": "remote",
"address": "tcp://8.8.8.8", "address": "tcp://8.8.8.8",
"strategy": "ipv4_only",
"detour": "proxy" "detour": "proxy"
}, },
{ {
"tag": "local", "tag": "local",
"address": "223.5.5.5", "address": "223.5.5.5",
"strategy": "ipv4_only",
"detour": "direct" "detour": "direct"
}, },
{ {
@@ -17,19 +19,16 @@
], ],
"rules": [ "rules": [
{ {
"geosite": [ "rule_set": [
"cn" "geosite-geolocation-!cn"
], ],
"server": "local", "server": "remote"
"disable_cache": true
}, },
{ {
"geosite": [ "rule_set": [
"category-ads-all" "geosite-category-ads-all"
], ],
"server": "block", "server": "block"
"disable_cache": true
} }
], ]
"strategy": "ipv4_only"
} }

View File

@@ -6,7 +6,7 @@ using System.IO;
using System.Reactive; using System.Reactive;
using System.Windows; using System.Windows;
using v2rayN.Handler; using v2rayN.Handler;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.Resx; using v2rayN.Resx;
namespace v2rayN.ViewModels namespace v2rayN.ViewModels
@@ -36,7 +36,7 @@ namespace v2rayN.ViewModels
} }
else else
{ {
SelectedSource = JsonUtile.DeepCopy(profileItem); SelectedSource = JsonUtils.DeepCopy(profileItem);
} }
_view = view; _view = view;
@@ -56,19 +56,19 @@ namespace v2rayN.ViewModels
SaveServer(); SaveServer();
}); });
Utile.SetDarkBorder(view, _config.uiItem.colorModeDark); Utils.SetDarkBorder(view, _config.uiItem.colorModeDark);
} }
private void SaveServer() private void SaveServer()
{ {
string remarks = SelectedSource.remarks; string remarks = SelectedSource.remarks;
if (Utile.IsNullOrEmpty(remarks)) if (Utils.IsNullOrEmpty(remarks))
{ {
_noticeHandler?.Enqueue(ResUI.PleaseFillRemarks); _noticeHandler?.Enqueue(ResUI.PleaseFillRemarks);
return; return;
} }
if (Utile.IsNullOrEmpty(SelectedSource.address)) if (Utils.IsNullOrEmpty(SelectedSource.address))
{ {
_noticeHandler?.Enqueue(ResUI.FillServerAddressCustom); _noticeHandler?.Enqueue(ResUI.FillServerAddressCustom);
return; return;
@@ -108,7 +108,7 @@ namespace v2rayN.ViewModels
{ {
return; return;
} }
if (Utile.IsNullOrEmpty(fileName)) if (Utils.IsNullOrEmpty(fileName))
{ {
return; return;
} }
@@ -119,9 +119,9 @@ namespace v2rayN.ViewModels
if (ConfigHandler.AddCustomServer(_config, item, false) == 0) if (ConfigHandler.AddCustomServer(_config, item, false) == 0)
{ {
_noticeHandler?.Enqueue(ResUI.SuccessfullyImportedCustomServer); _noticeHandler?.Enqueue(ResUI.SuccessfullyImportedCustomServer);
if (!Utile.IsNullOrEmpty(item.indexId)) if (!Utils.IsNullOrEmpty(item.indexId))
{ {
SelectedSource = JsonUtile.DeepCopy(item); SelectedSource = JsonUtils.DeepCopy(item);
} }
IsModified = true; IsModified = true;
} }
@@ -134,16 +134,16 @@ namespace v2rayN.ViewModels
private void EditServer() private void EditServer()
{ {
var address = SelectedSource.address; var address = SelectedSource.address;
if (Utile.IsNullOrEmpty(address)) if (Utils.IsNullOrEmpty(address))
{ {
_noticeHandler?.Enqueue(ResUI.FillServerAddressCustom); _noticeHandler?.Enqueue(ResUI.FillServerAddressCustom);
return; return;
} }
address = Utile.GetConfigPath(address); address = Utils.GetConfigPath(address);
if (File.Exists(address)) if (File.Exists(address))
{ {
Utile.ProcessStart(address); Utils.ProcessStart(address);
} }
else else
{ {

View File

@@ -4,7 +4,7 @@ using Splat;
using System.Reactive; using System.Reactive;
using System.Windows; using System.Windows;
using v2rayN.Handler; using v2rayN.Handler;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.Resx; using v2rayN.Resx;
namespace v2rayN.ViewModels namespace v2rayN.ViewModels
@@ -36,7 +36,7 @@ namespace v2rayN.ViewModels
} }
else else
{ {
SelectedSource = JsonUtile.DeepCopy(profileItem); SelectedSource = JsonUtils.DeepCopy(profileItem);
} }
SaveCmd = ReactiveCommand.Create(() => SaveCmd = ReactiveCommand.Create(() =>
@@ -44,24 +44,24 @@ namespace v2rayN.ViewModels
SaveServer(); SaveServer();
}); });
Utile.SetDarkBorder(view, _config.uiItem.colorModeDark); Utils.SetDarkBorder(view, _config.uiItem.colorModeDark);
} }
private void SaveServer() private void SaveServer()
{ {
if (Utile.IsNullOrEmpty(SelectedSource.remarks)) if (Utils.IsNullOrEmpty(SelectedSource.remarks))
{ {
_noticeHandler?.Enqueue(ResUI.PleaseFillRemarks); _noticeHandler?.Enqueue(ResUI.PleaseFillRemarks);
return; return;
} }
if (Utile.IsNullOrEmpty(SelectedSource.address)) if (Utils.IsNullOrEmpty(SelectedSource.address))
{ {
_noticeHandler?.Enqueue(ResUI.FillServerAddress); _noticeHandler?.Enqueue(ResUI.FillServerAddress);
return; return;
} }
var port = SelectedSource.port.ToString(); var port = SelectedSource.port.ToString();
if (Utile.IsNullOrEmpty(port) || !Utile.IsNumeric(port) if (Utils.IsNullOrEmpty(port) || !Utils.IsNumeric(port)
|| SelectedSource.port <= 0 || SelectedSource.port >= Global.MaxPort) || SelectedSource.port <= 0 || SelectedSource.port >= Global.MaxPort)
{ {
_noticeHandler?.Enqueue(ResUI.FillCorrectServerPort); _noticeHandler?.Enqueue(ResUI.FillCorrectServerPort);
@@ -69,20 +69,21 @@ namespace v2rayN.ViewModels
} }
if (SelectedSource.configType == EConfigType.Shadowsocks) if (SelectedSource.configType == EConfigType.Shadowsocks)
{ {
if (Utile.IsNullOrEmpty(SelectedSource.id)) if (Utils.IsNullOrEmpty(SelectedSource.id))
{ {
_noticeHandler?.Enqueue(ResUI.FillPassword); _noticeHandler?.Enqueue(ResUI.FillPassword);
return; return;
} }
if (Utile.IsNullOrEmpty(SelectedSource.security)) if (Utils.IsNullOrEmpty(SelectedSource.security))
{ {
_noticeHandler?.Enqueue(ResUI.PleaseSelectEncryption); _noticeHandler?.Enqueue(ResUI.PleaseSelectEncryption);
return; return;
} }
} }
if (SelectedSource.configType != EConfigType.Socks) if (SelectedSource.configType != EConfigType.Socks
&& SelectedSource.configType != EConfigType.Http)
{ {
if (Utile.IsNullOrEmpty(SelectedSource.id)) if (Utils.IsNullOrEmpty(SelectedSource.id))
{ {
_noticeHandler?.Enqueue(ResUI.FillUUID); _noticeHandler?.Enqueue(ResUI.FillUUID);
return; return;
@@ -127,6 +128,7 @@ namespace v2rayN.ViewModels
EConfigType.VMess => ConfigHandler.AddServer(_config, item), EConfigType.VMess => ConfigHandler.AddServer(_config, item),
EConfigType.Shadowsocks => ConfigHandler.AddShadowsocksServer(_config, item), EConfigType.Shadowsocks => ConfigHandler.AddShadowsocksServer(_config, item),
EConfigType.Socks => ConfigHandler.AddSocksServer(_config, item), EConfigType.Socks => ConfigHandler.AddSocksServer(_config, item),
EConfigType.Http => ConfigHandler.AddHttpServer(_config, item),
EConfigType.Trojan => ConfigHandler.AddTrojanServer(_config, item), EConfigType.Trojan => ConfigHandler.AddTrojanServer(_config, item),
EConfigType.VLESS => ConfigHandler.AddVlessServer(_config, item), EConfigType.VLESS => ConfigHandler.AddVlessServer(_config, item),
EConfigType.Hysteria2 => ConfigHandler.AddHysteria2Server(_config, item), EConfigType.Hysteria2 => ConfigHandler.AddHysteria2Server(_config, item),

View File

@@ -4,7 +4,7 @@ using Splat;
using System.Reactive; using System.Reactive;
using System.Windows; using System.Windows;
using v2rayN.Handler; using v2rayN.Handler;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.Resx; using v2rayN.Resx;
namespace v2rayN.ViewModels namespace v2rayN.ViewModels
@@ -47,23 +47,23 @@ namespace v2rayN.ViewModels
ImportDefConfig4V2rayCmd = ReactiveCommand.Create(() => ImportDefConfig4V2rayCmd = ReactiveCommand.Create(() =>
{ {
normalDNS = Utile.GetEmbedText(Global.DNSV2rayNormalFileName); normalDNS = Utils.GetEmbedText(Global.DNSV2rayNormalFileName);
}); });
ImportDefConfig4SingboxCmd = ReactiveCommand.Create(() => ImportDefConfig4SingboxCmd = ReactiveCommand.Create(() =>
{ {
normalDNS2 = Utile.GetEmbedText(Global.DNSSingboxNormalFileName); normalDNS2 = Utils.GetEmbedText(Global.DNSSingboxNormalFileName);
tunDNS2 = Utile.GetEmbedText(Global.TunSingboxDNSFileName); tunDNS2 = Utils.GetEmbedText(Global.TunSingboxDNSFileName);
}); });
Utile.SetDarkBorder(view, _config.uiItem.colorModeDark); Utils.SetDarkBorder(view, _config.uiItem.colorModeDark);
} }
private void SaveSetting() private void SaveSetting()
{ {
if (!Utile.IsNullOrEmpty(normalDNS)) if (!Utils.IsNullOrEmpty(normalDNS))
{ {
var obj = JsonUtile.ParseJson(normalDNS); var obj = JsonUtils.ParseJson(normalDNS);
if (obj != null && obj["servers"] != null) if (obj != null && obj["servers"] != null)
{ {
} }
@@ -76,18 +76,18 @@ namespace v2rayN.ViewModels
} }
} }
} }
if (!Utile.IsNullOrEmpty(normalDNS2)) if (!Utils.IsNullOrEmpty(normalDNS2))
{ {
var obj2 = JsonUtile.Deserialize<Dns4Sbox>(normalDNS2); var obj2 = JsonUtils.Deserialize<Dns4Sbox>(normalDNS2);
if (obj2 == null) if (obj2 == null)
{ {
_noticeHandler?.Enqueue(ResUI.FillCorrectDNSText); _noticeHandler?.Enqueue(ResUI.FillCorrectDNSText);
return; return;
} }
} }
if (!Utile.IsNullOrEmpty(tunDNS2)) if (!Utils.IsNullOrEmpty(tunDNS2))
{ {
var obj2 = JsonUtile.Deserialize<Dns4Sbox>(tunDNS2); var obj2 = JsonUtils.Deserialize<Dns4Sbox>(tunDNS2);
if (obj2 == null) if (obj2 == null)
{ {
_noticeHandler?.Enqueue(ResUI.FillCorrectDNSText); _noticeHandler?.Enqueue(ResUI.FillCorrectDNSText);
@@ -102,8 +102,8 @@ namespace v2rayN.ViewModels
ConfigHandler.SaveDNSItems(_config, item); ConfigHandler.SaveDNSItems(_config, item);
var item2 = LazyConfig.Instance.GetDNSItem(ECoreType.sing_box); var item2 = LazyConfig.Instance.GetDNSItem(ECoreType.sing_box);
item2.normalDNS = JsonUtile.Serialize(JsonUtile.ParseJson(normalDNS2)); item2.normalDNS = JsonUtils.Serialize(JsonUtils.ParseJson(normalDNS2));
item2.tunDNS = JsonUtile.Serialize(JsonUtile.ParseJson(tunDNS2)); item2.tunDNS = JsonUtils.Serialize(JsonUtils.ParseJson(tunDNS2));
ConfigHandler.SaveDNSItems(_config, item2); ConfigHandler.SaveDNSItems(_config, item2);
_noticeHandler?.Enqueue(ResUI.OperationSuccess); _noticeHandler?.Enqueue(ResUI.OperationSuccess);

View File

@@ -15,7 +15,7 @@ using System.Text;
using System.Windows; using System.Windows;
using System.Windows.Media; using System.Windows.Media;
using v2rayN.Handler; using v2rayN.Handler;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.Resx; using v2rayN.Resx;
using v2rayN.Views; using v2rayN.Views;
@@ -86,6 +86,7 @@ namespace v2rayN.ViewModels
public ReactiveCommand<Unit, Unit> AddVlessServerCmd { get; } public ReactiveCommand<Unit, Unit> AddVlessServerCmd { get; }
public ReactiveCommand<Unit, Unit> AddShadowsocksServerCmd { get; } public ReactiveCommand<Unit, Unit> AddShadowsocksServerCmd { get; }
public ReactiveCommand<Unit, Unit> AddSocksServerCmd { get; } public ReactiveCommand<Unit, Unit> AddSocksServerCmd { get; }
public ReactiveCommand<Unit, Unit> AddHttpServerCmd { get; }
public ReactiveCommand<Unit, Unit> AddTrojanServerCmd { get; } public ReactiveCommand<Unit, Unit> AddTrojanServerCmd { get; }
public ReactiveCommand<Unit, Unit> AddHysteria2ServerCmd { get; } public ReactiveCommand<Unit, Unit> AddHysteria2ServerCmd { get; }
public ReactiveCommand<Unit, Unit> AddTuicServerCmd { get; } public ReactiveCommand<Unit, Unit> AddTuicServerCmd { get; }
@@ -265,7 +266,7 @@ namespace v2rayN.ViewModels
SelectedMoveToGroup = new(); SelectedMoveToGroup = new();
SelectedRouting = new(); SelectedRouting = new();
SelectedServer = new(); SelectedServer = new();
if (_config.tunModeItem.enableTun && Utile.IsAdministrator()) if (_config.tunModeItem.enableTun && Utils.IsAdministrator())
{ {
EnableTun = true; EnableTun = true;
} }
@@ -333,6 +334,10 @@ namespace v2rayN.ViewModels
{ {
EditServer(true, EConfigType.Socks); EditServer(true, EConfigType.Socks);
}); });
AddHttpServerCmd = ReactiveCommand.Create(() =>
{
EditServer(true, EConfigType.Http);
});
AddTrojanServerCmd = ReactiveCommand.Create(() => AddTrojanServerCmd = ReactiveCommand.Create(() =>
{ {
EditServer(true, EConfigType.Trojan); EditServer(true, EConfigType.Trojan);
@@ -597,7 +602,7 @@ namespace v2rayN.ViewModels
private void OnProgramStarted(object state, bool timeout) private void OnProgramStarted(object state, bool timeout)
{ {
Application.Current.Dispatcher.Invoke((Action)(() => Application.Current?.Dispatcher.Invoke((Action)(() =>
{ {
ShowHideWindow(true); ShowHideWindow(true);
})); }));
@@ -638,15 +643,15 @@ namespace v2rayN.ViewModels
{ {
try try
{ {
Application.Current.Dispatcher.Invoke((Action)(() => Application.Current?.Dispatcher.Invoke((Action)(() =>
{ {
if (!_showInTaskbar) if (!_showInTaskbar)
{ {
return; return;
} }
SpeedProxyDisplay = string.Format(ResUI.SpeedDisplayText, Global.ProxyTag, Utile.HumanFy(update.proxyUp), Utile.HumanFy(update.proxyDown)); SpeedProxyDisplay = string.Format(ResUI.SpeedDisplayText, Global.ProxyTag, Utils.HumanFy(update.proxyUp), Utils.HumanFy(update.proxyDown));
SpeedDirectDisplay = string.Format(ResUI.SpeedDisplayText, Global.DirectTag, Utile.HumanFy(update.directUp), Utile.HumanFy(update.directDown)); SpeedDirectDisplay = string.Format(ResUI.SpeedDisplayText, Global.DirectTag, Utils.HumanFy(update.directUp), Utils.HumanFy(update.directDown));
if (update.proxyUp + update.proxyDown > 0) if (update.proxyUp + update.proxyDown > 0)
{ {
@@ -656,20 +661,20 @@ namespace v2rayN.ViewModels
var item = _profileItems.Where(it => it.indexId == update.indexId).FirstOrDefault(); var item = _profileItems.Where(it => it.indexId == update.indexId).FirstOrDefault();
if (item != null) if (item != null)
{ {
item.todayDown = Utile.HumanFy(update.todayDown); item.todayDown = Utils.HumanFy(update.todayDown);
item.todayUp = Utile.HumanFy(update.todayUp); item.todayUp = Utils.HumanFy(update.todayUp);
item.totalDown = Utile.HumanFy(update.totalDown); item.totalDown = Utils.HumanFy(update.totalDown);
item.totalUp = Utile.HumanFy(update.totalUp); item.totalUp = Utils.HumanFy(update.totalUp);
if (SelectedProfile?.indexId == item.indexId) if (SelectedProfile?.indexId == item.indexId)
{ {
var temp = JsonUtile.DeepCopy(item); var temp = JsonUtils.DeepCopy(item);
_profileItems.Replace(item, temp); _profileItems.Replace(item, temp);
SelectedProfile = temp; SelectedProfile = temp;
} }
else else
{ {
_profileItems.Replace(item, JsonUtile.DeepCopy(item)); _profileItems.Replace(item, JsonUtils.DeepCopy(item));
} }
} }
} }
@@ -684,7 +689,7 @@ namespace v2rayN.ViewModels
private void UpdateSpeedtestHandler(string indexId, string delay, string speed) private void UpdateSpeedtestHandler(string indexId, string delay, string speed)
{ {
Application.Current.Dispatcher.Invoke((Action)(() => Application.Current?.Dispatcher.Invoke((Action)(() =>
{ {
SetTestResult(indexId, delay, speed); SetTestResult(indexId, delay, speed);
})); }));
@@ -692,7 +697,7 @@ namespace v2rayN.ViewModels
private void SetTestResult(string indexId, string delay, string speed) private void SetTestResult(string indexId, string delay, string speed)
{ {
if (Utile.IsNullOrEmpty(indexId)) if (Utils.IsNullOrEmpty(indexId))
{ {
_noticeHandler?.SendMessage(delay, true); _noticeHandler?.SendMessage(delay, true);
_noticeHandler?.Enqueue(delay); _noticeHandler?.Enqueue(delay);
@@ -701,17 +706,17 @@ namespace v2rayN.ViewModels
var item = _profileItems.Where(it => it.indexId == indexId).FirstOrDefault(); var item = _profileItems.Where(it => it.indexId == indexId).FirstOrDefault();
if (item != null) if (item != null)
{ {
if (!Utile.IsNullOrEmpty(delay)) if (!Utils.IsNullOrEmpty(delay))
{ {
int.TryParse(delay, out int temp); int.TryParse(delay, out int temp);
item.delay = temp; item.delay = temp;
item.delayVal = $"{delay} {Global.DelayUnit}"; item.delayVal = $"{delay} {Global.DelayUnit}";
} }
if (!Utile.IsNullOrEmpty(speed)) if (!Utils.IsNullOrEmpty(speed))
{ {
item.speedVal = $"{speed} {Global.SpeedUnit}"; item.speedVal = $"{speed} {Global.SpeedUnit}";
} }
_profileItems.Replace(item, JsonUtile.DeepCopy(item)); _profileItems.Replace(item, JsonUtils.DeepCopy(item));
} }
} }
@@ -747,7 +752,6 @@ namespace v2rayN.ViewModels
{ {
Logging.SaveLog("MyAppExit Begin"); Logging.SaveLog("MyAppExit Begin");
StorageUI();
ConfigHandler.SaveConfig(_config); ConfigHandler.SaveConfig(_config);
//HttpProxyHandle.CloseHttpAgent(config); //HttpProxyHandle.CloseHttpAgent(config);
@@ -772,7 +776,6 @@ namespace v2rayN.ViewModels
finally finally
{ {
Application.Current.Shutdown(); Application.Current.Shutdown();
Environment.Exit(0);
} }
} }
@@ -801,7 +804,7 @@ namespace v2rayN.ViewModels
return; return;
} }
_serverFilter = ServerFilter; _serverFilter = ServerFilter;
if (Utile.IsNullOrEmpty(_serverFilter)) if (Utils.IsNullOrEmpty(_serverFilter))
{ {
RefreshServers(); RefreshServers();
} }
@@ -841,14 +844,14 @@ namespace v2rayN.ViewModels
delay = t33 == null ? 0 : t33.delay, delay = t33 == null ? 0 : t33.delay,
delayVal = t33?.delay != 0 ? $"{t33?.delay} {Global.DelayUnit}" : string.Empty, delayVal = t33?.delay != 0 ? $"{t33?.delay} {Global.DelayUnit}" : string.Empty,
speedVal = t33?.speed != 0 ? $"{t33?.speed} {Global.SpeedUnit}" : string.Empty, speedVal = t33?.speed != 0 ? $"{t33?.speed} {Global.SpeedUnit}" : string.Empty,
todayDown = t22 == null ? "" : Utile.HumanFy(t22.todayDown), todayDown = t22 == null ? "" : Utils.HumanFy(t22.todayDown),
todayUp = t22 == null ? "" : Utile.HumanFy(t22.todayUp), todayUp = t22 == null ? "" : Utils.HumanFy(t22.todayUp),
totalDown = t22 == null ? "" : Utile.HumanFy(t22.totalDown), totalDown = t22 == null ? "" : Utils.HumanFy(t22.totalDown),
totalUp = t22 == null ? "" : Utile.HumanFy(t22.totalUp) totalUp = t22 == null ? "" : Utils.HumanFy(t22.totalUp)
}).OrderBy(t => t.sort).ToList(); }).OrderBy(t => t.sort).ToList();
_lstProfile = JsonUtile.Deserialize<List<ProfileItem>>(JsonUtile.Serialize(lstModel)); _lstProfile = JsonUtils.Deserialize<List<ProfileItem>>(JsonUtils.Serialize(lstModel));
Application.Current.Dispatcher.Invoke((Action)(() => Application.Current?.Dispatcher.Invoke((Action)(() =>
{ {
_profileItems.Clear(); _profileItems.Clear();
_profileItems.AddRange(lstModel); _profileItems.AddRange(lstModel);
@@ -951,7 +954,7 @@ namespace v2rayN.ViewModels
} }
else else
{ {
lstSelecteds = JsonUtile.Deserialize<List<ProfileItem>>(JsonUtile.Serialize(orderProfiles)); lstSelecteds = JsonUtils.Deserialize<List<ProfileItem>>(JsonUtils.Serialize(orderProfiles));
} }
return 0; return 0;
@@ -971,7 +974,7 @@ namespace v2rayN.ViewModels
} }
else else
{ {
if (Utile.IsNullOrEmpty(SelectedProfile?.indexId)) if (Utils.IsNullOrEmpty(SelectedProfile?.indexId))
{ {
return; return;
} }
@@ -1004,7 +1007,7 @@ namespace v2rayN.ViewModels
public void AddServerViaClipboard() public void AddServerViaClipboard()
{ {
var clipboardData = Utile.GetClipboardData(); var clipboardData = Utils.GetClipboardData();
int ret = ConfigHandler.AddBatchServers(_config, clipboardData!, _subId, false); int ret = ConfigHandler.AddBatchServers(_config, clipboardData!, _subId, false);
if (ret > 0) if (ret > 0)
{ {
@@ -1018,15 +1021,15 @@ namespace v2rayN.ViewModels
{ {
ShowHideWindow(false); ShowHideWindow(false);
var dpiXY = Utile.GetDpiXY(Application.Current.MainWindow); var dpiXY = Utils.GetDpiXY(Application.Current.MainWindow);
string result = await Task.Run(() => string result = await Task.Run(() =>
{ {
return Utile.ScanScreen(dpiXY.Item1, dpiXY.Item2); return Utils.ScanScreen(dpiXY.Item1, dpiXY.Item2);
}); });
ShowHideWindow(true); ShowHideWindow(true);
if (Utile.IsNullOrEmpty(result)) if (Utils.IsNullOrEmpty(result))
{ {
_noticeHandler?.Enqueue(ResUI.NoValidQRcodeFound); _noticeHandler?.Enqueue(ResUI.NoValidQRcodeFound);
} }
@@ -1088,7 +1091,7 @@ namespace v2rayN.ViewModels
public void SetDefaultServer() public void SetDefaultServer()
{ {
if (Utile.IsNullOrEmpty(SelectedProfile?.indexId)) if (Utils.IsNullOrEmpty(SelectedProfile?.indexId))
{ {
return; return;
} }
@@ -1097,7 +1100,7 @@ namespace v2rayN.ViewModels
private void SetDefaultServer(string indexId) private void SetDefaultServer(string indexId)
{ {
if (Utile.IsNullOrEmpty(indexId)) if (Utils.IsNullOrEmpty(indexId))
{ {
return; return;
} }
@@ -1129,7 +1132,7 @@ namespace v2rayN.ViewModels
{ {
return; return;
} }
if (Utile.IsNullOrEmpty(SelectedServer.ID)) if (Utils.IsNullOrEmpty(SelectedServer.ID))
{ {
return; return;
} }
@@ -1145,7 +1148,7 @@ namespace v2rayN.ViewModels
return; return;
} }
var url = ShareHandler.GetShareUrl(item); var url = ShareHandler.GetShareUrl(item);
if (Utile.IsNullOrEmpty(url)) if (Utils.IsNullOrEmpty(url))
{ {
return; return;
} }
@@ -1161,7 +1164,7 @@ namespace v2rayN.ViewModels
public void SortServer(string colName) public void SortServer(string colName)
{ {
if (Utile.IsNullOrEmpty(colName)) if (Utils.IsNullOrEmpty(colName))
{ {
return; return;
} }
@@ -1186,7 +1189,7 @@ namespace v2rayN.ViewModels
(new UpdateHandle()).RunAvailabilityCheck((bool success, string msg) => (new UpdateHandle()).RunAvailabilityCheck((bool success, string msg) =>
{ {
_noticeHandler?.SendMessage(msg, true); _noticeHandler?.SendMessage(msg, true);
Application.Current.Dispatcher.Invoke((Action)(() => Application.Current?.Dispatcher.Invoke((Action)(() =>
{ {
if (!_showInTaskbar) if (!_showInTaskbar)
{ {
@@ -1286,7 +1289,7 @@ namespace v2rayN.ViewModels
foreach (var it in lstSelecteds) foreach (var it in lstSelecteds)
{ {
string url = ShareHandler.GetShareUrl(it); string url = ShareHandler.GetShareUrl(it);
if (Utile.IsNullOrEmpty(url)) if (Utils.IsNullOrEmpty(url))
{ {
continue; continue;
} }
@@ -1295,7 +1298,7 @@ namespace v2rayN.ViewModels
} }
if (sb.Length > 0) if (sb.Length > 0)
{ {
Utile.SetClipboardData(sb.ToString()); Utils.SetClipboardData(sb.ToString());
_noticeHandler?.SendMessage(ResUI.BatchExportURLSuccessfully); _noticeHandler?.SendMessage(ResUI.BatchExportURLSuccessfully);
} }
} }
@@ -1311,7 +1314,7 @@ namespace v2rayN.ViewModels
foreach (var it in lstSelecteds) foreach (var it in lstSelecteds)
{ {
string? url = ShareHandler.GetShareUrl(it); string? url = ShareHandler.GetShareUrl(it);
if (Utile.IsNullOrEmpty(url)) if (Utils.IsNullOrEmpty(url))
{ {
continue; continue;
} }
@@ -1320,7 +1323,7 @@ namespace v2rayN.ViewModels
} }
if (sb.Length > 0) if (sb.Length > 0)
{ {
Utile.SetClipboardData(Utile.Base64Encode(sb.ToString())); Utils.SetClipboardData(Utils.Base64Encode(sb.ToString()));
_noticeHandler?.SendMessage(ResUI.BatchExportSubscriptionSuccessfully); _noticeHandler?.SendMessage(ResUI.BatchExportSubscriptionSuccessfully);
} }
} }
@@ -1407,8 +1410,8 @@ namespace v2rayN.ViewModels
{ {
UseShellExecute = true, UseShellExecute = true,
Arguments = Global.RebootAs, Arguments = Global.RebootAs,
WorkingDirectory = Utile.StartupPath(), WorkingDirectory = Utils.StartupPath(),
FileName = Utile.GetExePath().AppendQuotes(), FileName = Utils.GetExePath().AppendQuotes(),
Verb = "runas", Verb = "runas",
}; };
try try
@@ -1426,7 +1429,7 @@ namespace v2rayN.ViewModels
{ {
return; return;
} }
if (Utile.IsNullOrEmpty(fileName)) if (Utils.IsNullOrEmpty(fileName))
{ {
return; return;
} }
@@ -1472,8 +1475,8 @@ namespace v2rayN.ViewModels
{ {
CloseCore(); CloseCore();
string fileName = Utile.GetTempPath(Utile.GetDownloadFileName(msg)); string fileName = Utils.GetTempPath(Utils.GetDownloadFileName(msg));
string toPath = Utile.GetBinPath("", type.ToString()); string toPath = Utils.GetBinPath("", type.ToString());
FileManager.ZipExtractToFile(fileName, toPath, _config.guiItem.ignoreGeoUpdateCore ? "geo" : ""); FileManager.ZipExtractToFile(fileName, toPath, _config.guiItem.ignoreGeoUpdateCore ? "geo" : "");
@@ -1509,7 +1512,7 @@ namespace v2rayN.ViewModels
{ {
TestServerAvailability(); TestServerAvailability();
Application.Current.Dispatcher.Invoke((Action)(() => Application.Current?.Dispatcher.Invoke((Action)(() =>
{ {
BlReloadEnabled = true; BlReloadEnabled = true;
})); }));
@@ -1559,7 +1562,7 @@ namespace v2rayN.ViewModels
SysProxyHandle.UpdateSysProxy(_config, _config.tunModeItem.enableTun ? true : false); SysProxyHandle.UpdateSysProxy(_config, _config.tunModeItem.enableTun ? true : false);
_noticeHandler?.SendMessage(ResUI.TipChangeSystemProxy + _config.sysProxyType.ToString(), true); _noticeHandler?.SendMessage(ResUI.TipChangeSystemProxy + _config.sysProxyType.ToString(), true);
Application.Current.Dispatcher.Invoke((Action)(() => Application.Current?.Dispatcher.Invoke((Action)(() =>
{ {
BlSystemProxyClear = (type == ESysProxyType.ForcedClear); BlSystemProxyClear = (type == ESysProxyType.ForcedClear);
BlSystemProxySet = (type == ESysProxyType.ForcedChange); BlSystemProxySet = (type == ESysProxyType.ForcedChange);
@@ -1647,7 +1650,7 @@ namespace v2rayN.ViewModels
{ {
_config.tunModeItem.enableTun = EnableTun; _config.tunModeItem.enableTun = EnableTun;
// When running as a non-administrator, reboot to administrator mode // When running as a non-administrator, reboot to administrator mode
if (EnableTun && !Utile.IsAdministrator()) if (EnableTun && !Utils.IsAdministrator())
{ {
_config.tunModeItem.enableTun = false; _config.tunModeItem.enableTun = false;
RebootAsAdmin(); RebootAsAdmin();
@@ -1689,7 +1692,7 @@ namespace v2rayN.ViewModels
{ {
if (FollowSystemTheme) if (FollowSystemTheme)
{ {
ModifyTheme(!Utile.IsLightTheme()); ModifyTheme(!Utils.IsLightTheme());
} }
else else
{ {
@@ -1708,10 +1711,6 @@ namespace v2rayN.ViewModels
} }
} }
private void StorageUI()
{
}
private void BindingUI() private void BindingUI()
{ {
ColorModeDark = _config.uiItem.colorModeDark; ColorModeDark = _config.uiItem.colorModeDark;
@@ -1747,7 +1746,7 @@ namespace v2rayN.ViewModels
ConfigHandler.SaveConfig(_config); ConfigHandler.SaveConfig(_config);
if (FollowSystemTheme) if (FollowSystemTheme)
{ {
ModifyTheme(!Utile.IsLightTheme()); ModifyTheme(!Utils.IsLightTheme());
} }
else else
{ {
@@ -1799,7 +1798,7 @@ namespace v2rayN.ViewModels
y => y != null && !y.IsNullOrEmpty()) y => y != null && !y.IsNullOrEmpty())
.Subscribe(c => .Subscribe(c =>
{ {
if (!Utile.IsNullOrEmpty(CurrentLanguage)) if (!Utils.IsNullOrEmpty(CurrentLanguage))
{ {
_config.uiItem.currentLanguage = CurrentLanguage; _config.uiItem.currentLanguage = CurrentLanguage;
Thread.CurrentThread.CurrentUICulture = new(CurrentLanguage); Thread.CurrentThread.CurrentUICulture = new(CurrentLanguage);
@@ -1851,7 +1850,7 @@ namespace v2rayN.ViewModels
theme.SetBaseTheme(isDarkTheme ? Theme.Dark : Theme.Light); theme.SetBaseTheme(isDarkTheme ? Theme.Dark : Theme.Light);
_paletteHelper.SetTheme(theme); _paletteHelper.SetTheme(theme);
Utile.SetDarkBorder(Application.Current.MainWindow, isDarkTheme); Utils.SetDarkBorder(Application.Current.MainWindow, isDarkTheme);
} }
public void ChangePrimaryColor(System.Windows.Media.Color color) public void ChangePrimaryColor(System.Windows.Media.Color color)
@@ -1873,7 +1872,7 @@ namespace v2rayN.ViewModels
.Delay(TimeSpan.FromSeconds(1)) .Delay(TimeSpan.FromSeconds(1))
.Subscribe(x => .Subscribe(x =>
{ {
Application.Current.Dispatcher.Invoke(() => Application.Current?.Dispatcher.Invoke(() =>
{ {
ShowHideWindow(false); ShowHideWindow(false);
}); });

View File

@@ -4,7 +4,7 @@ using Splat;
using System.Reactive; using System.Reactive;
using System.Windows; using System.Windows;
using v2rayN.Handler; using v2rayN.Handler;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.Resx; using v2rayN.Resx;
namespace v2rayN.ViewModels namespace v2rayN.ViewModels
@@ -34,6 +34,7 @@ namespace v2rayN.ViewModels
[Reactive] public string mux4SboxProtocol { get; set; } [Reactive] public string mux4SboxProtocol { get; set; }
[Reactive] public int hyUpMbps { get; set; } [Reactive] public int hyUpMbps { get; set; }
[Reactive] public int hyDownMbps { get; set; } [Reactive] public int hyDownMbps { get; set; }
[Reactive] public bool enableFragment { get; set; }
#endregion Core #endregion Core
@@ -129,6 +130,7 @@ namespace v2rayN.ViewModels
mux4SboxProtocol = _config.mux4SboxItem.protocol; mux4SboxProtocol = _config.mux4SboxItem.protocol;
hyUpMbps = _config.hysteriaItem.up_mbps; hyUpMbps = _config.hysteriaItem.up_mbps;
hyDownMbps = _config.hysteriaItem.down_mbps; hyDownMbps = _config.hysteriaItem.down_mbps;
enableFragment = _config.coreBasicItem.enableFragment;
#endregion Core #endregion Core
@@ -192,7 +194,7 @@ namespace v2rayN.ViewModels
SaveSetting(); SaveSetting();
}); });
Utile.SetDarkBorder(view, _config.uiItem.colorModeDark); Utils.SetDarkBorder(view, _config.uiItem.colorModeDark);
} }
private void InitCoreType() private void InitCoreType()
@@ -249,7 +251,7 @@ namespace v2rayN.ViewModels
private void SaveSetting() private void SaveSetting()
{ {
if (Utile.IsNullOrEmpty(localPort.ToString()) || !Utile.IsNumeric(localPort.ToString()) if (Utils.IsNullOrEmpty(localPort.ToString()) || !Utils.IsNumeric(localPort.ToString())
|| localPort <= 0 || localPort >= Global.MaxPort) || localPort <= 0 || localPort >= Global.MaxPort)
{ {
_noticeHandler?.Enqueue(ResUI.FillLocalListeningPort); _noticeHandler?.Enqueue(ResUI.FillLocalListeningPort);
@@ -289,6 +291,7 @@ namespace v2rayN.ViewModels
_config.mux4SboxItem.protocol = mux4SboxProtocol; _config.mux4SboxItem.protocol = mux4SboxProtocol;
_config.hysteriaItem.up_mbps = hyUpMbps; _config.hysteriaItem.up_mbps = hyUpMbps;
_config.hysteriaItem.down_mbps = hyDownMbps; _config.hysteriaItem.down_mbps = hyDownMbps;
_config.coreBasicItem.enableFragment = enableFragment;
//Kcp //Kcp
//_config.kcpItem.mtu = Kcpmtu; //_config.kcpItem.mtu = Kcpmtu;
@@ -300,7 +303,7 @@ namespace v2rayN.ViewModels
//_config.kcpItem.congestion = Kcpcongestion; //_config.kcpItem.congestion = Kcpcongestion;
//UI //UI
Utile.SetAutoRun(Global.AutoRunRegPath, Global.AutoRunName, AutoRun); Utils.SetAutoRun(Global.AutoRunRegPath, Global.AutoRunName, AutoRun);
_config.guiItem.autoRun = AutoRun; _config.guiItem.autoRun = AutoRun;
_config.guiItem.enableStatistics = EnableStatistics; _config.guiItem.enableStatistics = EnableStatistics;
_config.guiItem.keepOlderDedupl = KeepOlderDedupl; _config.guiItem.keepOlderDedupl = KeepOlderDedupl;

View File

@@ -4,7 +4,7 @@ using Splat;
using System.Reactive; using System.Reactive;
using System.Windows; using System.Windows;
using v2rayN.Handler; using v2rayN.Handler;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.Resx; using v2rayN.Resx;
namespace v2rayN.ViewModels namespace v2rayN.ViewModels
@@ -43,7 +43,7 @@ namespace v2rayN.ViewModels
if (rulesItem.id.IsNullOrEmpty()) if (rulesItem.id.IsNullOrEmpty())
{ {
rulesItem.id = Utile.GetGUID(false); rulesItem.id = Utils.GetGUID(false);
rulesItem.outboundTag = Global.ProxyTag; rulesItem.outboundTag = Global.ProxyTag;
rulesItem.enabled = true; rulesItem.enabled = true;
SelectedSource = rulesItem; SelectedSource = rulesItem;
@@ -53,35 +53,35 @@ namespace v2rayN.ViewModels
SelectedSource = rulesItem; SelectedSource = rulesItem;
} }
Domain = Utile.List2String(SelectedSource.domain, true); Domain = Utils.List2String(SelectedSource.domain, true);
IP = Utile.List2String(SelectedSource.ip, true); IP = Utils.List2String(SelectedSource.ip, true);
Process = Utile.List2String(SelectedSource.process, true); Process = Utils.List2String(SelectedSource.process, true);
SaveCmd = ReactiveCommand.Create(() => SaveCmd = ReactiveCommand.Create(() =>
{ {
SaveRules(); SaveRules();
}); });
Utile.SetDarkBorder(view, _config.uiItem.colorModeDark); Utils.SetDarkBorder(view, _config.uiItem.colorModeDark);
} }
private void SaveRules() private void SaveRules()
{ {
Domain = Utile.Convert2Comma(Domain); Domain = Utils.Convert2Comma(Domain);
IP = Utile.Convert2Comma(IP); IP = Utils.Convert2Comma(IP);
Process = Utile.Convert2Comma(Process); Process = Utils.Convert2Comma(Process);
if (AutoSort) if (AutoSort)
{ {
SelectedSource.domain = Utile.String2ListSorted(Domain); SelectedSource.domain = Utils.String2ListSorted(Domain);
SelectedSource.ip = Utile.String2ListSorted(IP); SelectedSource.ip = Utils.String2ListSorted(IP);
SelectedSource.process = Utile.String2ListSorted(Process); SelectedSource.process = Utils.String2ListSorted(Process);
} }
else else
{ {
SelectedSource.domain = Utile.String2List(Domain); SelectedSource.domain = Utils.String2List(Domain);
SelectedSource.ip = Utile.String2List(IP); SelectedSource.ip = Utils.String2List(IP);
SelectedSource.process = Utile.String2List(Process); SelectedSource.process = Utils.String2List(Process);
} }
SelectedSource.protocol = ProtocolItems?.ToList(); SelectedSource.protocol = ProtocolItems?.ToList();
SelectedSource.inboundTag = InboundTagItems?.ToList(); SelectedSource.inboundTag = InboundTagItems?.ToList();
@@ -90,7 +90,7 @@ namespace v2rayN.ViewModels
|| SelectedSource.ip?.Count > 0 || SelectedSource.ip?.Count > 0
|| SelectedSource.protocol?.Count > 0 || SelectedSource.protocol?.Count > 0
|| SelectedSource.process?.Count > 0 || SelectedSource.process?.Count > 0
|| !Utile.IsNullOrEmpty(SelectedSource.port); || !Utils.IsNullOrEmpty(SelectedSource.port);
if (!hasRule) if (!hasRule)
{ {

View File

@@ -5,7 +5,7 @@ using Splat;
using System.Reactive; using System.Reactive;
using System.Windows; using System.Windows;
using v2rayN.Handler; using v2rayN.Handler;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.Resx; using v2rayN.Resx;
using v2rayN.Views; using v2rayN.Views;
using Application = System.Windows.Application; using Application = System.Windows.Application;
@@ -58,7 +58,7 @@ namespace v2rayN.ViewModels
else else
{ {
SelectedRouting = routingItem; SelectedRouting = routingItem;
_rules = JsonUtile.Deserialize<List<RulesItem>>(SelectedRouting.ruleSet); _rules = JsonUtils.Deserialize<List<RulesItem>>(SelectedRouting.ruleSet);
} }
RefreshRulesItems(); RefreshRulesItems();
@@ -115,7 +115,7 @@ namespace v2rayN.ViewModels
SaveRouting(); SaveRouting();
}); });
Utile.SetDarkBorder(view, _config.uiItem.colorModeDark); Utils.SetDarkBorder(view, _config.uiItem.colorModeDark);
} }
public void RefreshRulesItems() public void RefreshRulesItems()
@@ -129,10 +129,10 @@ namespace v2rayN.ViewModels
id = item.id, id = item.id,
outboundTag = item.outboundTag, outboundTag = item.outboundTag,
port = item.port, port = item.port,
protocols = Utile.List2String(item.protocol), protocols = Utils.List2String(item.protocol),
inboundTags = Utile.List2String(item.inboundTag), inboundTags = Utils.List2String(item.inboundTag),
domains = Utile.List2String(item.domain), domains = Utils.List2String(item.domain),
ips = Utile.List2String(item.ip), ips = Utils.List2String(item.ip),
enabled = item.enabled, enabled = item.enabled,
}; };
_rulesItems.Add(it); _rulesItems.Add(it);
@@ -196,18 +196,19 @@ namespace v2rayN.ViewModels
return; return;
} }
var lst = new List<RulesItem>(); var lst = new List<RulesItem4Ray>();
foreach (var it in SelectedSources) foreach (var it in SelectedSources)
{ {
var item = _rules.FirstOrDefault(t => t.id == it?.id); var item = _rules.FirstOrDefault(t => t.id == it?.id);
if (item != null) if (item != null)
{ {
lst.Add(item); var item2 = JsonUtils.Deserialize<RulesItem4Ray>(JsonUtils.Serialize(item));
lst.Add(item2 ?? new());
} }
} }
if (lst.Count > 0) if (lst.Count > 0)
{ {
Utile.SetClipboardData(JsonUtile.Serialize(lst)); Utils.SetClipboardData(JsonUtils.Serialize(lst));
//_noticeHandler?.Enqueue(ResUI.OperationSuccess")); //_noticeHandler?.Enqueue(ResUI.OperationSuccess"));
} }
} }
@@ -235,7 +236,7 @@ namespace v2rayN.ViewModels
private void SaveRouting() private void SaveRouting()
{ {
string remarks = SelectedRouting.remarks; string remarks = SelectedRouting.remarks;
if (Utile.IsNullOrEmpty(remarks)) if (Utils.IsNullOrEmpty(remarks))
{ {
_noticeHandler?.Enqueue(ResUI.PleaseFillRemarks); _noticeHandler?.Enqueue(ResUI.PleaseFillRemarks);
return; return;
@@ -243,10 +244,10 @@ namespace v2rayN.ViewModels
var item = SelectedRouting; var item = SelectedRouting;
foreach (var it in _rules) foreach (var it in _rules)
{ {
it.id = Utile.GetGUID(false); it.id = Utils.GetGUID(false);
} }
item.ruleNum = _rules.Count; item.ruleNum = _rules.Count;
item.ruleSet = JsonUtile.Serialize(_rules, false); item.ruleSet = JsonUtils.Serialize(_rules, false);
if (ConfigHandler.SaveRoutingItem(_config, item) == 0) if (ConfigHandler.SaveRoutingItem(_config, item) == 0)
{ {
@@ -268,13 +269,13 @@ namespace v2rayN.ViewModels
{ {
return; return;
} }
if (Utile.IsNullOrEmpty(fileName)) if (Utils.IsNullOrEmpty(fileName))
{ {
return; return;
} }
string result = Utile.LoadResource(fileName); string result = Utils.LoadResource(fileName);
if (Utile.IsNullOrEmpty(result)) if (Utils.IsNullOrEmpty(result))
{ {
return; return;
} }
@@ -288,7 +289,7 @@ namespace v2rayN.ViewModels
private void ImportRulesFromClipboard() private void ImportRulesFromClipboard()
{ {
string clipboardData = Utile.GetClipboardData(); string clipboardData = Utils.GetClipboardData();
if (AddBatchRoutingRules(SelectedRouting, clipboardData) == 0) if (AddBatchRoutingRules(SelectedRouting, clipboardData) == 0)
{ {
RefreshRulesItems(); RefreshRulesItems();
@@ -299,7 +300,7 @@ namespace v2rayN.ViewModels
private async Task ImportRulesFromUrl() private async Task ImportRulesFromUrl()
{ {
var url = SelectedRouting.url; var url = SelectedRouting.url;
if (Utile.IsNullOrEmpty(url)) if (Utils.IsNullOrEmpty(url))
{ {
_noticeHandler?.Enqueue(ResUI.MsgNeedUrl); _noticeHandler?.Enqueue(ResUI.MsgNeedUrl);
return; return;
@@ -324,18 +325,18 @@ namespace v2rayN.ViewModels
{ {
blReplace = true; blReplace = true;
} }
if (Utile.IsNullOrEmpty(clipboardData)) if (Utils.IsNullOrEmpty(clipboardData))
{ {
return -1; return -1;
} }
var lstRules = JsonUtile.Deserialize<List<RulesItem>>(clipboardData); var lstRules = JsonUtils.Deserialize<List<RulesItem>>(clipboardData);
if (lstRules == null) if (lstRules == null)
{ {
return -1; return -1;
} }
foreach (var rule in lstRules) foreach (var rule in lstRules)
{ {
rule.id = Utile.GetGUID(false); rule.id = Utils.GetGUID(false);
} }
if (blReplace) if (blReplace)

View File

@@ -5,7 +5,7 @@ using Splat;
using System.Reactive; using System.Reactive;
using System.Windows; using System.Windows;
using v2rayN.Handler; using v2rayN.Handler;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.Resx; using v2rayN.Resx;
using v2rayN.Views; using v2rayN.Views;
@@ -126,7 +126,7 @@ namespace v2rayN.ViewModels
SaveRouting(); SaveRouting();
}); });
Utile.SetDarkBorder(view, _config.uiItem.colorModeDark); Utils.SetDarkBorder(view, _config.uiItem.colorModeDark);
} }
#region locked #region locked
@@ -136,15 +136,15 @@ namespace v2rayN.ViewModels
_lockedItem = ConfigHandler.GetLockedRoutingItem(_config); _lockedItem = ConfigHandler.GetLockedRoutingItem(_config);
if (_lockedItem != null) if (_lockedItem != null)
{ {
_lockedRules = JsonUtile.Deserialize<List<RulesItem>>(_lockedItem.ruleSet); _lockedRules = JsonUtils.Deserialize<List<RulesItem>>(_lockedItem.ruleSet);
ProxyDomain = Utile.List2String(_lockedRules[0].domain, true); ProxyDomain = Utils.List2String(_lockedRules[0].domain, true);
ProxyIP = Utile.List2String(_lockedRules[0].ip, true); ProxyIP = Utils.List2String(_lockedRules[0].ip, true);
DirectDomain = Utile.List2String(_lockedRules[1].domain, true); DirectDomain = Utils.List2String(_lockedRules[1].domain, true);
DirectIP = Utile.List2String(_lockedRules[1].ip, true); DirectIP = Utils.List2String(_lockedRules[1].ip, true);
BlockDomain = Utile.List2String(_lockedRules[2].domain, true); BlockDomain = Utils.List2String(_lockedRules[2].domain, true);
BlockIP = Utile.List2String(_lockedRules[2].ip, true); BlockIP = Utils.List2String(_lockedRules[2].ip, true);
} }
} }
@@ -152,16 +152,16 @@ namespace v2rayN.ViewModels
{ {
if (_lockedItem != null) if (_lockedItem != null)
{ {
_lockedRules[0].domain = Utile.String2List(Utile.Convert2Comma(ProxyDomain.TrimEx())); _lockedRules[0].domain = Utils.String2List(Utils.Convert2Comma(ProxyDomain.TrimEx()));
_lockedRules[0].ip = Utile.String2List(Utile.Convert2Comma(ProxyIP.TrimEx())); _lockedRules[0].ip = Utils.String2List(Utils.Convert2Comma(ProxyIP.TrimEx()));
_lockedRules[1].domain = Utile.String2List(Utile.Convert2Comma(DirectDomain.TrimEx())); _lockedRules[1].domain = Utils.String2List(Utils.Convert2Comma(DirectDomain.TrimEx()));
_lockedRules[1].ip = Utile.String2List(Utile.Convert2Comma(DirectIP.TrimEx())); _lockedRules[1].ip = Utils.String2List(Utils.Convert2Comma(DirectIP.TrimEx()));
_lockedRules[2].domain = Utile.String2List(Utile.Convert2Comma(BlockDomain.TrimEx())); _lockedRules[2].domain = Utils.String2List(Utils.Convert2Comma(BlockDomain.TrimEx()));
_lockedRules[2].ip = Utile.String2List(Utile.Convert2Comma(BlockIP.TrimEx())); _lockedRules[2].ip = Utils.String2List(Utils.Convert2Comma(BlockIP.TrimEx()));
_lockedItem.ruleSet = JsonUtile.Serialize(_lockedRules, false); _lockedItem.ruleSet = JsonUtils.Serialize(_lockedRules, false);
ConfigHandler.SaveRoutingItem(_config, _lockedItem); ConfigHandler.SaveRoutingItem(_config, _lockedItem);
} }

View File

@@ -4,7 +4,7 @@ using Splat;
using System.Reactive; using System.Reactive;
using System.Windows; using System.Windows;
using v2rayN.Handler; using v2rayN.Handler;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.Resx; using v2rayN.Resx;
namespace v2rayN.ViewModels namespace v2rayN.ViewModels
@@ -32,7 +32,7 @@ namespace v2rayN.ViewModels
} }
else else
{ {
SelectedSource = JsonUtile.DeepCopy(subItem); SelectedSource = JsonUtils.DeepCopy(subItem);
} }
SaveCmd = ReactiveCommand.Create(() => SaveCmd = ReactiveCommand.Create(() =>
@@ -40,13 +40,13 @@ namespace v2rayN.ViewModels
SaveSub(); SaveSub();
}); });
Utile.SetDarkBorder(view, _config.uiItem.colorModeDark); Utils.SetDarkBorder(view, _config.uiItem.colorModeDark);
} }
private void SaveSub() private void SaveSub()
{ {
string remarks = SelectedSource.remarks; string remarks = SelectedSource.remarks;
if (string.IsNullOrEmpty(remarks)) if (Utils.IsNullOrEmpty(remarks))
{ {
_noticeHandler?.Enqueue(ResUI.PleaseFillRemarks); _noticeHandler?.Enqueue(ResUI.PleaseFillRemarks);
return; return;

View File

@@ -7,7 +7,7 @@ using Splat;
using System.Reactive; using System.Reactive;
using System.Windows; using System.Windows;
using v2rayN.Handler; using v2rayN.Handler;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.Resx; using v2rayN.Resx;
using v2rayN.Views; using v2rayN.Views;
@@ -62,7 +62,7 @@ namespace v2rayN.ViewModels
SubShare(); SubShare();
}, canEditRemove); }, canEditRemove);
Utile.SetDarkBorder(view, _config.uiItem.colorModeDark); Utils.SetDarkBorder(view, _config.uiItem.colorModeDark);
} }
public void RefreshSubItems() public void RefreshSubItems()
@@ -112,7 +112,7 @@ namespace v2rayN.ViewModels
private async void SubShare() private async void SubShare()
{ {
if (Utile.IsNullOrEmpty(SelectedSource?.url)) if (Utils.IsNullOrEmpty(SelectedSource?.url))
{ {
return; return;
} }

View File

@@ -1,7 +1,7 @@
using ReactiveUI; using ReactiveUI;
using System.Reactive.Disposables; using System.Reactive.Disposables;
using System.Windows; using System.Windows;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.ViewModels; using v2rayN.ViewModels;
namespace v2rayN.Views namespace v2rayN.Views

View File

@@ -3,7 +3,7 @@ using System.Reactive.Disposables;
using System.Windows; using System.Windows;
using System.Windows.Controls; using System.Windows.Controls;
using v2rayN.Handler; using v2rayN.Handler;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.Resx; using v2rayN.Resx;
using v2rayN.ViewModels; using v2rayN.ViewModels;
@@ -92,6 +92,7 @@ namespace v2rayN.Views
break; break;
case EConfigType.Socks: case EConfigType.Socks:
case EConfigType.Http:
gridSocks.Visibility = Visibility.Visible; gridSocks.Visibility = Visibility.Visible;
break; break;
@@ -174,6 +175,7 @@ namespace v2rayN.Views
break; break;
case EConfigType.Socks: case EConfigType.Socks:
case EConfigType.Http:
this.Bind(ViewModel, vm => vm.SelectedSource.id, v => v.txtId4.Text).DisposeWith(disposables); this.Bind(ViewModel, vm => vm.SelectedSource.id, v => v.txtId4.Text).DisposeWith(disposables);
this.Bind(ViewModel, vm => vm.SelectedSource.security, v => v.txtSecurity4.Text).DisposeWith(disposables); this.Bind(ViewModel, vm => vm.SelectedSource.security, v => v.txtSecurity4.Text).DisposeWith(disposables);
break; break;
@@ -265,7 +267,7 @@ namespace v2rayN.Views
private void btnGUID_Click(object sender, RoutedEventArgs e) private void btnGUID_Click(object sender, RoutedEventArgs e)
{ {
txtId.Text = txtId.Text =
txtId5.Text = Utile.GetGUID(); txtId5.Text = Utils.GetGUID();
} }
private void SetHeaderType() private void SetHeaderType()
@@ -273,7 +275,7 @@ namespace v2rayN.Views
cmbHeaderType.Items.Clear(); cmbHeaderType.Items.Clear();
var network = cmbNetwork.SelectedItem.ToString(); var network = cmbNetwork.SelectedItem.ToString();
if (Utile.IsNullOrEmpty(network)) if (Utils.IsNullOrEmpty(network))
{ {
cmbHeaderType.Items.Add(Global.None); cmbHeaderType.Items.Add(Global.None);
return; return;
@@ -307,7 +309,7 @@ namespace v2rayN.Views
private void SetTips() private void SetTips()
{ {
var network = cmbNetwork.SelectedItem.ToString(); var network = cmbNetwork.SelectedItem.ToString();
if (Utile.IsNullOrEmpty(network)) if (Utils.IsNullOrEmpty(network))
{ {
network = Global.DefaultNetwork; network = Global.DefaultNetwork;
} }
@@ -346,6 +348,7 @@ namespace v2rayN.Views
break; break;
case nameof(ETransport.grpc): case nameof(ETransport.grpc):
tipRequestHost.Text = ResUI.TransportRequestHostTip5;
tipPath.Text = ResUI.TransportPathTip4; tipPath.Text = ResUI.TransportPathTip4;
tipHeaderType.Text = ResUI.TransportHeaderTypeTip4; tipHeaderType.Text = ResUI.TransportHeaderTypeTip4;
labHeaderType.Visibility = Visibility.Hidden; labHeaderType.Visibility = Visibility.Hidden;

View File

@@ -2,7 +2,7 @@
using System.Reactive.Disposables; using System.Reactive.Disposables;
using System.Windows; using System.Windows;
using v2rayN.Handler; using v2rayN.Handler;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.ViewModels; using v2rayN.ViewModels;
namespace v2rayN.Views namespace v2rayN.Views
@@ -51,12 +51,12 @@ namespace v2rayN.Views
private void linkDnsObjectDoc_Click(object sender, RoutedEventArgs e) private void linkDnsObjectDoc_Click(object sender, RoutedEventArgs e)
{ {
Utile.ProcessStart("https://www.v2fly.org/config/dns.html#dnsobject"); Utils.ProcessStart("https://www.v2fly.org/config/dns.html#dnsobject");
} }
private void linkDnsSingboxObjectDoc_Click(object sender, RoutedEventArgs e) private void linkDnsSingboxObjectDoc_Click(object sender, RoutedEventArgs e)
{ {
Utile.ProcessStart("https://sing-box.sagernet.org/zh/configuration/dns/"); Utils.ProcessStart("https://sing-box.sagernet.org/zh/configuration/dns/");
} }
} }
} }

View File

@@ -3,7 +3,7 @@ using System.Windows;
using System.Windows.Controls; using System.Windows.Controls;
using System.Windows.Input; using System.Windows.Input;
using v2rayN.Handler; using v2rayN.Handler;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.Resx; using v2rayN.Resx;
namespace v2rayN.Views namespace v2rayN.Views
@@ -39,7 +39,7 @@ namespace v2rayN.Views
HotkeyHandler.Instance.IsPause = true; HotkeyHandler.Instance.IsPause = true;
this.Closing += (s, e) => HotkeyHandler.Instance.IsPause = false; this.Closing += (s, e) => HotkeyHandler.Instance.IsPause = false;
Utile.SetDarkBorder(this, _config.uiItem.colorModeDark); Utils.SetDarkBorder(this, _config.uiItem.colorModeDark);
InitData(); InitData();
} }
@@ -70,7 +70,7 @@ namespace v2rayN.Views
private KeyEventItem GetKeyEventItemByEGlobalHotkey(List<KeyEventItem> KEList, EGlobalHotkey eg) private KeyEventItem GetKeyEventItemByEGlobalHotkey(List<KeyEventItem> KEList, EGlobalHotkey eg)
{ {
return JsonUtile.DeepCopy(KEList.Find((it) => it.eGlobalHotkey == eg) ?? new() return JsonUtils.DeepCopy(KEList.Find((it) => it.eGlobalHotkey == eg) ?? new()
{ {
eGlobalHotkey = eg, eGlobalHotkey = eg,
Control = false, Control = false,

View File

@@ -1,17 +1,17 @@
<reactiveui:ReactiveWindow <reactiveui:ReactiveWindow
x:Class="v2rayN.Views.MainWindow" x:Class="v2rayN.Views.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
xmlns:reactiveui="http://reactiveui.net"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:tb="clr-namespace:H.NotifyIcon;assembly=H.NotifyIcon.Wpf"
xmlns:base="clr-namespace:v2rayN.Base" xmlns:base="clr-namespace:v2rayN.Base"
xmlns:conv="clr-namespace:v2rayN.Converters" xmlns:conv="clr-namespace:v2rayN.Converters"
xmlns:resx="clr-namespace:v2rayN.Resx" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:vms="clr-namespace:v2rayN.ViewModels"
xmlns:local="clr-namespace:v2rayN.Views" xmlns:local="clr-namespace:v2rayN.Views"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:reactiveui="http://reactiveui.net"
xmlns:resx="clr-namespace:v2rayN.Resx"
xmlns:tb="clr-namespace:H.NotifyIcon;assembly=H.NotifyIcon.Wpf"
xmlns:vms="clr-namespace:v2rayN.ViewModels"
Title="v2rayN" Title="v2rayN"
Width="900" Width="900"
Height="700" Height="700"
@@ -79,6 +79,10 @@
x:Name="menuAddSocksServer" x:Name="menuAddSocksServer"
Height="{StaticResource MenuItemHeight}" Height="{StaticResource MenuItemHeight}"
Header="{x:Static resx:ResUI.menuAddSocksServer}" /> Header="{x:Static resx:ResUI.menuAddSocksServer}" />
<MenuItem
x:Name="menuAddHttpServer"
Height="{StaticResource MenuItemHeight}"
Header="{x:Static resx:ResUI.menuAddHttpServer}" />
<MenuItem <MenuItem
x:Name="menuAddTrojanServer" x:Name="menuAddTrojanServer"
Height="{StaticResource MenuItemHeight}" Height="{StaticResource MenuItemHeight}"

View File

@@ -11,7 +11,7 @@ using System.Windows.Interop;
using System.Windows.Media; using System.Windows.Media;
using v2rayN.Base; using v2rayN.Base;
using v2rayN.Handler; using v2rayN.Handler;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.Resx; using v2rayN.Resx;
using v2rayN.ViewModels; using v2rayN.ViewModels;
using Point = System.Windows.Point; using Point = System.Windows.Point;
@@ -86,6 +86,7 @@ namespace v2rayN.Views
this.BindCommand(ViewModel, vm => vm.AddVlessServerCmd, v => v.menuAddVlessServer).DisposeWith(disposables); this.BindCommand(ViewModel, vm => vm.AddVlessServerCmd, v => v.menuAddVlessServer).DisposeWith(disposables);
this.BindCommand(ViewModel, vm => vm.AddShadowsocksServerCmd, v => v.menuAddShadowsocksServer).DisposeWith(disposables); this.BindCommand(ViewModel, vm => vm.AddShadowsocksServerCmd, v => v.menuAddShadowsocksServer).DisposeWith(disposables);
this.BindCommand(ViewModel, vm => vm.AddSocksServerCmd, v => v.menuAddSocksServer).DisposeWith(disposables); this.BindCommand(ViewModel, vm => vm.AddSocksServerCmd, v => v.menuAddSocksServer).DisposeWith(disposables);
this.BindCommand(ViewModel, vm => vm.AddHttpServerCmd, v => v.menuAddHttpServer).DisposeWith(disposables);
this.BindCommand(ViewModel, vm => vm.AddTrojanServerCmd, v => v.menuAddTrojanServer).DisposeWith(disposables); this.BindCommand(ViewModel, vm => vm.AddTrojanServerCmd, v => v.menuAddTrojanServer).DisposeWith(disposables);
this.BindCommand(ViewModel, vm => vm.AddHysteria2ServerCmd, v => v.menuAddHysteria2Server).DisposeWith(disposables); this.BindCommand(ViewModel, vm => vm.AddHysteria2ServerCmd, v => v.menuAddHysteria2Server).DisposeWith(disposables);
this.BindCommand(ViewModel, vm => vm.AddTuicServerCmd, v => v.menuAddTuicServer).DisposeWith(disposables); this.BindCommand(ViewModel, vm => vm.AddTuicServerCmd, v => v.menuAddTuicServer).DisposeWith(disposables);
@@ -210,8 +211,8 @@ namespace v2rayN.Views
RestoreUI(); RestoreUI();
AddHelpMenuItem(); AddHelpMenuItem();
var IsAdministrator = Utile.IsAdministrator(); var IsAdministrator = Utils.IsAdministrator();
this.Title = $"{Utile.GetVersion()} - {(IsAdministrator ? ResUI.RunAsAdmin : ResUI.NotRunAsAdmin)}"; this.Title = $"{Utils.GetVersion()} - {(IsAdministrator ? ResUI.RunAsAdmin : ResUI.NotRunAsAdmin)}";
//if (_config.uiItem.autoHideStartup) //if (_config.uiItem.autoHideStartup)
//{ //{
@@ -234,7 +235,7 @@ namespace v2rayN.Views
{ {
if (wParam == IntPtr.Zero && Marshal.PtrToStringUni(lParam) == "ImmersiveColorSet") if (wParam == IntPtr.Zero && Marshal.PtrToStringUni(lParam) == "ImmersiveColorSet")
{ {
ViewModel?.ModifyTheme(!Utile.IsLightTheme()); ViewModel?.ModifyTheme(!Utils.IsLightTheme());
} }
} }
} }
@@ -421,7 +422,7 @@ namespace v2rayN.Views
private void menuPromotion_Click(object sender, RoutedEventArgs e) private void menuPromotion_Click(object sender, RoutedEventArgs e)
{ {
Utile.ProcessStart($"{Utile.Base64Decode(Global.PromotionUrl)}?t={DateTime.Now.Ticks}"); Utils.ProcessStart($"{Utils.Base64Decode(Global.PromotionUrl)}?t={DateTime.Now.Ticks}");
} }
private void txtRunningInfoDisplay_MouseDoubleClick(object sender, MouseButtonEventArgs e) private void txtRunningInfoDisplay_MouseDoubleClick(object sender, MouseButtonEventArgs e)
@@ -431,7 +432,7 @@ namespace v2rayN.Views
private void menuSettingsSetUWP_Click(object sender, RoutedEventArgs e) private void menuSettingsSetUWP_Click(object sender, RoutedEventArgs e)
{ {
Utile.ProcessStart(Utile.GetBinPath("EnableLoopback.exe")); Utils.ProcessStart(Utils.GetBinPath("EnableLoopback.exe"));
} }
private void BtnAutofitColumnWidth_Click(object sender, RoutedEventArgs e) private void BtnAutofitColumnWidth_Click(object sender, RoutedEventArgs e)
@@ -516,8 +517,8 @@ namespace v2rayN.Views
private void StorageUI() private void StorageUI()
{ {
_config.uiItem.mainWidth = Utile.ToInt(this.Width); _config.uiItem.mainWidth = Utils.ToInt(this.Width);
_config.uiItem.mainHeight = Utile.ToInt(this.Height); _config.uiItem.mainHeight = Utils.ToInt(this.Height);
List<ColumnItem> lvColumnItem = new(); List<ColumnItem> lvColumnItem = new();
for (int k = 0; k < lstProfiles.Columns.Count; k++) for (int k = 0; k < lstProfiles.Columns.Count; k++)
@@ -526,7 +527,7 @@ namespace v2rayN.Views
lvColumnItem.Add(new() lvColumnItem.Add(new()
{ {
Name = item2.ExName, Name = item2.ExName,
Width = item2.Visibility == Visibility.Visible ? Utile.ToInt(item2.ActualWidth) : -1, Width = item2.Visibility == Visibility.Visible ? Utils.ToInt(item2.ActualWidth) : -1,
Index = item2.DisplayIndex Index = item2.DisplayIndex
}); });
} }
@@ -559,7 +560,7 @@ namespace v2rayN.Views
{ {
if (sender is MenuItem item) if (sender is MenuItem item)
{ {
Utile.ProcessStart(item.Tag.ToString()); Utils.ProcessStart(item.Tag.ToString());
} }
} }

View File

@@ -3,7 +3,7 @@ using System.Reactive.Linq;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using System.Windows.Threading; using System.Windows.Threading;
using v2rayN.Handler; using v2rayN.Handler;
using v2rayN.Model; using v2rayN.Models;
namespace v2rayN.Views namespace v2rayN.Views
{ {
@@ -48,7 +48,7 @@ namespace v2rayN.Views
var MsgFilter = cmbMsgFilter.Text.TrimEx(); var MsgFilter = cmbMsgFilter.Text.TrimEx();
if (MsgFilter != lastMsgFilter) lastMsgFilterNotAvailable = false; if (MsgFilter != lastMsgFilter) lastMsgFilterNotAvailable = false;
if (!string.IsNullOrEmpty(MsgFilter) && !lastMsgFilterNotAvailable) if (!Utils.IsNullOrEmpty(MsgFilter) && !lastMsgFilterNotAvailable)
{ {
try try
{ {
@@ -99,13 +99,13 @@ namespace v2rayN.Views
private void menuMsgViewCopy_Click(object sender, System.Windows.RoutedEventArgs e) private void menuMsgViewCopy_Click(object sender, System.Windows.RoutedEventArgs e)
{ {
var data = txtMsg.SelectedText.TrimEx(); var data = txtMsg.SelectedText.TrimEx();
Utile.SetClipboardData(data); Utils.SetClipboardData(data);
} }
private void menuMsgViewCopyAll_Click(object sender, System.Windows.RoutedEventArgs e) private void menuMsgViewCopyAll_Click(object sender, System.Windows.RoutedEventArgs e)
{ {
var data = txtMsg.Text; var data = txtMsg.Text;
Utile.SetClipboardData(data); Utils.SetClipboardData(data);
} }
private void menuMsgViewClear_Click(object sender, System.Windows.RoutedEventArgs e) private void menuMsgViewClear_Click(object sender, System.Windows.RoutedEventArgs e)

View File

@@ -67,6 +67,7 @@
<RowDefinition Height="Auto" /> <RowDefinition Height="Auto" />
<RowDefinition Height="Auto" /> <RowDefinition Height="Auto" />
<RowDefinition Height="Auto" /> <RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions> </Grid.RowDefinitions>
<Grid.ColumnDefinitions> <Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" /> <ColumnDefinition Width="Auto" />
@@ -333,6 +334,26 @@
materialDesign:HintAssist.Hint="Down" materialDesign:HintAssist.Hint="Down"
Style="{StaticResource DefTextBox}" /> Style="{StaticResource DefTextBox}" />
</StackPanel> </StackPanel>
<TextBlock
Grid.Row="16"
Grid.Column="0"
Margin="{StaticResource SettingItemMargin}"
VerticalAlignment="Center"
Style="{StaticResource ToolbarTextBlock}"
Text="{x:Static resx:ResUI.TbSettingsEnableFragment}" />
<ToggleButton
x:Name="togenableFragment"
Grid.Row="16"
Grid.Column="1"
Margin="{StaticResource SettingItemMargin}"
HorizontalAlignment="Left" />
<TextBlock
Grid.Row="16"
Grid.Column="3"
Margin="{StaticResource SettingItemMargin}"
Style="{StaticResource ToolbarTextBlock}"
Text="{x:Static resx:ResUI.TbSettingsEnableFragmentTips}" />
</Grid> </Grid>
</ScrollViewer> </ScrollViewer>
</TabItem> </TabItem>

View File

@@ -5,7 +5,7 @@ using System.Reactive.Disposables;
using System.Windows; using System.Windows;
using System.Windows.Media; using System.Windows.Media;
using v2rayN.Handler; using v2rayN.Handler;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.ViewModels; using v2rayN.ViewModels;
namespace v2rayN.Views namespace v2rayN.Views
@@ -96,13 +96,13 @@ namespace v2rayN.Views
var files = new List<string>(); var files = new List<string>();
foreach (var pattern in searchPatterns) foreach (var pattern in searchPatterns)
{ {
files.AddRange(Directory.GetFiles(Utile.GetFontsPath(), pattern)); files.AddRange(Directory.GetFiles(Utils.GetFontsPath(), pattern));
} }
var culture = _config.uiItem.currentLanguage == Global.Languages[0] ? "zh-cn" : "en-us"; var culture = _config.uiItem.currentLanguage == Global.Languages[0] ? "zh-cn" : "en-us";
var culture2 = "en-us"; var culture2 = "en-us";
foreach (var ttf in files) foreach (var ttf in files)
{ {
var families = Fonts.GetFontFamilies(Utile.GetFontsPath(ttf)); var families = Fonts.GetFontFamilies(Utils.GetFontsPath(ttf));
foreach (FontFamily family in families) foreach (FontFamily family in families)
{ {
var typefaces = family.GetTypefaces(); var typefaces = family.GetTypefaces();
@@ -115,10 +115,10 @@ namespace v2rayN.Views
// continue; // continue;
//} //}
var fontFamily = glyph.Win32FamilyNames[new CultureInfo(culture)]; var fontFamily = glyph.Win32FamilyNames[new CultureInfo(culture)];
if (Utile.IsNullOrEmpty(fontFamily)) if (Utils.IsNullOrEmpty(fontFamily))
{ {
fontFamily = glyph.Win32FamilyNames[new CultureInfo(culture2)]; fontFamily = glyph.Win32FamilyNames[new CultureInfo(culture2)];
if (Utile.IsNullOrEmpty(fontFamily)) if (Utils.IsNullOrEmpty(fontFamily))
{ {
continue; continue;
} }
@@ -156,6 +156,7 @@ namespace v2rayN.Views
this.Bind(ViewModel, vm => vm.mux4SboxProtocol, v => v.cmbmux4SboxProtocol.Text).DisposeWith(disposables); this.Bind(ViewModel, vm => vm.mux4SboxProtocol, v => v.cmbmux4SboxProtocol.Text).DisposeWith(disposables);
this.Bind(ViewModel, vm => vm.hyUpMbps, v => v.txtUpMbps.Text).DisposeWith(disposables); this.Bind(ViewModel, vm => vm.hyUpMbps, v => v.txtUpMbps.Text).DisposeWith(disposables);
this.Bind(ViewModel, vm => vm.hyDownMbps, v => v.txtDownMbps.Text).DisposeWith(disposables); this.Bind(ViewModel, vm => vm.hyDownMbps, v => v.txtDownMbps.Text).DisposeWith(disposables);
this.Bind(ViewModel, vm => vm.enableFragment, v => v.togenableFragment.IsChecked).DisposeWith(disposables);
//this.Bind(ViewModel, vm => vm.Kcpmtu, v => v.txtKcpmtu.Text).DisposeWith(disposables); //this.Bind(ViewModel, vm => vm.Kcpmtu, v => v.txtKcpmtu.Text).DisposeWith(disposables);
//this.Bind(ViewModel, vm => vm.Kcptti, v => v.txtKcptti.Text).DisposeWith(disposables); //this.Bind(ViewModel, vm => vm.Kcptti, v => v.txtKcptti.Text).DisposeWith(disposables);

View File

@@ -1,7 +1,7 @@
using ReactiveUI; using ReactiveUI;
using System.Reactive.Disposables; using System.Reactive.Disposables;
using System.Windows; using System.Windows;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.ViewModels; using v2rayN.ViewModels;
namespace v2rayN.Views namespace v2rayN.Views
@@ -83,7 +83,7 @@ namespace v2rayN.Views
private void linkRuleobjectDoc_Click(object sender, RoutedEventArgs e) private void linkRuleobjectDoc_Click(object sender, RoutedEventArgs e)
{ {
Utile.ProcessStart("https://www.v2fly.org/config/routing.html#ruleobject"); Utils.ProcessStart("https://www.v2fly.org/config/routing.html#ruleobject");
} }
} }
} }

View File

@@ -2,7 +2,7 @@
using System.Reactive.Disposables; using System.Reactive.Disposables;
using System.Windows; using System.Windows;
using System.Windows.Input; using System.Windows.Input;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.ViewModels; using v2rayN.ViewModels;
namespace v2rayN.Views namespace v2rayN.Views

View File

@@ -2,7 +2,7 @@
using System.Reactive.Disposables; using System.Reactive.Disposables;
using System.Windows; using System.Windows;
using System.Windows.Input; using System.Windows.Input;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.ViewModels; using v2rayN.ViewModels;
namespace v2rayN.Views namespace v2rayN.Views
@@ -127,12 +127,12 @@ namespace v2rayN.Views
private void linkdomainStrategy_Click(object sender, System.Windows.RoutedEventArgs e) private void linkdomainStrategy_Click(object sender, System.Windows.RoutedEventArgs e)
{ {
Utile.ProcessStart("https://www.v2fly.org/config/routing.html"); Utils.ProcessStart("https://www.v2fly.org/config/routing.html");
} }
private void linkdomainStrategy4Singbox_Click(object sender, RoutedEventArgs e) private void linkdomainStrategy4Singbox_Click(object sender, RoutedEventArgs e)
{ {
Utile.ProcessStart("https://sing-box.sagernet.org/zh/configuration/shared/listen/#domain_strategy"); Utils.ProcessStart("https://sing-box.sagernet.org/zh/configuration/shared/listen/#domain_strategy");
} }
private void btnCancel_Click(object sender, System.Windows.RoutedEventArgs e) private void btnCancel_Click(object sender, System.Windows.RoutedEventArgs e)

View File

@@ -1,7 +1,7 @@
using ReactiveUI; using ReactiveUI;
using System.Reactive.Disposables; using System.Reactive.Disposables;
using System.Windows; using System.Windows;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.ViewModels; using v2rayN.ViewModels;
namespace v2rayN.Views namespace v2rayN.Views

View File

@@ -3,7 +3,7 @@ using System.ComponentModel;
using System.Reactive.Disposables; using System.Reactive.Disposables;
using System.Windows; using System.Windows;
using System.Windows.Input; using System.Windows.Input;
using v2rayN.Model; using v2rayN.Models;
using v2rayN.ViewModels; using v2rayN.ViewModels;
namespace v2rayN.Views namespace v2rayN.Views

View File

@@ -10,7 +10,7 @@
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon>v2rayN.ico</ApplicationIcon> <ApplicationIcon>v2rayN.ico</ApplicationIcon>
<Copyright>Copyright © 2017-2024 (GPLv3)</Copyright> <Copyright>Copyright © 2017-2024 (GPLv3)</Copyright>
<FileVersion>6.39</FileVersion> <FileVersion>6.43</FileVersion>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion> <SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
</PropertyGroup> </PropertyGroup>
@@ -19,12 +19,12 @@
<PackageReference Include="MaterialDesignThemes" Version="4.9.0" /> <PackageReference Include="MaterialDesignThemes" Version="4.9.0" />
<PackageReference Include="H.NotifyIcon.Wpf" Version="2.0.124" /> <PackageReference Include="H.NotifyIcon.Wpf" Version="2.0.124" />
<PackageReference Include="QRCoder.Xaml" Version="1.4.3" /> <PackageReference Include="QRCoder.Xaml" Version="1.4.3" />
<PackageReference Include="sqlite-net-pcl" Version="1.8.116" /> <PackageReference Include="sqlite-net-pcl" Version="1.9.172" />
<PackageReference Include="TaskScheduler" Version="2.10.1" /> <PackageReference Include="TaskScheduler" Version="2.10.1" />
<PackageReference Include="ZXing.Net.Bindings.Windows.Compatibility" Version="0.16.12" /> <PackageReference Include="ZXing.Net.Bindings.Windows.Compatibility" Version="0.16.12" />
<PackageReference Include="ReactiveUI.Fody" Version="19.5.41" /> <PackageReference Include="ReactiveUI.Fody" Version="19.5.41" />
<PackageReference Include="ReactiveUI.Validation" Version="3.1.7" /> <PackageReference Include="ReactiveUI.Validation" Version="3.1.7" />
<PackageReference Include="ReactiveUI.WPF" Version="19.5.41" /> <PackageReference Include="ReactiveUI.WPF" Version="19.6.1" />
<PackageReference Include="Splat.NLog" Version="14.8.12" /> <PackageReference Include="Splat.NLog" Version="14.8.12" />
</ItemGroup> </ItemGroup>