1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-22 21:26:09 +03:00
ProxySU/ProxySuper.Core/Models/Projects/NaiveProxySettings.cs
2021-07-12 17:58:51 +08:00

54 lines
1.2 KiB
C#

using Newtonsoft.Json;
using System.Collections.Generic;
using System.Linq;
namespace ProxySuper.Core.Models.Projects
{
public class NaiveProxySettings : IProjectSettings
{
public NaiveProxySettings()
{
Port = 443;
}
public List<int> FreePorts
{
get
{
return new List<int> { 80, 443, Port }.Distinct().ToList();
}
}
public ProjectType Type { get; set; } = ProjectType.NaiveProxy;
public int Port { get; set; }
public string Domain { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
public string MaskDomain { get; set; }
[JsonIgnore]
public string Email
{
get
{
if (!string.IsNullOrEmpty(Domain))
{
var arr = Domain.Split('.');
if (arr.Length == 3)
{
return $"{arr[0]}@{arr[1]}.{arr[2]}";
}
}
return $"{UserName + Port.ToString()}@gmail.com";
}
}
}
}