2021-11-02 10:08:17 +00:00
|
|
|
using System.Net;
|
2021-11-19 15:58:12 +00:00
|
|
|
using System.Net.Sockets;
|
2021-11-26 17:56:32 +00:00
|
|
|
using System.Text;
|
2021-11-02 10:08:17 +00:00
|
|
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
namespace PluralKit.Core;
|
2021-11-02 10:08:17 +00:00
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
public enum DispatchEvent
|
2021-11-02 10:08:17 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
PING,
|
|
|
|
UPDATE_SYSTEM,
|
|
|
|
CREATE_MEMBER,
|
|
|
|
UPDATE_MEMBER,
|
|
|
|
DELETE_MEMBER,
|
|
|
|
CREATE_GROUP,
|
|
|
|
UPDATE_GROUP,
|
|
|
|
UPDATE_GROUP_MEMBERS,
|
|
|
|
DELETE_GROUP,
|
|
|
|
LINK_ACCOUNT,
|
|
|
|
UNLINK_ACCOUNT,
|
|
|
|
UPDATE_SYSTEM_GUILD,
|
|
|
|
UPDATE_MEMBER_GUILD,
|
|
|
|
CREATE_MESSAGE,
|
|
|
|
CREATE_SWITCH,
|
|
|
|
UPDATE_SWITCH,
|
|
|
|
DELETE_SWITCH,
|
|
|
|
DELETE_ALL_SWITCHES,
|
|
|
|
SUCCESSFUL_IMPORT
|
|
|
|
}
|
|
|
|
|
|
|
|
public struct UpdateDispatchData
|
|
|
|
{
|
|
|
|
public DispatchEvent Event;
|
|
|
|
public string SystemId;
|
|
|
|
public string? EntityId;
|
|
|
|
public string SigningToken;
|
|
|
|
public JObject? EventData;
|
|
|
|
}
|
2021-11-02 10:08:17 +00:00
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
public static class DispatchExt
|
|
|
|
{
|
|
|
|
public static StringContent GetPayloadBody(this UpdateDispatchData data)
|
2021-11-02 10:08:17 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
var o = new JObject();
|
|
|
|
|
|
|
|
o.Add("type", data.Event.ToString());
|
|
|
|
o.Add("signing_token", data.SigningToken);
|
|
|
|
o.Add("system_id", data.SystemId);
|
|
|
|
o.Add("id", data.EntityId);
|
|
|
|
o.Add("data", data.EventData);
|
|
|
|
|
|
|
|
return new StringContent(JsonConvert.SerializeObject(o), Encoding.UTF8, "application/json");
|
2021-11-02 10:08:17 +00:00
|
|
|
}
|
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
public static async Task<bool> ValidateUri(string url)
|
2021-11-02 10:08:17 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
IPHostEntry host = null;
|
2021-11-02 10:08:17 +00:00
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
var uri = new Uri(url);
|
|
|
|
host = await Dns.GetHostEntryAsync(uri.DnsSafeHost);
|
2021-11-02 10:08:17 +00:00
|
|
|
}
|
2021-11-27 02:10:56 +00:00
|
|
|
catch (Exception)
|
2021-11-02 10:08:17 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
return false;
|
|
|
|
}
|
2021-11-02 10:08:17 +00:00
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
if (host == null || host.AddressList.Length == 0)
|
|
|
|
return false;
|
2021-11-02 10:08:17 +00:00
|
|
|
|
|
|
|
#pragma warning disable CS0618
|
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
foreach (var address in host.AddressList.Where(address =>
|
|
|
|
address.AddressFamily is AddressFamily.InterNetwork))
|
|
|
|
{
|
|
|
|
if ((address.Address & 0x7f000000) == 0x7f000000) // 127.0/8
|
|
|
|
return false;
|
|
|
|
if ((address.Address & 0x0a000000) == 0x0a000000) // 10.0/8
|
|
|
|
return false;
|
|
|
|
if ((address.Address & 0xa9fe0000) == 0xa9fe0000) // 169.254/16
|
|
|
|
return false;
|
|
|
|
if ((address.Address & 0xac100000) == 0xac100000) // 172.16/12
|
2021-11-19 15:58:12 +00:00
|
|
|
return false;
|
2021-11-02 10:08:17 +00:00
|
|
|
}
|
2021-11-27 02:10:56 +00:00
|
|
|
|
|
|
|
if (host.AddressList.Any(address => address.IsIPv6LinkLocal))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// we only support IPv4 in prod :(
|
|
|
|
return host.AddressList.Any(address => address.AddressFamily is AddressFamily.InterNetwork);
|
2021-11-02 10:08:17 +00:00
|
|
|
}
|
|
|
|
}
|