2019-02-16 16:04:40 -05:00
|
|
|
|
using SharedLibraryCore.Helpers;
|
|
|
|
|
using SharedLibraryCore.Interfaces;
|
2019-02-15 23:19:59 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Concurrent;
|
|
|
|
|
using System.Security.Cryptography;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace IW4MAdmin.Application.Misc
|
|
|
|
|
{
|
2022-01-26 11:32:16 -05:00
|
|
|
|
internal class TokenAuthentication : ITokenAuthentication
|
2019-02-15 23:19:59 -05:00
|
|
|
|
{
|
|
|
|
|
private readonly ConcurrentDictionary<long, TokenState> _tokens;
|
2022-01-26 11:32:16 -05:00
|
|
|
|
private readonly RandomNumberGenerator _random;
|
|
|
|
|
private static readonly TimeSpan TimeoutPeriod = new TimeSpan(0, 0, 120);
|
|
|
|
|
private const short TokenLength = 4;
|
2019-02-15 23:19:59 -05:00
|
|
|
|
|
|
|
|
|
public TokenAuthentication()
|
|
|
|
|
{
|
|
|
|
|
_tokens = new ConcurrentDictionary<long, TokenState>();
|
2022-01-26 11:32:16 -05:00
|
|
|
|
_random = RandomNumberGenerator.Create();
|
2019-02-15 23:19:59 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool AuthorizeToken(long networkId, string token)
|
|
|
|
|
{
|
2022-01-26 11:32:16 -05:00
|
|
|
|
var authorizeSuccessful = _tokens.ContainsKey(networkId) && _tokens[networkId].Token == token;
|
2019-02-15 23:19:59 -05:00
|
|
|
|
|
|
|
|
|
if (authorizeSuccessful)
|
|
|
|
|
{
|
2022-01-26 11:32:16 -05:00
|
|
|
|
_tokens.TryRemove(networkId, out _);
|
2019-02-15 23:19:59 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return authorizeSuccessful;
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-16 16:04:40 -05:00
|
|
|
|
public TokenState GenerateNextToken(long networkId)
|
2019-02-15 23:19:59 -05:00
|
|
|
|
{
|
2022-01-26 11:32:16 -05:00
|
|
|
|
TokenState state;
|
2019-02-16 16:04:40 -05:00
|
|
|
|
|
2019-02-15 23:19:59 -05:00
|
|
|
|
if (_tokens.ContainsKey(networkId))
|
|
|
|
|
{
|
|
|
|
|
state = _tokens[networkId];
|
|
|
|
|
|
2022-01-26 11:32:16 -05:00
|
|
|
|
if ((DateTime.Now - state.RequestTime) > TimeoutPeriod)
|
2019-02-15 23:19:59 -05:00
|
|
|
|
{
|
2022-01-26 11:32:16 -05:00
|
|
|
|
_tokens.TryRemove(networkId, out _);
|
2019-02-15 23:19:59 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-02-16 16:04:40 -05:00
|
|
|
|
return state;
|
2019-02-15 23:19:59 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-26 11:32:16 -05:00
|
|
|
|
state = new TokenState
|
2019-02-15 23:19:59 -05:00
|
|
|
|
{
|
|
|
|
|
NetworkId = networkId,
|
2019-02-16 16:04:40 -05:00
|
|
|
|
Token = _generateToken(),
|
2022-01-26 11:32:16 -05:00
|
|
|
|
TokenDuration = TimeoutPeriod
|
2019-02-15 23:19:59 -05:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
_tokens.TryAdd(networkId, state);
|
2019-02-16 16:04:40 -05:00
|
|
|
|
|
|
|
|
|
// perform some housekeeping so we don't have built up tokens if they're not ever used
|
|
|
|
|
foreach (var (key, value) in _tokens)
|
|
|
|
|
{
|
2022-01-26 11:32:16 -05:00
|
|
|
|
if ((DateTime.Now - value.RequestTime) > TimeoutPeriod)
|
2019-02-16 16:04:40 -05:00
|
|
|
|
{
|
2022-01-26 11:32:16 -05:00
|
|
|
|
_tokens.TryRemove(key, out _);
|
2019-02-16 16:04:40 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return state;
|
2019-02-15 23:19:59 -05:00
|
|
|
|
}
|
|
|
|
|
|
2022-01-26 11:32:16 -05:00
|
|
|
|
private string _generateToken()
|
2019-02-15 23:19:59 -05:00
|
|
|
|
{
|
2022-01-26 11:32:16 -05:00
|
|
|
|
bool ValidCharacter(char c)
|
2019-02-15 23:19:59 -05:00
|
|
|
|
{
|
|
|
|
|
// this ensure that the characters are 0-9, A-Z, a-z
|
|
|
|
|
return (c > 47 && c < 58) || (c > 64 && c < 91) || (c > 96 && c < 123);
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-26 11:32:16 -05:00
|
|
|
|
var token = new StringBuilder();
|
2019-02-15 23:19:59 -05:00
|
|
|
|
|
2022-01-26 11:32:16 -05:00
|
|
|
|
var charSet = new byte[1];
|
|
|
|
|
while (token.Length < TokenLength)
|
2019-02-15 23:19:59 -05:00
|
|
|
|
{
|
|
|
|
|
_random.GetBytes(charSet);
|
|
|
|
|
|
2022-01-26 11:32:16 -05:00
|
|
|
|
if (ValidCharacter((char)charSet[0]))
|
2019-02-15 23:19:59 -05:00
|
|
|
|
{
|
|
|
|
|
token.Append((char)charSet[0]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_random.Dispose();
|
|
|
|
|
return token.ToString();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|