Unity Udexreal开发插件包
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

183 lines
6.5 KiB

//------------------------------------------------------------------------------
// 此代码版权(除特别声明或在XREF结尾的命名空间的代码)归作者本人若汝棋茗所有
// 源代码使用协议遵循本仓库的开源协议及附加协议,若本仓库没有设置,则按MIT开源协议授权
// CSDN博客:https://blog.csdn.net/qq_40374647
// 哔哩哔哩视频:https://space.bilibili.com/94253567
// Gitee源代码仓库:https://gitee.com/RRQM_Home
// Github源代码仓库:https://github.com/RRQM
// API首页:https://www.yuque.com/rrqm/touchsocket/index
// 交流QQ群:234762506
// 感谢您的下载和使用
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
using System;
using TouchSocket.Core;
using TouchSocket.Sockets;
namespace TouchSocket.Http.WebSockets
{
/// <summary>
/// 基于Http的WebSocket的扩展。
/// <para>此组件只能挂载在<see cref="HttpService"/>中</para>
/// </summary>
[SingletonPlugin]
public class WebSocketServerPlugin : HttpPluginBase
{
/// <summary>
/// 表示是否完成WS握手
/// </summary>
public static readonly DependencyProperty<bool> HandshakedProperty =
DependencyProperty<bool>.Register("Handshaked", typeof(WebSocketServerPlugin), false);
/// <summary>
/// 表示WebSocketVersion
/// </summary>
public static readonly DependencyProperty<string> WebSocketVersionProperty =
DependencyProperty<string>.Register("WebSocketVersion", typeof(WebSocketServerPlugin), "13");
private readonly IPluginsManager m_pluginsManager;
private string m_wSUrl = "/ws";
/// <summary>
/// WebSocketServerPlugin
/// </summary>
/// <param name="pluginsManager"></param>
public WebSocketServerPlugin(IPluginsManager pluginsManager)
{
m_pluginsManager = pluginsManager ?? throw new ArgumentNullException(nameof(pluginsManager));
}
/// <summary>
/// 是否默认处理Close报文。
/// </summary>
public bool AutoClose { get; set; } = true;
/// <summary>
/// 当收到ping报文时,是否自动回应pong。
/// </summary>
public bool AutoPong { get; set; }
/// <summary>
/// 处理WS数据的回调
/// </summary>
public Action<ITcpClientBase, WSDataFrameEventArgs> HandleWSDataFrameCallback { get; set; }
/// <summary>
/// 用于WebSocket连接的路径,默认为“/ws”
/// <para>如果设置为null或空,则意味着所有的连接都将解释为WS</para>
/// </summary>
public string WSUrl
{
get => m_wSUrl;
set => m_wSUrl = string.IsNullOrEmpty(value) ? "/" : value;
}
/// <summary>
/// 不处理Close报文。
/// </summary>
/// <returns></returns>
public WebSocketServerPlugin NoAutoClose()
{
AutoClose = false;
return this;
}
/// <summary>
/// 当收到ping报文时,自动回应pong。
/// </summary>
/// <returns></returns>
public WebSocketServerPlugin UseAutoPong()
{
AutoPong = true;
return this;
}
/// <summary>
/// 设置处理WS数据的回调。
/// </summary>
/// <param name="action"></param>
public WebSocketServerPlugin SetCallback(Action<ITcpClientBase, WSDataFrameEventArgs> action)
{
HandleWSDataFrameCallback = action;
return this;
}
/// <summary>
/// 用于WebSocket连接的路径,默认为“/ws”
/// <para>如果设置为null或空,则意味着所有的连接都将解释为WS</para>
/// </summary>
/// <param name="url"></param>
/// <returns></returns>
public WebSocketServerPlugin SetWSUrl(string url)
{
WSUrl = url;
return this;
}
/// <summary>
/// <inheritdoc/>
/// </summary>
/// <param name="client"></param>
/// <param name="e"></param>
protected override void OnGet(ITcpClientBase client, HttpContextEventArgs e)
{
if (WSUrl == "/" || e.Context.Request.UrlEquals(WSUrl))
{
if (client.Protocol == Protocol.Http)
{
e.Handled = true;
if (client is HttpSocketClient socketClient)
{
socketClient.SwitchProtocolToWebSocket(e.Context);
}
}
}
base.OnGet(client, e);
}
/// <summary>
/// 处理WS数据帧。覆盖父类方法将不会触发<see cref="HandleWSDataFrameCallback"/>回调和插件。
/// </summary>
/// <param name="client"></param>
/// <param name="e"></param>
protected virtual void OnHandleWSDataFrame(ITcpClientBase client, WSDataFrameEventArgs e)
{
if (AutoClose&&e.DataFrame.Opcode == WSDataType.Close)
{
string msg = e.DataFrame.PayloadData?.ToString();
m_pluginsManager.Raise<IWebSocketPlugin>(nameof(IWebSocketPlugin.OnClosing), client, new MsgEventArgs() { Message = msg });
client.Close(msg);
return;
}
if (AutoPong&& e.DataFrame.Opcode == WSDataType.Ping)
{
((HttpSocketClient)client).PongWS();
return;
}
if (m_pluginsManager.Raise<IWebSocketPlugin>(nameof(IWebSocketPlugin.OnHandleWSDataFrame), client, e))
{
return;
}
HandleWSDataFrameCallback?.Invoke(client, e);
}
/// <summary>
/// <inheritdoc/>
/// </summary>
/// <param name="client"></param>
/// <param name="e"></param>
protected override void OnReceivedData(ITcpClientBase client, ReceivedDataEventArgs e)
{
if (client.Protocol == Protocol.WebSocket)
{
if (e.RequestInfo is WSDataFrame dataFrame)
{
e.Handled = true;
OnHandleWSDataFrame(client, new WSDataFrameEventArgs(dataFrame));
}
}
base.OnReceivedData(client, e);
}
}
}