DocSpace-client/web/ASC.Web.Core/Sms/SmsKeyStorage.cs

191 lines
6.9 KiB
C#

/*
*
* (c) Copyright Ascensio System Limited 2010-2018
*
* This program is freeware. You can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) version 3 as published by the Free Software Foundation (https://www.gnu.org/copyleft/gpl.html).
* In accordance with Section 7(a) of the GNU GPL its Section 15 shall be amended to the effect that
* Ascensio System SIA expressly excludes the warranty of non-infringement of any third-party rights.
*
* THIS PROGRAM IS DISTRIBUTED WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR
* FITNESS FOR A PARTICULAR PURPOSE. For more details, see GNU GPL at https://www.gnu.org/copyleft/gpl.html
*
* You can contact Ascensio System SIA by email at sales@onlyoffice.com
*
* The interactive user interfaces in modified source and object code versions of ONLYOFFICE must display
* Appropriate Legal Notices, as required under Section 5 of the GNU GPL version 3.
*
* Pursuant to Section 7 § 3(b) of the GNU GPL you must retain the original ONLYOFFICE logo which contains
* relevant author attributions when distributing the software. If the display of the logo in its graphic
* form is not reasonably feasible for technical reasons, you must include the words "Powered by ONLYOFFICE"
* in every copy of the program you distribute.
* Pursuant to Section 7 § 3(e) we decline to grant you any rights under trademark law for use of our trademarks.
*
*/
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Security.Cryptography;
using ASC.Common;
using ASC.Common.Caching;
using ASC.Core;
using ASC.Core.Tenants;
using Microsoft.Extensions.Configuration;
namespace ASC.Web.Core.Sms
{
[Singletone]
public class SmsKeyStorageCache
{
private ICacheNotify<SmsKeyCacheKey> KeyCacheNotify { get; }
public ICache KeyCache { get; }
public ICache CheckCache { get; }
public SmsKeyStorageCache(ICacheNotify<SmsKeyCacheKey> keyCacheNotify, ICache cache)
{
CheckCache = cache;
KeyCache = cache;
KeyCacheNotify = keyCacheNotify;
KeyCacheNotify.Subscribe(r => KeyCache.Remove(r.Key), CacheNotifyAction.Remove);
}
public void RemoveFromCache(string cacheKey)
{
KeyCacheNotify.Publish(new SmsKeyCacheKey { Key = cacheKey }, CacheNotifyAction.Remove);
}
}
[Scope]
public class SmsKeyStorage
{
public readonly int KeyLength;
public readonly TimeSpan StoreInterval;
public readonly int AttemptCount;
private static readonly object KeyLocker = new object();
private ICache KeyCache { get; }
private ICache CheckCache { get; }
private TenantManager TenantManager { get; }
public SmsKeyStorageCache SmsKeyStorageCache { get; }
public SmsKeyStorage(TenantManager tenantManager, IConfiguration configuration, SmsKeyStorageCache smsKeyStorageCache)
{
KeyCache = smsKeyStorageCache.KeyCache;
CheckCache = smsKeyStorageCache.CheckCache;
TenantManager = tenantManager;
SmsKeyStorageCache = smsKeyStorageCache;
if (!int.TryParse(configuration["sms:keylength"], out KeyLength))
{
KeyLength = 6;
}
if (!int.TryParse(configuration["sms:keystore"], out var store))
{
store = 10;
}
StoreInterval = TimeSpan.FromMinutes(store);
if (!int.TryParse(configuration["sms:keycount"], out AttemptCount))
{
AttemptCount = 5;
}
}
private string BuildCacheKey(string phone)
{
var tenant = TenantManager.GetCurrentTenant(false);
var tenantCache = tenant == null ? Tenant.DEFAULT_TENANT : tenant.TenantId;
return "smskey" + phone + tenantCache;
}
public bool GenerateKey(string phone, out string key)
{
if (string.IsNullOrEmpty(phone))
{
throw new ArgumentNullException(nameof(phone));
}
lock (KeyLocker)
{
var cacheKey = BuildCacheKey(phone);
var phoneKeys = KeyCache.Get<Dictionary<string, DateTime>>(cacheKey) ?? new Dictionary<string, DateTime>();
if (phoneKeys.Count > AttemptCount)
{
key = null;
return false;
}
key = RandomNumberGenerator.GetInt32((int)Math.Pow(10, KeyLength - 1), (int)Math.Pow(10, KeyLength)).ToString(CultureInfo.InvariantCulture);
phoneKeys[key] = DateTime.UtcNow;
KeyCache.Insert(cacheKey, phoneKeys, DateTime.UtcNow.Add(StoreInterval));
return true;
}
}
public bool ExistsKey(string phone)
{
if (string.IsNullOrEmpty(phone))
{
return false;
}
lock (KeyLocker)
{
var cacheKey = BuildCacheKey(phone);
var phoneKeys = KeyCache.Get<Dictionary<string, DateTime>>(cacheKey);
return phoneKeys != null;
}
}
public Result ValidateKey(string phone, string key)
{
key = (key ?? string.Empty).Trim();
if (string.IsNullOrEmpty(phone) || string.IsNullOrEmpty(key))
{
return Result.Empty;
}
var cacheCheck = BuildCacheKey("check" + phone);
int.TryParse(CheckCache.Get<string>(cacheCheck), out var counter);
if (++counter > AttemptCount)
return Result.TooMuch;
CheckCache.Insert(cacheCheck, counter.ToString(CultureInfo.InvariantCulture), DateTime.UtcNow.Add(StoreInterval));
lock (KeyLocker)
{
var cacheKey = BuildCacheKey(phone);
var phoneKeys = KeyCache.Get<Dictionary<string, DateTime>>(cacheKey);
if (phoneKeys == null)
return Result.Timeout;
if (!phoneKeys.ContainsKey(key))
return Result.Invalide;
var createDate = phoneKeys[key];
SmsKeyStorageCache.RemoveFromCache(cacheKey);
if (createDate.Add(StoreInterval) < DateTime.UtcNow)
return Result.Timeout;
CheckCache.Insert(cacheCheck, (counter - 1).ToString(CultureInfo.InvariantCulture), DateTime.UtcNow.Add(StoreInterval));
return Result.Ok;
}
}
public enum Result
{
Ok,
Invalide,
Empty,
TooMuch,
Timeout,
}
}
}