DocSpace-buildtools/common/ASC.Api.Core/Core/ApiContext.cs

241 lines
9.4 KiB
C#
Raw Normal View History

2019-06-13 09:04:46 +00:00
/*
*
* (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.
*
*/
2022-01-31 13:56:30 +00:00
using SecurityContext = ASC.Core.SecurityContext;
2019-06-13 09:04:46 +00:00
namespace ASC.Api.Core
{
2020-10-19 15:53:15 +00:00
[Scope]
2019-06-13 09:04:46 +00:00
public class ApiContext : ICloneable
{
2020-05-17 13:08:20 +00:00
public IHttpContextAccessor HttpContextAccessor { get; set; }
public string[] Fields { get; set; }
public string[] FilterValues { get; set; }
public bool FromCache { get; set; }
public Tenant Tenant => _tenant ??= _tenantManager.GetCurrentTenant(HttpContextAccessor?.HttpContext);
public long? TotalCount
2019-06-13 09:04:46 +00:00
{
set
2019-06-13 09:04:46 +00:00
{
if (HttpContextAccessor.HttpContext.Items.ContainsKey(nameof(TotalCount)))
HttpContextAccessor.HttpContext.Items[nameof(TotalCount)] = value;
else
HttpContextAccessor.HttpContext.Items.Add(nameof(TotalCount), value);
2019-06-13 09:04:46 +00:00
}
}
/// <summary>
/// Filters responce to specific type from request parameter "type"
/// </summary>
/// <remarks>
/// The type name is retrieved from [DataContractAttribute] name
/// </remarks>
public string FilterToType { get; set; }
/// <summary>
/// Gets count to get item from collection. Request parameter "count"
/// </summary>
/// <remarks>
/// Don't forget to call _context.SetDataPaginated() to prevent SmartList from filtering response if you fetch data from DB with TOP & COUNT
/// </remarks>
public long Count { get; set; }
2019-08-15 12:04:42 +00:00
2019-06-13 09:04:46 +00:00
/// <summary>
/// Gets start index to get item from collection. Request parameter "startIndex"
/// </summary>
/// <remarks>
/// Don't forget to call _context.SetDataPaginated() to prevent SmartList from filtering response if you fetch data from DB with TOP & COUNT
/// </remarks>
public long StartIndex { get; set; }
2019-06-13 09:04:46 +00:00
/// <summary>
/// Gets field to sort by from request parameter "sortBy"
/// </summary>
public string SortBy { get; set; }
/// <summary>
/// Gets field to filter from request parameter "filterBy"
/// </summary>
public string FilterBy { get; set; }
2019-08-15 12:04:42 +00:00
2019-06-13 09:04:46 +00:00
/// <summary>
/// Gets filter operation from request parameter "filterOp"
/// can be one of the following:"contains","equals","startsWith","present"
/// </summary>
public string FilterOp { get; set; }
/// <summary>
/// Gets value to filter from request parameter "filterValue"
/// </summary>
public string FilterValue { get; set; }
/// <summary>
/// Sort direction. From request parameter "sortOrder" can be "descending" or "ascending"
/// Like ...&sortOrder=descending&...
/// </summary>
public bool SortDescending { get; set; }
2019-08-15 12:04:42 +00:00
2019-06-13 09:04:46 +00:00
/// <summary>
/// Gets value to filter from request parameter "updatedSince"
/// </summary>
public DateTime UpdatedSince { get; set; }
internal long SpecifiedCount { get; private set; }
internal long SpecifiedStartIndex { get; set; }
2019-06-13 09:04:46 +00:00
private Tenant _tenant;
private static int s_maxCount = 1000;
private readonly SecurityContext _securityContext;
private readonly TenantManager _tenantManager;
2019-06-13 09:04:46 +00:00
public ApiContext(IHttpContextAccessor httpContextAccessor, SecurityContext securityContext, TenantManager tenantManager)
{
_securityContext = securityContext;
_tenantManager = tenantManager;
HttpContextAccessor = httpContextAccessor;
if (httpContextAccessor.HttpContext == null) return;
Count = s_maxCount;
var query = HttpContextAccessor.HttpContext.Request.Query;
//Try parse values
var count = query.GetRequestValue("count");
if (!string.IsNullOrEmpty(count) && ulong.TryParse(count, out var countParsed))
Count = Math.Min((long)countParsed, s_maxCount); //Count specified and valid
var startIndex = query.GetRequestValue("startIndex");
if (startIndex != null && long.TryParse(startIndex, out var startIndexParsed))
{
StartIndex = Math.Max(0, startIndexParsed);
SpecifiedStartIndex = StartIndex;
}
var sortOrder = query.GetRequestValue("sortOrder");
if ("descending".Equals(sortOrder)) SortDescending = true;
FilterToType = query.GetRequestValue("type");
SortBy = query.GetRequestValue("sortBy");
FilterBy = query.GetRequestValue("filterBy");
FilterOp = query.GetRequestValue("filterOp");
FilterValue = query.GetRequestValue("filterValue");
FilterValues = query.GetRequestArray("filterValue");
Fields = query.GetRequestArray("fields");
var updatedSince = query.GetRequestValue("updatedSince");
if (updatedSince != null) UpdatedSince = Convert.ToDateTime(updatedSince);
}
2019-06-13 09:04:46 +00:00
/// <summary>
/// Set mark that data is already paginated and additional filtering is not needed
/// </summary>
public ApiContext SetDataPaginated()
{
//Count = 0;//We always ask for +1 count so smart list should cut it
StartIndex = 0;
2019-06-13 09:04:46 +00:00
return this;
}
public ApiContext SetDataSorted()
{
SortBy = string.Empty;
2019-06-13 09:04:46 +00:00
return this;
}
2019-08-15 12:04:42 +00:00
2019-06-13 09:04:46 +00:00
public ApiContext SetDataFiltered()
{
FilterBy = string.Empty;
FilterOp = string.Empty;
FilterValue = string.Empty;
2019-06-13 09:04:46 +00:00
return this;
}
public ApiContext SetTotalCount(long totalCollectionCount)
{
TotalCount = totalCollectionCount;
return this;
2019-07-29 10:51:14 +00:00
}
public ApiContext SetCount(int count)
2019-06-13 09:04:46 +00:00
{
2020-05-17 13:08:20 +00:00
HttpContextAccessor.HttpContext.Items[nameof(Count)] = count;
return this;
2019-06-13 09:04:46 +00:00
}
public object Clone() => MemberwiseClone();
2019-06-13 09:04:46 +00:00
public override string ToString() => string.Format("C:{0},S:{1},So:{2},Sd:{3},Fb;{4},Fo:{5},Fv:{6},Us:{7},Ftt:{8}", Count, StartIndex,
2019-06-13 09:04:46 +00:00
SortBy, SortDescending, FilterBy, FilterOp, FilterValue, UpdatedSince.Ticks, FilterToType);
2019-09-16 09:21:10 +00:00
public void AuthByClaim()
{
2020-05-17 13:08:20 +00:00
var id = HttpContextAccessor.HttpContext.User.Claims.FirstOrDefault(r => r.Type == ClaimTypes.Sid);
if (Guid.TryParse(id?.Value, out var userId)) _securityContext.AuthenticateMeWithoutCookie(userId);
2019-09-16 09:21:10 +00:00
}
2019-06-13 09:04:46 +00:00
}
2019-06-13 15:01:29 +00:00
public static class QueryExtension
{
internal static string[] GetRequestArray(this IQueryCollection query, string key)
{
if (query != null)
{
var values = query[key + "[]"];
if (values.Count > 0) return values;
values = query[key];
if (values.Count > 0)
{
if (values.Count == 1) //If it's only one element
{
//Try split
if (!string.IsNullOrEmpty(values[0]))
return values[0].Split(',');
}
return values;
}
}
return null;
}
public static string GetRequestValue(this IQueryCollection query, string key)
{
var reqArray = query.GetRequestArray(key);
return reqArray?.FirstOrDefault();
}
}
2019-06-13 15:01:29 +00:00
public static class ApiContextExtension
{
public static bool Check(this ApiContext context, string field) =>
context?.Fields == null || (context.Fields != null && context.Fields.Contains(field, StringComparer.InvariantCultureIgnoreCase));
2019-06-13 15:01:29 +00:00
}
2019-06-13 09:04:46 +00:00
}