DocSpace-buildtools/web/ASC.Web.Core/Helpers/ApiSystemHelper.cs

160 lines
6.3 KiB
C#
Raw Normal View History

2022-03-15 18:00:53 +00:00
// (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
2019-06-07 08:59:07 +00:00
2022-03-17 15:13:38 +00:00
namespace ASC.Web.Core.Helpers;
[Scope]
public class ApiSystemHelper
2020-10-19 15:53:15 +00:00
{
2022-03-17 15:13:38 +00:00
public string ApiSystemUrl { get; private set; }
public string ApiCacheUrl { get; private set; }
2022-03-22 10:31:41 +00:00
private static byte[] _skey;
private readonly CommonLinkUtility _commonLinkUtility;
private readonly IHttpClientFactory _clientFactory;
2022-03-17 15:13:38 +00:00
public ApiSystemHelper(IConfiguration configuration,
CommonLinkUtility commonLinkUtility,
MachinePseudoKeys machinePseudoKeys,
IHttpClientFactory clientFactory)
{
ApiSystemUrl = configuration["web:api-system"];
ApiCacheUrl = configuration["web:api-cache"];
2022-03-22 10:31:41 +00:00
_commonLinkUtility = commonLinkUtility;
_skey = machinePseudoKeys.GetMachineConstant();
_clientFactory = clientFactory;
2022-03-17 15:13:38 +00:00
}
2022-03-17 15:13:38 +00:00
public string CreateAuthToken(string pkey)
{
2022-03-22 10:31:41 +00:00
using var hasher = new HMACSHA1(_skey);
2022-03-17 15:13:38 +00:00
var now = DateTime.UtcNow.ToString("yyyyMMddHHmmss");
var hash = WebEncoders.Base64UrlEncode(hasher.ComputeHash(Encoding.UTF8.GetBytes(string.Join("\n", now, pkey))));
return $"ASC {pkey}:{now}:{hash}";
}
2022-03-17 15:13:38 +00:00
#region system
2022-03-17 15:13:38 +00:00
public async Task ValidatePortalNameAsync(string domain, Guid userId)
{
try
{
var data = $"portalName={HttpUtility.UrlEncode(domain)}";
await SendToApiAsync(ApiSystemUrl, "portal/validateportalname", WebRequestMethods.Http.Post, userId, data);
}
catch (WebException exception)
{
if (exception.Status != WebExceptionStatus.ProtocolError || exception.Response == null)
2021-11-25 08:00:17 +00:00
{
2022-03-17 15:13:38 +00:00
return;
2021-11-25 08:00:17 +00:00
}
2021-10-12 10:14:33 +00:00
2022-03-17 15:13:38 +00:00
var response = exception.Response;
try
{
using var stream = response.GetResponseStream();
using var reader = new StreamReader(stream, Encoding.UTF8);
var result = await reader.ReadToEndAsync();
2022-03-17 15:13:38 +00:00
var resObj = JObject.Parse(result);
if (resObj["error"] != null)
{
if (resObj["error"].ToString() == "portalNameExist")
{
var varians = resObj.Value<JArray>("variants").Select(jv => jv.Value<string>());
throw new TenantAlreadyExistsException("Address busy.", varians);
}
2022-03-17 15:13:38 +00:00
throw new Exception(resObj["error"].ToString());
}
}
finally
{
if (response != null)
{
response.Close();
}
}
}
}
2022-03-17 15:13:38 +00:00
#endregion
2022-03-17 15:13:38 +00:00
#region cache
2022-03-17 15:13:38 +00:00
public async Task AddTenantToCacheAsync(string domain, Guid userId)
{
var data = $"portalName={HttpUtility.UrlEncode(domain)}";
await SendToApiAsync(ApiCacheUrl, "portal/add", WebRequestMethods.Http.Post, userId, data);
}
2022-03-17 15:13:38 +00:00
public async Task RemoveTenantFromCacheAsync(string domain, Guid userId)
{
await SendToApiAsync(ApiCacheUrl, "portal/remove?portalname=" + HttpUtility.UrlEncode(domain), "DELETE", userId);
}
2022-03-17 15:13:38 +00:00
public async Task<IEnumerable<string>> FindTenantsInCacheAsync(string domain, Guid userId)
{
var result = await SendToApiAsync(ApiCacheUrl, "portal/find?portalname=" + HttpUtility.UrlEncode(domain), WebRequestMethods.Http.Get, userId);
var resObj = JObject.Parse(result);
2022-03-17 15:13:38 +00:00
var variants = resObj.Value<JArray>("variants");
return variants?.Select(jv => jv.Value<string>()).ToList();
}
2022-03-17 15:13:38 +00:00
#endregion
2022-03-17 15:13:38 +00:00
private async Task<string> SendToApiAsync(string absoluteApiUrl, string apiPath, string httpMethod, Guid userId, string data = null)
{
if (!Uri.TryCreate(absoluteApiUrl, UriKind.Absolute, out var uri))
{
2022-03-22 10:31:41 +00:00
var appUrl = _commonLinkUtility.GetFullAbsolutePath("/");
2022-03-17 15:13:38 +00:00
absoluteApiUrl = $"{appUrl.TrimEnd('/')}/{absoluteApiUrl.TrimStart('/')}".TrimEnd('/');
}
2022-03-17 15:13:38 +00:00
var url = $"{absoluteApiUrl}/{apiPath}";
2022-04-14 19:23:57 +00:00
var request = new HttpRequestMessage
{
RequestUri = new Uri(url),
Method = new HttpMethod(httpMethod)
};
2022-03-17 15:13:38 +00:00
request.Headers.Add("Authorization", CreateAuthToken(userId.ToString()));
request.Headers.Accept.Add(MediaTypeWithQualityHeaderValue.Parse("application/json"));
if (data != null)
{
request.Content = new StringContent(data, Encoding.UTF8, "application/x-www-form-urlencoded");
}
2022-03-22 10:31:41 +00:00
var httpClient = _clientFactory.CreateClient();
2022-03-17 15:13:38 +00:00
using var response = await httpClient.SendAsync(request);
using var stream = await response.Content.ReadAsStreamAsync();
using var reader = new StreamReader(stream, Encoding.UTF8);
return await reader.ReadToEndAsync();
}
}