remove waste asc.files.service

This commit is contained in:
Anton Suhorukov 2022-09-08 13:42:33 +03:00
parent ad09c4a61e
commit 3e515032a9
2 changed files with 0 additions and 377 deletions

View File

@ -1,219 +0,0 @@
// (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 FeedModule = ASC.Feed.Aggregator.Modules.FeedModule;
namespace ASC.Files.Service.Core;
public class FilesModule : FeedModule
{
public override Guid ProductID => WebItemManager.DocumentsProductID;
public override string Name => Feed.Constants.FilesModule;
public override string Product => "documents";
protected override string DbId => "files";
private const string FileItem = "file";
private const string SharedFileItem = "sharedFile";
private readonly FileSecurity _fileSecurity;
private readonly FilesLinkUtility _filesLinkUtility;
private readonly IFileDao<int> _fileDao;
private readonly IFolderDao<int> _folderDao;
private readonly UserManager _userManager;
public FilesModule(
TenantManager tenantManager,
UserManager userManager,
WebItemSecurity webItemSecurity,
FilesLinkUtility filesLinkUtility,
FileSecurity fileSecurity,
IDaoFactory daoFactory)
: base(tenantManager, webItemSecurity)
{
_fileDao = daoFactory.GetFileDao<int>();
_folderDao = daoFactory.GetFolderDao<int>();
_userManager = userManager;
_filesLinkUtility = filesLinkUtility;
_fileSecurity = fileSecurity;
}
public override bool VisibleFor(Feed.Aggregator.Feed feed, object data, Guid userId)
{
if (!_webItemSecurity.IsAvailableForUser(ProductID, userId))
{
return false;
}
var tuple = ((File<int>, SmallShareRecord))data;
var file = tuple.Item1;
var shareRecord = tuple.Item2;
bool targetCond;
if (feed.Target != null)
{
if (shareRecord != null && shareRecord.Owner == userId)
{
return false;
}
var owner = (Guid)feed.Target;
var groupUsers = _userManager.GetUsersByGroup(owner).Select(x => x.Id).ToList();
if (groupUsers.Count == 0)
{
groupUsers.Add(owner);
}
targetCond = groupUsers.Contains(userId);
}
else
{
targetCond = true;
}
return targetCond && _fileSecurity.CanReadAsync(file, userId).Result;
}
public override void VisibleFor(List<Tuple<FeedRow, object>> feed, Guid userId)
{
if (!_webItemSecurity.IsAvailableForUser(ProductID, userId))
{
return;
}
var feed1 = feed.Select(r =>
{
var tuple = ((File<int>, SmallShareRecord))r.Item2;
return new Tuple<FeedRow, File<int>, SmallShareRecord>(r.Item1, tuple.Item1, tuple.Item2);
})
.ToList();
var files = feed1.Where(r => r.Item1.Feed.Target == null).Select(r => r.Item2).ToList();
foreach (var f in feed1.Where(r => r.Item1.Feed.Target != null && !(r.Item3 != null && r.Item3.Owner == userId)))
{
var file = f.Item2;
if (IsTarget(f.Item1.Feed.Target, userId) && !files.Any(r => r.UniqID.Equals(file.UniqID)))
{
files.Add(file);
}
}
var canRead = _fileSecurity.CanReadAsync(files.ToAsyncEnumerable(), userId).ToListAsync().Result.Where(r => r.Item2).ToList();
foreach (var f in feed1)
{
if (IsTarget(f.Item1.Feed.Target, userId) && canRead.Any(r => r.Item1.Id.Equals(f.Item2.Id)))
{
f.Item1.Users.Add(userId);
}
}
}
public override IEnumerable<Tuple<Feed.Aggregator.Feed, object>> GetFeeds(FeedFilter filter)
{
var files = _fileDao.GetFeedsAsync(filter.Tenant, filter.Time.From, filter.Time.To)
.Where(f => f.File.RootFolderType != FolderType.TRASH && f.File.RootFolderType != FolderType.BUNCH)
.ToListAsync().Result;
var folderIDs = files.Select(r => r.File.ParentId).ToList();
var folders = _folderDao.GetFoldersAsync(folderIDs, checkShare: false).ToListAsync().Result;
return files.Select(f => new Tuple<Feed.Aggregator.Feed, object>(ToFeed(f, folders.FirstOrDefault(r => r.Id.Equals(f.File.ParentId))), f));
}
public override IEnumerable<int> GetTenantsWithFeeds(DateTime fromTime)
{
return _fileDao.GetTenantsWithFeedsAsync(fromTime).ToListAsync().Result;
}
private Feed.Aggregator.Feed ToFeed(FileWithShare tuple, Folder<int> rootFolder)
{
var file = tuple.File;
var shareRecord = tuple.ShareRecord;
if (shareRecord != null)
{
var feed = new Feed.Aggregator.Feed(shareRecord.Owner, shareRecord.TimeStamp, true)
{
Item = SharedFileItem,
ItemId = string.Format("{0}_{1}", file.Id, shareRecord.Subject),
ItemUrl = _filesLinkUtility.GetFileRedirectPreviewUrl(file.Id, true),
Product = Product,
Module = Name,
Title = file.Title,
ExtraLocation = rootFolder.FolderType == FolderType.DEFAULT ? rootFolder.Title : string.Empty,
ExtraLocationUrl = rootFolder.FolderType == FolderType.DEFAULT ? _filesLinkUtility.GetFileRedirectPreviewUrl(file.ParentId, false) : string.Empty,
AdditionalInfo = file.ContentLengthString,
Keywords = file.Title,
HasPreview = false,
CanComment = false,
Target = shareRecord.Subject,
GroupId = GetGroupId(SharedFileItem, shareRecord.Owner, file.ParentId.ToString())
};
return feed;
}
var updated = file.Version != 1;
return new Feed.Aggregator.Feed(file.ModifiedBy, file.ModifiedOn, true)
{
Item = FileItem,
ItemId = string.Format("{0}_{1}", file.Id, file.Version > 1 ? 1 : 0),
ItemUrl = _filesLinkUtility.GetFileRedirectPreviewUrl(file.Id, true),
Product = Product,
Module = Name,
Action = updated ? FeedAction.Updated : FeedAction.Created,
Title = file.Title,
ExtraLocation = rootFolder.FolderType == FolderType.DEFAULT ? rootFolder.Title : string.Empty,
ExtraLocationUrl = rootFolder.FolderType == FolderType.DEFAULT ? _filesLinkUtility.GetFileRedirectPreviewUrl(file.ParentId, false) : string.Empty,
AdditionalInfo = file.ContentLengthString,
Keywords = file.Title,
HasPreview = false,
CanComment = false,
Target = null,
GroupId = GetGroupId(FileItem, file.ModifiedBy, file.ParentId.ToString(), updated ? 1 : 0)
};
}
private bool IsTarget(object target, Guid userId)
{
if (target == null)
{
return true;
}
var owner = (Guid)target;
var groupUsers = _userManager.GetUsersByGroup(owner).Select(x => x.Id).ToList();
if (groupUsers.Count == 0)
{
groupUsers.Add(owner);
}
return groupUsers.Contains(userId);
}
}

View File

@ -1,158 +0,0 @@
// (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 FeedModule = ASC.Feed.Aggregator.Modules.FeedModule;
namespace ASC.Files.Service.Core;
public class FoldersModule : FeedModule
{
public override Guid ProductID => WebItemManager.DocumentsProductID;
public override string Name => Feed.Constants.FoldersModule;
public override string Product => "documents";
protected override string DbId => Feed.Constants.FilesDbId;
private const string FolderItem = "folder";
private const string SharedFolderItem = "sharedFolder";
private readonly FileSecurity _fileSecurity;
private readonly FilesLinkUtility _filesLinkUtility;
private readonly IFolderDao<int> _folderDao;
private readonly UserManager _userManager;
public FoldersModule(
TenantManager tenantManager,
UserManager userManager,
WebItemSecurity webItemSecurity,
FilesLinkUtility filesLinkUtility,
FileSecurity fileSecurity,
IDaoFactory daoFactory)
: base(tenantManager, webItemSecurity)
{
_userManager = userManager;
_filesLinkUtility = filesLinkUtility;
_fileSecurity = fileSecurity;
_folderDao = daoFactory.GetFolderDao<int>();
}
public override bool VisibleFor(Feed.Aggregator.Feed feed, object data, Guid userId)
{
if (!_webItemSecurity.IsAvailableForUser(ProductID, userId))
{
return false;
}
var tuple = (Tuple<Folder<int>, SmallShareRecord>)data;
var folder = tuple.Item1;
var shareRecord = tuple.Item2;
bool targetCond;
if (feed.Target != null)
{
if (shareRecord != null && shareRecord.Owner == userId)
{
return false;
}
var owner = (Guid)feed.Target;
var groupUsers = _userManager.GetUsersByGroup(owner).Select(x => x.Id).ToList();
if (groupUsers.Count == 0)
{
groupUsers.Add(owner);
}
targetCond = groupUsers.Contains(userId);
}
else
{
targetCond = true;
}
return targetCond && _fileSecurity.CanReadAsync(folder, userId).Result;
}
public override IEnumerable<int> GetTenantsWithFeeds(DateTime fromTime)
{
return _folderDao.GetTenantsWithFeedsForFoldersAsync(fromTime).ToListAsync().Result;
}
public override IEnumerable<Tuple<Feed.Aggregator.Feed, object>> GetFeeds(FeedFilter filter)
{
var folders = _folderDao.GetFeedsForFoldersAsync(filter.Tenant, filter.Time.From, filter.Time.To)
.Where(f => f.Folder.RootFolderType != FolderType.TRASH && f.Folder.RootFolderType != FolderType.BUNCH)
.ToListAsync().Result;
var parentFolderIDs = folders.Select(r => r.Folder.ParentId).ToList();
var parentFolders = _folderDao.GetFoldersAsync(parentFolderIDs, checkShare: false).ToListAsync().Result;
return folders.Select(f => new Tuple<Feed.Aggregator.Feed, object>(ToFeed(f, parentFolders.FirstOrDefault(r => r.Id.Equals(f.Folder.ParentId))), f));
}
private Feed.Aggregator.Feed ToFeed(FolderWithShare folderWithSecurity, Folder<int> rootFolder)
{
var folder = folderWithSecurity.Folder;
var shareRecord = folderWithSecurity.ShareRecord;
if (shareRecord != null)
{
var feed = new Feed.Aggregator.Feed(shareRecord.Owner, shareRecord.TimeStamp, true)
{
Item = SharedFolderItem,
ItemId = string.Format("{0}_{1}", folder.Id, shareRecord.Subject),
ItemUrl = _filesLinkUtility.GetFileRedirectPreviewUrl(folder.Id, false),
Product = Product,
Module = Name,
Title = folder.Title,
ExtraLocation = rootFolder.FolderType == FolderType.DEFAULT ? rootFolder.Title : string.Empty,
ExtraLocationUrl = rootFolder.FolderType == FolderType.DEFAULT ? _filesLinkUtility.GetFileRedirectPreviewUrl(folder.ParentId, false) : string.Empty,
Keywords = folder.Title,
HasPreview = false,
CanComment = false,
Target = shareRecord.Subject,
GroupId = GetGroupId(SharedFolderItem, shareRecord.Owner, folder.ParentId.ToString())
};
return feed;
}
return new Feed.Aggregator.Feed(folder.CreateBy, folder.CreateOn)
{
Item = FolderItem,
ItemId = folder.Id.ToString(),
ItemUrl = _filesLinkUtility.GetFileRedirectPreviewUrl(folder.Id, false),
Product = Product,
Module = Name,
Title = folder.Title,
ExtraLocation = rootFolder.FolderType == FolderType.DEFAULT ? rootFolder.Title : string.Empty,
ExtraLocationUrl = rootFolder.FolderType == FolderType.DEFAULT ? _filesLinkUtility.GetFileRedirectPreviewUrl(folder.ParentId, false) : string.Empty,
Keywords = folder.Title,
HasPreview = false,
CanComment = false,
Target = null,
GroupId = GetGroupId(FolderItem, folder.CreateBy, folder.ParentId.ToString())
};
}
}