mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
169 lines
7.0 KiB
C#
169 lines
7.0 KiB
C#
using System;
|
|
using System.Drawing;
|
|
using System.Text.RegularExpressions;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Netch.Forms.Server
|
|
{
|
|
public partial class VMess : Form
|
|
{
|
|
public int Index;
|
|
|
|
public VMess(int index = -1)
|
|
{
|
|
InitializeComponent();
|
|
|
|
Index = index;
|
|
}
|
|
|
|
private void ComboBox_DrawItem(object sender, DrawItemEventArgs e)
|
|
{
|
|
var cbx = sender as ComboBox;
|
|
if (cbx != null)
|
|
{
|
|
e.DrawBackground();
|
|
|
|
if (e.Index >= 0)
|
|
{
|
|
var sf = new StringFormat();
|
|
sf.LineAlignment = StringAlignment.Center;
|
|
sf.Alignment = StringAlignment.Center;
|
|
|
|
var brush = new SolidBrush(cbx.ForeColor);
|
|
|
|
if ((e.State & DrawItemState.Selected) == DrawItemState.Selected)
|
|
{
|
|
brush = SystemBrushes.HighlightText as SolidBrush;
|
|
}
|
|
|
|
e.Graphics.DrawString(cbx.Items[e.Index].ToString(), cbx.Font, brush, e.Bounds, sf);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void VMess_Load(object sender, EventArgs e)
|
|
{
|
|
ConfigurationGroupBox.Text = Utils.i18N.Translate(ConfigurationGroupBox.Text);
|
|
RemarkLabel.Text = Utils.i18N.Translate(RemarkLabel.Text);
|
|
AddressLabel.Text = Utils.i18N.Translate(AddressLabel.Text);
|
|
UserIDLabel.Text = Utils.i18N.Translate(UserIDLabel.Text);
|
|
AlterIDLabel.Text = Utils.i18N.Translate(AlterIDLabel.Text);
|
|
EncryptMethodLabel.Text = Utils.i18N.Translate(EncryptMethodLabel.Text);
|
|
TransferProtocolLabel.Text = Utils.i18N.Translate(TransferProtocolLabel.Text);
|
|
FakeTypeLabel.Text = Utils.i18N.Translate(FakeTypeLabel.Text);
|
|
HostLabel.Text = Utils.i18N.Translate(HostLabel.Text);
|
|
PathLabel.Text = Utils.i18N.Translate(PathLabel.Text);
|
|
QUICSecurityLabel.Text = Utils.i18N.Translate(QUICSecurityLabel.Text);
|
|
QUICSecretLabel.Text = Utils.i18N.Translate(QUICSecretLabel.Text);
|
|
TLSSecureCheckBox.Text = Utils.i18N.Translate(TLSSecureCheckBox.Text);
|
|
UseMuxCheckBox.Text = Utils.i18N.Translate(UseMuxCheckBox.Text);
|
|
ControlButton.Text = Utils.i18N.Translate(ControlButton.Text);
|
|
|
|
foreach (var encrypt in Global.EncryptMethods.VMess)
|
|
{
|
|
EncryptMethodComboBox.Items.Add(encrypt);
|
|
}
|
|
|
|
foreach (var protocol in Global.TransferProtocols)
|
|
{
|
|
TransferProtocolComboBox.Items.Add(protocol);
|
|
}
|
|
|
|
foreach (var fake in Global.FakeTypes)
|
|
{
|
|
FakeTypeComboBox.Items.Add(fake);
|
|
}
|
|
|
|
foreach (var security in Global.EncryptMethods.VMessQUIC)
|
|
{
|
|
QUICSecurityComboBox.Items.Add(security);
|
|
}
|
|
|
|
if (Index != -1)
|
|
{
|
|
RemarkTextBox.Text = Global.Settings.Server[Index].Remark;
|
|
AddressTextBox.Text = Global.Settings.Server[Index].Hostname;
|
|
PortTextBox.Text = Global.Settings.Server[Index].Port.ToString();
|
|
UserIDTextBox.Text = Global.Settings.Server[Index].UserID;
|
|
AlterIDTextBox.Text = Global.Settings.Server[Index].AlterID.ToString();
|
|
EncryptMethodComboBox.SelectedIndex = Global.EncryptMethods.VMess.IndexOf(Global.Settings.Server[Index].EncryptMethod);
|
|
TransferProtocolComboBox.SelectedIndex = Global.TransferProtocols.IndexOf(Global.Settings.Server[Index].TransferProtocol);
|
|
FakeTypeComboBox.SelectedIndex = Global.FakeTypes.IndexOf(Global.Settings.Server[Index].FakeType);
|
|
HostTextBox.Text = Global.Settings.Server[Index].Host;
|
|
PathTextBox.Text = Global.Settings.Server[Index].Path;
|
|
QUICSecurityComboBox.SelectedIndex = Global.EncryptMethods.VMessQUIC.IndexOf(Global.Settings.Server[Index].QUICSecure);
|
|
QUICSecretTextBox.Text = Global.Settings.Server[Index].QUICSecret;
|
|
TLSSecureCheckBox.Checked = Global.Settings.Server[Index].TLSSecure;
|
|
UseMuxCheckBox.Checked = Global.Settings.Server[Index].UseMux;
|
|
}
|
|
else
|
|
{
|
|
EncryptMethodComboBox.SelectedIndex = 0;
|
|
TransferProtocolComboBox.SelectedIndex = 0;
|
|
FakeTypeComboBox.SelectedIndex = 0;
|
|
QUICSecurityComboBox.SelectedIndex = 0;
|
|
}
|
|
}
|
|
|
|
private void VMess_FormClosing(object sender, FormClosingEventArgs e)
|
|
{
|
|
Global.MainForm.Show();
|
|
}
|
|
|
|
private void ControlButton_Click(object sender, EventArgs e)
|
|
{
|
|
if (!Regex.Match(PortTextBox.Text, "^[0-9]+$").Success)
|
|
{
|
|
return;
|
|
}
|
|
if (Index == -1)
|
|
{
|
|
Global.Settings.Server.Add(new Models.Server
|
|
{
|
|
Remark = RemarkTextBox.Text,
|
|
Type = "VMess",
|
|
Hostname = AddressTextBox.Text,
|
|
Port = int.Parse(PortTextBox.Text),
|
|
UserID = UserIDTextBox.Text,
|
|
AlterID = int.Parse(AlterIDTextBox.Text),
|
|
EncryptMethod = EncryptMethodComboBox.Text,
|
|
TransferProtocol = TransferProtocolComboBox.Text,
|
|
FakeType = FakeTypeComboBox.Text,
|
|
Host = HostTextBox.Text,
|
|
Path = PathTextBox.Text,
|
|
QUICSecure = QUICSecurityComboBox.Text,
|
|
QUICSecret = QUICSecretTextBox.Text,
|
|
TLSSecure = TLSSecureCheckBox.Checked,
|
|
UseMux = UseMuxCheckBox.Checked
|
|
});
|
|
}
|
|
else
|
|
{
|
|
Global.Settings.Server[Index] = new Models.Server
|
|
{
|
|
Remark = RemarkTextBox.Text,
|
|
Type = "VMess",
|
|
Hostname = AddressTextBox.Text,
|
|
Port = int.Parse(PortTextBox.Text),
|
|
UserID = UserIDTextBox.Text,
|
|
AlterID = int.Parse(AlterIDTextBox.Text),
|
|
EncryptMethod = EncryptMethodComboBox.Text,
|
|
TransferProtocol = TransferProtocolComboBox.Text,
|
|
FakeType = FakeTypeComboBox.Text,
|
|
Host = HostTextBox.Text,
|
|
Path = PathTextBox.Text,
|
|
QUICSecure = QUICSecurityComboBox.Text,
|
|
QUICSecret = QUICSecretTextBox.Text,
|
|
TLSSecure = TLSSecureCheckBox.Checked,
|
|
UseMux = UseMuxCheckBox.Checked
|
|
};
|
|
}
|
|
|
|
Utils.Configuration.Save();
|
|
MessageBox.Show(Utils.i18N.Translate("Saved"), Utils.i18N.Translate("Information"), MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
Global.MainForm.InitServer();
|
|
Close();
|
|
}
|
|
}
|
|
}
|