mirror of
https://github.com/cadmium-im/zirconium-sharp.git
synced 2024-11-09 12:11:04 +00:00
Refactor InBandLogin plugin: split code into few files
This commit is contained in:
parent
89fe7bf07a
commit
18568159a2
60
src/ZirconiumPlugins/InBandLogin/Handlers/LoginC2SHandler.cs
Normal file
60
src/ZirconiumPlugins/InBandLogin/Handlers/LoginC2SHandler.cs
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using Zirconium.Core.Models;
|
||||||
|
using Zirconium.Core.Plugins.Interfaces;
|
||||||
|
using Zirconium.Utils;
|
||||||
|
|
||||||
|
namespace InBandLogin.Handlers
|
||||||
|
{
|
||||||
|
public class LoginC2SHandler : IC2SMessageHandler
|
||||||
|
{
|
||||||
|
private const string errID = "invalid_creds";
|
||||||
|
private readonly IPluginHostAPI _pluginHost;
|
||||||
|
|
||||||
|
public LoginC2SHandler(IPluginHostAPI pluginHostApi)
|
||||||
|
{
|
||||||
|
this._pluginHost = pluginHostApi;
|
||||||
|
}
|
||||||
|
|
||||||
|
public string GetHandlerUniqueID()
|
||||||
|
{
|
||||||
|
return "LoginC2SHandler";
|
||||||
|
}
|
||||||
|
|
||||||
|
public string GetHandlingMessageType()
|
||||||
|
{
|
||||||
|
return "profile:login";
|
||||||
|
}
|
||||||
|
|
||||||
|
public void HandleMessage(Session session, BaseMessage message)
|
||||||
|
{
|
||||||
|
var pObj = message.Payload.ToObject<LoginRequestPayload>();
|
||||||
|
var authProvider = _pluginHost.GetAuthProvider();
|
||||||
|
if (authProvider.TestPassword(pObj.Username, pObj.Password))
|
||||||
|
{
|
||||||
|
BaseMessage reply = new BaseMessage(message, true);
|
||||||
|
var p = new LoginResponsePayload();
|
||||||
|
string deviceID = "ABCDEF"; // TODO fix device id system
|
||||||
|
p.AuthToken = _pluginHost.GenerateAuthToken($"@{pObj.Username}@{_pluginHost.GetServerID()}", deviceID);
|
||||||
|
p.DeviceID = deviceID;
|
||||||
|
reply.Payload = p.ToDictionary();
|
||||||
|
reply.Ok = true;
|
||||||
|
session.ConnectionHandler.SendMessage(reply);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var reply = OtherUtils.GenerateProtocolError(
|
||||||
|
message,
|
||||||
|
errID,
|
||||||
|
"Username/password isn't valid",
|
||||||
|
new Dictionary<string, object>()
|
||||||
|
);
|
||||||
|
session.ConnectionHandler.SendMessage(reply);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool IsAuthorizationRequired()
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,82 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using Zirconium.Core.Models;
|
||||||
|
using Zirconium.Core.Plugins.Interfaces;
|
||||||
|
using Zirconium.Utils;
|
||||||
|
|
||||||
|
namespace InBandLogin.Handlers
|
||||||
|
{
|
||||||
|
public class RegisterC2SHandler : IC2SMessageHandler
|
||||||
|
{
|
||||||
|
private readonly IPluginHostAPI _pluginHost;
|
||||||
|
|
||||||
|
public RegisterC2SHandler(IPluginHostAPI pluginHost)
|
||||||
|
{
|
||||||
|
this._pluginHost = pluginHost;
|
||||||
|
}
|
||||||
|
|
||||||
|
public string GetHandlerUniqueID()
|
||||||
|
{
|
||||||
|
return "RegisterC2SHandler";
|
||||||
|
}
|
||||||
|
|
||||||
|
public string GetHandlingMessageType()
|
||||||
|
{
|
||||||
|
return "profile:register";
|
||||||
|
}
|
||||||
|
|
||||||
|
public void HandleMessage(Session session, BaseMessage message)
|
||||||
|
{
|
||||||
|
var pObj = message.Payload.ToObject<RegisterRequestPayload>();
|
||||||
|
var authProvider = _pluginHost.GetAuthProvider();
|
||||||
|
try
|
||||||
|
{
|
||||||
|
authProvider.CreateUser(pObj.Username, pObj.Password);
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
BaseMessage errorReply;
|
||||||
|
if (e.Message.Contains("E11000"))
|
||||||
|
{
|
||||||
|
errorReply = OtherUtils.GenerateProtocolError(
|
||||||
|
message,
|
||||||
|
"id_exists",
|
||||||
|
"Username already taken",
|
||||||
|
new Dictionary<string, object>()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
errorReply = OtherUtils.GenerateProtocolError(
|
||||||
|
message,
|
||||||
|
"other",
|
||||||
|
e.ToString(),
|
||||||
|
new Dictionary<string, object>()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
session.ConnectionHandler.SendMessage(errorReply);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
BaseMessage reply = new BaseMessage(message, true);
|
||||||
|
var p = new RegisterResponsePayload();
|
||||||
|
p.UserID = $"@{pObj.Username}@{_pluginHost.GetServerID()}";
|
||||||
|
if (pObj.LoginOnSuccess)
|
||||||
|
{
|
||||||
|
string deviceID = "ABCDEF"; // TODO fix device id system
|
||||||
|
p.AuthToken = _pluginHost.GenerateAuthToken($"@{pObj.Username}@{_pluginHost.GetServerID()}", deviceID);
|
||||||
|
p.DeviceID = deviceID;
|
||||||
|
}
|
||||||
|
|
||||||
|
reply.Payload = p.ToDictionary();
|
||||||
|
reply.Ok = true;
|
||||||
|
session.ConnectionHandler.SendMessage(reply);
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool IsAuthorizationRequired()
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
46
src/ZirconiumPlugins/InBandLogin/PayloadModels.cs
Normal file
46
src/ZirconiumPlugins/InBandLogin/PayloadModels.cs
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
namespace InBandLogin
|
||||||
|
{
|
||||||
|
class LoginRequestPayload
|
||||||
|
{
|
||||||
|
[JsonProperty("username")]
|
||||||
|
public string Username { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("password")]
|
||||||
|
public string Password { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
class LoginResponsePayload
|
||||||
|
{
|
||||||
|
[JsonProperty("authToken")]
|
||||||
|
public string AuthToken { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("deviceID")]
|
||||||
|
public string DeviceID { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
class RegisterRequestPayload
|
||||||
|
{
|
||||||
|
[JsonProperty("username")]
|
||||||
|
public string Username { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("password")]
|
||||||
|
public string Password { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("loginOnSuccess")]
|
||||||
|
public bool LoginOnSuccess { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
class RegisterResponsePayload
|
||||||
|
{
|
||||||
|
[JsonProperty("userID")]
|
||||||
|
public string UserID { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("authToken")]
|
||||||
|
public string AuthToken { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("deviceID")]
|
||||||
|
public string DeviceID { get; set; }
|
||||||
|
}
|
||||||
|
}
|
@ -1,57 +1,11 @@
|
|||||||
using System;
|
using InBandLogin.Handlers;
|
||||||
using System.Collections.Generic;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
using Zirconium.Core.Models;
|
|
||||||
using Zirconium.Core.Plugins.Interfaces;
|
using Zirconium.Core.Plugins.Interfaces;
|
||||||
using Zirconium.Utils;
|
|
||||||
|
|
||||||
namespace InBandLogin
|
namespace InBandLogin
|
||||||
{
|
{
|
||||||
public class InBandLoginPlugin : IPluginAPI
|
public class Plugin : IPluginAPI
|
||||||
{
|
{
|
||||||
class LoginRequestPayload
|
private IPluginHostAPI _pluginHost;
|
||||||
{
|
|
||||||
[JsonProperty("username")]
|
|
||||||
public string Username { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("password")]
|
|
||||||
public string Password { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
class LoginResponsePayload
|
|
||||||
{
|
|
||||||
[JsonProperty("authToken")]
|
|
||||||
public string AuthToken { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("deviceID")]
|
|
||||||
public string DeviceID { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
class RegisterRequestPayload
|
|
||||||
{
|
|
||||||
[JsonProperty("username")]
|
|
||||||
public string Username { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("password")]
|
|
||||||
public string Password { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("loginOnSuccess")]
|
|
||||||
public bool LoginOnSuccess { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
class RegisterResponsePayload
|
|
||||||
{
|
|
||||||
[JsonProperty("userID")]
|
|
||||||
public string UserID { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("authToken")]
|
|
||||||
public string AuthToken { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("deviceID")]
|
|
||||||
public string DeviceID { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
private IPluginHostAPI pluginHostAPI;
|
|
||||||
|
|
||||||
public string GetPluginUniqueName()
|
public string GetPluginUniqueName()
|
||||||
{
|
{
|
||||||
@ -60,134 +14,9 @@ namespace InBandLogin
|
|||||||
|
|
||||||
public void Initialize(IPluginHostAPI pluginHost)
|
public void Initialize(IPluginHostAPI pluginHost)
|
||||||
{
|
{
|
||||||
this.pluginHostAPI = pluginHost;
|
this._pluginHost = pluginHost;
|
||||||
pluginHostAPI.Hook(new LoginC2SHandler(pluginHostAPI));
|
this._pluginHost.Hook(new LoginC2SHandler(this._pluginHost));
|
||||||
pluginHostAPI.Hook(new RegisterC2SHandler(pluginHostAPI));
|
this._pluginHost.Hook(new RegisterC2SHandler(this._pluginHost));
|
||||||
}
|
|
||||||
|
|
||||||
class LoginC2SHandler : IC2SMessageHandler
|
|
||||||
{
|
|
||||||
private const string errID = "invalid_creds";
|
|
||||||
private IPluginHostAPI _phostAPI;
|
|
||||||
public LoginC2SHandler(IPluginHostAPI pluginHostAPI)
|
|
||||||
{
|
|
||||||
this._phostAPI = pluginHostAPI;
|
|
||||||
}
|
|
||||||
|
|
||||||
public string GetHandlerUniqueID()
|
|
||||||
{
|
|
||||||
return "LoginC2SHandler";
|
|
||||||
}
|
|
||||||
|
|
||||||
public string GetHandlingMessageType()
|
|
||||||
{
|
|
||||||
return "profile:login";
|
|
||||||
}
|
|
||||||
|
|
||||||
public void HandleMessage(Session session, BaseMessage message)
|
|
||||||
{
|
|
||||||
var pObj = message.Payload.ToObject<LoginRequestPayload>();
|
|
||||||
var authProvider = _phostAPI.GetAuthProvider();
|
|
||||||
if (authProvider.TestPassword(pObj.Username, pObj.Password))
|
|
||||||
{
|
|
||||||
BaseMessage reply = new BaseMessage(message, true);
|
|
||||||
var p = new LoginResponsePayload();
|
|
||||||
string deviceID = "ABCDEF"; // TODO fix device id system
|
|
||||||
p.AuthToken = _phostAPI.GenerateAuthToken($"@{pObj.Username}@{_phostAPI.GetServerID()}", deviceID);
|
|
||||||
p.DeviceID = deviceID;
|
|
||||||
reply.Payload = p.ToDictionary();
|
|
||||||
reply.Ok = true;
|
|
||||||
session.ConnectionHandler.SendMessage(reply);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
var reply = OtherUtils.GenerateProtocolError(
|
|
||||||
message,
|
|
||||||
errID,
|
|
||||||
"Username/password isn't valid",
|
|
||||||
new Dictionary<string, object>()
|
|
||||||
);
|
|
||||||
session.ConnectionHandler.SendMessage(reply);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public bool IsAuthorizationRequired()
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class RegisterC2SHandler : IC2SMessageHandler
|
|
||||||
{
|
|
||||||
|
|
||||||
private IPluginHostAPI _pluginHostAPI;
|
|
||||||
|
|
||||||
public RegisterC2SHandler(IPluginHostAPI pluginHostAPI)
|
|
||||||
{
|
|
||||||
this._pluginHostAPI = pluginHostAPI;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public string GetHandlerUniqueID()
|
|
||||||
{
|
|
||||||
return "RegisterC2SHandler";
|
|
||||||
}
|
|
||||||
|
|
||||||
public string GetHandlingMessageType()
|
|
||||||
{
|
|
||||||
return "profile:register";
|
|
||||||
}
|
|
||||||
|
|
||||||
public void HandleMessage(Session session, BaseMessage message)
|
|
||||||
{
|
|
||||||
var pObj = message.Payload.ToObject<RegisterRequestPayload>();
|
|
||||||
var authProvider = _pluginHostAPI.GetAuthProvider();
|
|
||||||
try
|
|
||||||
{
|
|
||||||
authProvider.CreateUser(pObj.Username, pObj.Password);
|
|
||||||
}
|
|
||||||
catch (Exception e)
|
|
||||||
{
|
|
||||||
BaseMessage errorReply;
|
|
||||||
if (e.Message.Contains("E11000"))
|
|
||||||
{
|
|
||||||
errorReply = OtherUtils.GenerateProtocolError(
|
|
||||||
message,
|
|
||||||
"id_exists",
|
|
||||||
"Username already taken",
|
|
||||||
new Dictionary<string, object>()
|
|
||||||
);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
errorReply = OtherUtils.GenerateProtocolError(
|
|
||||||
message,
|
|
||||||
"other",
|
|
||||||
e.ToString(),
|
|
||||||
new Dictionary<string, object>()
|
|
||||||
);
|
|
||||||
}
|
|
||||||
session.ConnectionHandler.SendMessage(errorReply);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
BaseMessage reply = new BaseMessage(message, true);
|
|
||||||
var p = new RegisterResponsePayload();
|
|
||||||
p.UserID = $"@{pObj.Username}@{_pluginHostAPI.GetServerID()}";
|
|
||||||
if (pObj.LoginOnSuccess)
|
|
||||||
{
|
|
||||||
string deviceID = "ABCDEF"; // TODO fix device id system
|
|
||||||
p.AuthToken = _pluginHostAPI.GenerateAuthToken($"@{pObj.Username}@{_pluginHostAPI.GetServerID()}", deviceID);
|
|
||||||
p.DeviceID = deviceID;
|
|
||||||
}
|
|
||||||
reply.Payload = p.ToDictionary();
|
|
||||||
reply.Ok = true;
|
|
||||||
session.ConnectionHandler.SendMessage(reply);
|
|
||||||
}
|
|
||||||
|
|
||||||
public bool IsAuthorizationRequired()
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user