DocSpace-buildtools/products/ASC.People/Server/ApiEngines/ContactsControllerEngine.cs
2022-03-02 21:24:45 +03:00

109 lines
3.1 KiB
C#

using SecurityContext = ASC.Core.SecurityContext;
namespace ASC.People.ApiHelpers;
public class ContactsControllerEngine : PeopleControllerEngine
{
private readonly EmployeeFullDtoHelper _employeeFullDtoHelper;
public ContactsControllerEngine(
UserManager userManager,
AuthContext authContext,
ApiContext apiContext,
PermissionContext permissionContext,
SecurityContext securityContext,
MessageService messageService,
MessageTarget messageTarget,
StudioNotifyService studioNotifyService,
UserPhotoManager userPhotoManager,
IHttpClientFactory httpClientFactory,
DisplayUserSettingsHelper displayUserSettingsHelper,
SetupInfo setupInfo,
EmployeeFullDtoHelper employeeFullDtoHelper)
: base(
userManager,
authContext,
apiContext,
permissionContext,
securityContext,
messageService,
messageTarget,
studioNotifyService,
userPhotoManager,
httpClientFactory,
displayUserSettingsHelper,
setupInfo)
{
_employeeFullDtoHelper = employeeFullDtoHelper;
}
public void DeleteContacts(IEnumerable<Contact> contacts, UserInfo user)
{
_permissionContext.DemandPermissions(new UserSecurityProvider(user.Id), Constants.Action_EditUser);
if (contacts == null)
{
return;
}
if (user.ContactsList == null)
{
user.ContactsList = new List<string>();
}
foreach (var contact in contacts)
{
var index = user.ContactsList.IndexOf(contact.Type);
if (index != -1)
{
//Remove existing
user.ContactsList.RemoveRange(index, 2);
}
}
}
public EmployeeFullDto DeleteMemberContacts(string userid, UpdateMemberRequestDto memberModel)
{
var user = GetUserInfo(userid);
if (_userManager.IsSystemUser(user.Id))
{
throw new SecurityException();
}
DeleteContacts(memberModel.Contacts, user);
_userManager.SaveUserInfo(user);
return _employeeFullDtoHelper.GetFull(user);
}
public EmployeeFullDto SetMemberContacts(string userid, UpdateMemberRequestDto memberModel)
{
var user = GetUserInfo(userid);
if (_userManager.IsSystemUser(user.Id))
{
throw new SecurityException();
}
user.ContactsList.Clear();
UpdateContacts(memberModel.Contacts, user);
_userManager.SaveUserInfo(user);
return _employeeFullDtoHelper.GetFull(user);
}
public EmployeeFullDto UpdateMemberContacts(string userid, UpdateMemberRequestDto memberModel)
{
var user = GetUserInfo(userid);
if (_userManager.IsSystemUser(user.Id))
{
throw new SecurityException();
}
UpdateContacts(memberModel.Contacts, user);
_userManager.SaveUserInfo(user);
return _employeeFullDtoHelper.GetFull(user);
}
}