DocSpace-client/products/ASC.People/Server/Api/RemoveUserDataController.cs
2022-04-14 22:42:15 +03:00

140 lines
5.1 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 SecurityContext = ASC.Core.SecurityContext;
namespace ASC.People.Api;
public class RemoveUserDataController : ApiControllerBase
{
private Tenant Tenant => _apiContext.Tenant;
private readonly PermissionContext _permissionContext;
private readonly UserManager _userManager;
private readonly QueueWorkerRemove _queueWorkerRemove;
private readonly SecurityContext _securityContext;
private readonly StudioNotifyService _studioNotifyService;
private readonly MessageService _messageService;
private readonly AuthContext _authContext;
private readonly ApiContext _apiContext;
public RemoveUserDataController(
PermissionContext permissionContext,
UserManager userManager,
QueueWorkerRemove queueWorkerRemove,
SecurityContext securityContext,
StudioNotifyService studioNotifyService,
MessageService messageService,
AuthContext authContext,
ApiContext apiContext)
{
_permissionContext = permissionContext;
_userManager = userManager;
_queueWorkerRemove = queueWorkerRemove;
_securityContext = securityContext;
_studioNotifyService = studioNotifyService;
_messageService = messageService;
_authContext = authContext;
_apiContext = apiContext;
}
[Read(@"remove/progress")]
public RemoveProgressItem GetRemoveProgress(Guid userId)
{
_permissionContext.DemandPermissions(Constants.Action_EditUser);
return _queueWorkerRemove.GetProgressItemStatus(Tenant.Id, userId);
}
[Update("self/delete")]
public object SendInstructionsToDelete()
{
var user = _userManager.GetUsers(_securityContext.CurrentAccount.ID);
if (user.IsLDAP())
{
throw new SecurityException();
}
_studioNotifyService.SendMsgProfileDeletion(user);
_messageService.Send(MessageAction.UserSentDeleteInstructions);
return string.Format(Resource.SuccessfullySentNotificationDeleteUserInfoMessage, "<b>" + user.Email + "</b>");
}
[Create(@"remove/start")]
public RemoveProgressItem StartRemoveFromBody([FromBody] TerminateRequestDto inDto)
{
return StartRemove(inDto);
}
[Create(@"remove/start")]
[Consumes("application/x-www-form-urlencoded")]
public RemoveProgressItem StartRemoveFromForm([FromForm] TerminateRequestDto inDto)
{
return StartRemove(inDto);
}
[Update(@"remove/terminate")]
public void TerminateRemoveFromBody([FromBody] TerminateRequestDto inDto)
{
TerminateRemove(inDto);
}
[Update(@"remove/terminate")]
[Consumes("application/x-www-form-urlencoded")]
public void TerminateRemoveFromForm([FromForm] TerminateRequestDto inDto)
{
TerminateRemove(inDto);
}
private void TerminateRemove(TerminateRequestDto inDto)
{
_permissionContext.DemandPermissions(Constants.Action_EditUser);
_queueWorkerRemove.Terminate(Tenant.Id, inDto.UserId);
}
private RemoveProgressItem StartRemove(TerminateRequestDto inDto)
{
_permissionContext.DemandPermissions(Constants.Action_EditUser);
var user = _userManager.GetUsers(inDto.UserId);
if (user == null || user.Id == Constants.LostUser.Id)
{
throw new ArgumentException("User with id = " + inDto.UserId + " not found");
}
if (user.IsOwner(Tenant) || user.IsMe(_authContext) || user.Status != EmployeeStatus.Terminated)
{
throw new ArgumentException("Can not delete user with id = " + inDto.UserId);
}
return _queueWorkerRemove.Start(Tenant.Id, user, _securityContext.CurrentAccount.ID, true);
}
}