mirror of
https://github.com/cadmium-im/zirconium-sharp.git
synced 2024-11-08 19:51:03 +00:00
Implement Basic Chat plugin (CPE 4)
This commit is contained in:
parent
38f2d9d1d6
commit
f6d92ecba0
16
src/ZirconiumPlugins/BasicChat/BasicChat.csproj
Normal file
16
src/ZirconiumPlugins/BasicChat/BasicChat.csproj
Normal file
@ -0,0 +1,16 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||
<BuildProjectReferences>false</BuildProjectReferences>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="../../Zirconium/Zirconium.csproj">
|
||||
<ExcludeAssets>runtime</ExcludeAssets>
|
||||
</ProjectReference>
|
||||
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
||||
</ItemGroup>
|
||||
|
||||
|
||||
</Project>
|
106
src/ZirconiumPlugins/BasicChat/Plugin.cs
Normal file
106
src/ZirconiumPlugins/BasicChat/Plugin.cs
Normal file
@ -0,0 +1,106 @@
|
||||
using System.Linq;
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
using Zirconium.Core.Models;
|
||||
using Zirconium.Core.Plugins.Interfaces;
|
||||
using Zirconium.Utils;
|
||||
using Zirconium.Core.Logging;
|
||||
|
||||
namespace BasicChat
|
||||
{
|
||||
internal class BasicChat : IPluginAPI
|
||||
{
|
||||
public string GetPluginUniqueName() => "BasicChat";
|
||||
|
||||
public void Initialize(IPluginHostAPI pluginHostAPI)
|
||||
{
|
||||
pluginHostAPI.Hook(new ChatMessageRouterC2SHandler(pluginHostAPI));
|
||||
}
|
||||
}
|
||||
|
||||
internal class ChatMessageRouterC2SHandler : IC2SMessageHandler
|
||||
{
|
||||
class Message
|
||||
{
|
||||
[JsonProperty("type")]
|
||||
public string Type { get; set; }
|
||||
|
||||
[JsonProperty("content")]
|
||||
public Content Content { get; set; }
|
||||
}
|
||||
|
||||
class Content
|
||||
{
|
||||
[JsonProperty("text")]
|
||||
public string Text { get; set; }
|
||||
|
||||
[JsonProperty("media")]
|
||||
public Media[] Media { get; set; }
|
||||
}
|
||||
|
||||
class Media
|
||||
{
|
||||
[JsonProperty("mimeType")]
|
||||
public string MimeType;
|
||||
|
||||
[JsonProperty("url")]
|
||||
public string URL;
|
||||
}
|
||||
|
||||
class MessageSentResponse : Message
|
||||
{
|
||||
[JsonProperty("messageID")]
|
||||
public string MessageID { get; set; }
|
||||
|
||||
[JsonProperty("originServerTimestamp")]
|
||||
public long OriginServerTimestamp { get; set; }
|
||||
}
|
||||
|
||||
private IPluginHostAPI pluginHostAPI;
|
||||
|
||||
public ChatMessageRouterC2SHandler(IPluginHostAPI pluginHostAPI)
|
||||
{
|
||||
this.pluginHostAPI = pluginHostAPI;
|
||||
}
|
||||
|
||||
public string GetHandlerUniqueID() => "ChatMessageRouterC2SHandler";
|
||||
|
||||
public string GetHandlingMessageType() => "urn:cadmium:chats:message";
|
||||
|
||||
public void HandleMessage(Session session, BaseMessage message)
|
||||
{
|
||||
var receivedMessage = JsonConvert.DeserializeObject<Message>(JsonConvert.SerializeObject(message.Payload));
|
||||
var response = new BaseMessage(message, true);
|
||||
response.Ok = true;
|
||||
response.From = pluginHostAPI.GetServerID();
|
||||
response.To = null;
|
||||
var respPayload = new MessageSentResponse();
|
||||
respPayload.MessageID = Guid.NewGuid().ToString();
|
||||
respPayload.OriginServerTimestamp = DateTimeOffset.UtcNow.ToUnixTimeSeconds();
|
||||
response.Payload = respPayload.ToDictionary();
|
||||
session.ConnectionHandler.SendMessage(response);
|
||||
|
||||
var recipientSession = pluginHostAPI.GetSessionManager()
|
||||
.GetSessions()
|
||||
.Select(x => x.Value)
|
||||
.Where(x => x.LastTokenPayload.EntityID.Where(x => x == message.To.First()).FirstOrDefault() != null)
|
||||
.FirstOrDefault();
|
||||
|
||||
if (recipientSession == null)
|
||||
{
|
||||
Log.Debug("Recipient doesn't exist or currently offline!");
|
||||
return; // TODO fix this behaviour in specs
|
||||
}
|
||||
|
||||
var msgForRecipient = new BaseMessage();
|
||||
msgForRecipient.From = session.LastTokenPayload.EntityID.First();
|
||||
msgForRecipient.MessageType = "urn:cadmium:chats:message";
|
||||
respPayload.Type = receivedMessage.Type;
|
||||
respPayload.Content = receivedMessage.Content;
|
||||
msgForRecipient.Payload = respPayload.ToDictionary();
|
||||
recipientSession.ConnectionHandler.SendMessage(msgForRecipient);
|
||||
}
|
||||
|
||||
public bool IsAuthorizationRequired() => true;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user