mirror of
https://github.com/cadmium-im/zirconium-sharp.git
synced 2024-11-22 02:12:22 +00:00
Make token validation on each request (auth provider should take care for caching)
This commit is contained in:
parent
400c5410e9
commit
4dc832856e
@ -4,7 +4,6 @@ namespace Zirconium.Core.Models
|
||||
{
|
||||
public class Session
|
||||
{
|
||||
public string LastTokenHash { get; set; }
|
||||
public SessionAuthData LastTokenPayload { get; set; }
|
||||
public IPAddress ClientAddress { get; set; }
|
||||
public ConnectionHandler ConnectionHandler { get; set; }
|
||||
|
@ -44,13 +44,6 @@ namespace Zirconium.Core
|
||||
foreach (var h in handlers)
|
||||
{
|
||||
if (h.IsAuthorizationRequired())
|
||||
{
|
||||
string hash;
|
||||
using (SHA512 shaM = new SHA512Managed())
|
||||
{
|
||||
hash = shaM.ComputeHash(message.AuthToken.ToByteArray()).ConvertToString();
|
||||
}
|
||||
if (session.LastTokenHash != hash)
|
||||
{
|
||||
SessionAuthData tokenPayload;
|
||||
try
|
||||
@ -69,14 +62,12 @@ namespace Zirconium.Core
|
||||
errorMsg.From = _app.Config.ServerID;
|
||||
var serializedMsg = JsonConvert.SerializeObject(errorMsg);
|
||||
|
||||
session.LastTokenPayload = null;
|
||||
session.ConnectionHandler.SendMessage(serializedMsg);
|
||||
return;
|
||||
}
|
||||
|
||||
session.LastTokenHash = hash;
|
||||
session.LastTokenPayload = tokenPayload;
|
||||
}
|
||||
}
|
||||
|
||||
var task = Task.Run(() =>
|
||||
{
|
||||
@ -85,9 +76,12 @@ namespace Zirconium.Core
|
||||
});
|
||||
handlerTasks.Add(task);
|
||||
}
|
||||
try {
|
||||
try
|
||||
{
|
||||
Task.WaitAll(handlerTasks.ToArray());
|
||||
} catch (Exception e) {
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Log.Error(e.ToString());
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user