DocSpace-client/web/ASC.Web.Core/CookiesManager.cs
2022-04-15 12:08:06 +03:00

253 lines
8.3 KiB
C#

// (c) Copyright Ascensio System SIA 2010-2022
//
// This program is a free software product.
// You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL 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 details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
//
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
//
// The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
//
// Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks.
//
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
using Constants = ASC.Core.Users.Constants;
namespace ASC.Web.Core;
public enum CookiesType
{
AuthKey,
SocketIO
}
[Scope]
public class CookiesManager
{
private const string AuthCookiesName = "asc_auth_key";
private const string SocketIOCookiesName = "socketio.sid";
private readonly IHttpContextAccessor _httpContextAccessor;
private readonly UserManager _userManager;
private readonly SecurityContext _securityContext;
private readonly TenantCookieSettingsHelper _tenantCookieSettingsHelper;
private readonly TenantManager _tenantManager;
private readonly CoreBaseSettings _coreBaseSettings;
public CookiesManager(
IHttpContextAccessor httpContextAccessor,
UserManager userManager,
SecurityContext securityContext,
TenantCookieSettingsHelper tenantCookieSettingsHelper,
TenantManager tenantManager,
CoreBaseSettings coreBaseSettings)
{
_httpContextAccessor = httpContextAccessor;
_userManager = userManager;
_securityContext = securityContext;
_tenantCookieSettingsHelper = tenantCookieSettingsHelper;
_tenantManager = tenantManager;
_coreBaseSettings = coreBaseSettings;
}
private static string GetCookiesName(CookiesType type)
{
return type switch
{
CookiesType.AuthKey => AuthCookiesName,
CookiesType.SocketIO => SocketIOCookiesName,
_ => string.Empty,
};
}
public string GetRequestVar(CookiesType type)
{
if (_httpContextAccessor?.HttpContext == null)
{
return "";
}
var cookie = _httpContextAccessor.HttpContext.Request.Query[GetCookiesName(type)].FirstOrDefault() ?? _httpContextAccessor.HttpContext.Request.Form[GetCookiesName(type)].FirstOrDefault();
return string.IsNullOrEmpty(cookie) ? GetCookies(type) : cookie;
}
public void SetCookies(CookiesType type, string value, bool session = false)
{
if (_httpContextAccessor?.HttpContext == null)
{
return;
}
var options = new CookieOptions
{
Expires = GetExpiresDate(session)
};
if (type == CookiesType.AuthKey)
{
options.HttpOnly = true;
if (_httpContextAccessor.HttpContext.Request.GetUrlRewriter().Scheme == "https")
{
options.Secure = true;
if (_coreBaseSettings.Personal)
{
options.SameSite = SameSiteMode.None;
}
}
}
_httpContextAccessor.HttpContext.Response.Cookies.Append(GetCookiesName(type), value, options);
}
public void SetCookies(CookiesType type, string value, string domain, bool session = false)
{
if (_httpContextAccessor?.HttpContext == null)
{
return;
}
var options = new CookieOptions
{
Expires = GetExpiresDate(session),
Domain = domain
};
if (type == CookiesType.AuthKey)
{
options.HttpOnly = true;
if (_httpContextAccessor.HttpContext.Request.GetUrlRewriter().Scheme == "https")
{
options.Secure = true;
if (_coreBaseSettings.Personal)
{
options.SameSite = SameSiteMode.None;
}
}
}
_httpContextAccessor.HttpContext.Response.Cookies.Append(GetCookiesName(type), value, options);
}
public string GetCookies(CookiesType type)
{
if (_httpContextAccessor?.HttpContext != null)
{
var cookieName = GetCookiesName(type);
if (_httpContextAccessor.HttpContext.Request.Cookies.ContainsKey(cookieName))
{
return _httpContextAccessor.HttpContext.Request.Cookies[cookieName] ?? "";
}
}
return "";
}
public void ClearCookies(CookiesType type)
{
if (_httpContextAccessor?.HttpContext == null)
{
return;
}
if (_httpContextAccessor.HttpContext.Request.Cookies.ContainsKey(GetCookiesName(type)))
{
_httpContextAccessor.HttpContext.Response.Cookies.Delete(GetCookiesName(type), new CookieOptions() { Expires = DateTime.Now.AddDays(-3) });
}
}
private DateTime? GetExpiresDate(bool session)
{
DateTime? expires = null;
if (!session)
{
var tenant = _tenantManager.GetCurrentTenant().Id;
expires = _tenantCookieSettingsHelper.GetExpiresTime(tenant);
}
return expires;
}
public void SetLifeTime(int lifeTime)
{
var tenant = _tenantManager.GetCurrentTenant();
if (!_userManager.IsUserInGroup(_securityContext.CurrentAccount.ID, Constants.GroupAdmin.ID))
{
throw new SecurityException();
}
var settings = _tenantCookieSettingsHelper.GetForTenant(tenant.Id);
if (lifeTime > 0)
{
settings.Index += 1;
settings.LifeTime = lifeTime;
}
else
{
settings.LifeTime = 0;
}
_tenantCookieSettingsHelper.SetForTenant(tenant.Id, settings);
var cookie = _securityContext.AuthenticateMe(_securityContext.CurrentAccount.ID);
SetCookies(CookiesType.AuthKey, cookie);
}
public int GetLifeTime(int tenantId)
{
return _tenantCookieSettingsHelper.GetForTenant(tenantId).LifeTime;
}
public void ResetUserCookie(Guid? userId = null)
{
var settings = _tenantCookieSettingsHelper.GetForUser(userId ?? _securityContext.CurrentAccount.ID);
settings.Index += 1;
_tenantCookieSettingsHelper.SetForUser(userId ?? _securityContext.CurrentAccount.ID, settings);
if (!userId.HasValue)
{
var cookie = _securityContext.AuthenticateMe(_securityContext.CurrentAccount.ID);
SetCookies(CookiesType.AuthKey, cookie);
}
}
public void ResetTenantCookie()
{
var tenant = _tenantManager.GetCurrentTenant();
if (!_userManager.IsUserInGroup(_securityContext.CurrentAccount.ID, Constants.GroupAdmin.ID))
{
throw new SecurityException();
}
var settings = _tenantCookieSettingsHelper.GetForTenant(tenant.Id);
settings.Index += 1;
_tenantCookieSettingsHelper.SetForTenant(tenant.Id, settings);
var cookie = _securityContext.AuthenticateMe(_securityContext.CurrentAccount.ID);
SetCookies(CookiesType.AuthKey, cookie);
}
}