DocSpace-client/common/ASC.Api.Core/Model/EmployeeWraperFull.cs

292 lines
10 KiB
C#
Raw Normal View History

2019-06-11 15:20:04 +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.
*
*/
using System;
using System.Collections.Generic;
using System.Linq;
2020-02-25 08:02:13 +00:00
using System.Linq.Expressions;
2020-02-17 08:58:14 +00:00
2019-06-13 09:04:46 +00:00
using ASC.Api.Core;
2020-02-17 08:58:14 +00:00
using ASC.Common;
2019-06-11 15:20:04 +00:00
using ASC.Core;
2020-02-25 08:02:13 +00:00
using ASC.Core.Common.EF;
2019-06-11 15:20:04 +00:00
using ASC.Core.Users;
2019-09-09 12:56:33 +00:00
using ASC.Web.Core;
2019-06-11 15:20:04 +00:00
using ASC.Web.Core.Users;
2019-09-19 15:55:44 +00:00
using ASC.Web.Studio.Utility;
2019-06-11 15:20:04 +00:00
namespace ASC.Web.Api.Models
{
public class EmployeeWraperFull : EmployeeWraper
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string UserName { get; set; }
public string Email { get; set; }
public List<Contact> Contacts { get; set; }
2019-06-11 15:20:04 +00:00
2019-06-13 09:25:53 +00:00
public ApiDateTime Birthday { get; set; }
2019-06-11 15:20:04 +00:00
public string Sex { get; set; }
public EmployeeStatus Status { get; set; }
public EmployeeActivationStatus ActivationStatus { get; set; }
2019-06-13 09:25:53 +00:00
public ApiDateTime Terminated { get; set; }
2019-06-11 15:20:04 +00:00
public string Department { get; set; }
2019-06-13 09:25:53 +00:00
public ApiDateTime WorkFrom { get; set; }
2019-06-11 15:20:04 +00:00
public List<GroupWrapperSummary> Groups { get; set; }
public string Location { get; set; }
public string Notes { get; set; }
public string AvatarMax { get; set; }
2019-06-11 15:20:04 +00:00
public string AvatarMedium { get; set; }
public string Avatar { get; set; }
public bool IsAdmin { get; set; }
public bool IsLDAP { get; set; }
public List<string> ListAdminModules { get; set; }
public bool IsOwner { get; set; }
public bool IsVisitor { get; set; }
public string CultureName { get; set; }
public string MobilePhone { get; set; }
2019-06-11 15:20:04 +00:00
public MobilePhoneActivationStatus MobilePhoneActivationStatus { get; set; }
2019-06-11 15:20:04 +00:00
public bool IsSSO { get; set; }
public new static EmployeeWraperFull GetSample()
2019-06-11 15:20:04 +00:00
{
return new EmployeeWraperFull
{
Avatar = "url to big avatar",
AvatarSmall = "url to small avatar",
AvatarMax = "url to max avatar",
Contacts = new List<Contact> { Contact.GetSample() },
Email = "my@gmail.com",
FirstName = "Mike",
Id = Guid.Empty,
IsAdmin = false,
ListAdminModules = new List<string> { "projects", "crm" },
UserName = "Mike.Zanyatski",
LastName = "Zanyatski",
Title = "Manager",
Groups = new List<GroupWrapperSummary> { GroupWrapperSummary.GetSample() },
AvatarMedium = "url to medium avatar",
Birthday = ApiDateTime.GetSample(),
Department = "Marketing",
Location = "Palo Alto",
Notes = "Notes to worker",
Sex = "male",
Status = EmployeeStatus.Active,
WorkFrom = ApiDateTime.GetSample(),
Terminated = ApiDateTime.GetSample(),
CultureName = "en-EN",
IsLDAP = false,
IsSSO = false
};
2019-06-11 15:20:04 +00:00
}
}
2019-06-11 15:20:04 +00:00
2020-10-19 15:53:15 +00:00
[Scope]
public class EmployeeWraperFullHelper : EmployeeWraperHelper
{
2020-02-25 12:21:48 +00:00
private ApiContext Context { get; }
private WebItemSecurity WebItemSecurity { get; }
private ApiDateTimeHelper ApiDateTimeHelper { get; }
public EmployeeWraperFullHelper(
ApiContext context,
UserManager userManager,
UserPhotoManager userPhotoManager,
2019-09-17 15:38:06 +00:00
WebItemSecurity webItemSecurity,
2019-09-24 10:32:12 +00:00
CommonLinkUtility commonLinkUtility,
2019-12-03 15:20:21 +00:00
DisplayUserSettingsHelper displayUserSettingsHelper,
2020-02-25 12:21:48 +00:00
ApiDateTimeHelper apiDateTimeHelper)
: base(context, displayUserSettingsHelper, userPhotoManager, commonLinkUtility, userManager)
2019-06-11 15:20:04 +00:00
{
Context = context;
WebItemSecurity = webItemSecurity;
2020-02-25 12:21:48 +00:00
ApiDateTimeHelper = apiDateTimeHelper;
}
2019-06-11 15:20:04 +00:00
2020-02-25 08:02:13 +00:00
public static Expression<Func<User, UserInfo>> GetExpression(ApiContext apiContext)
{
if (apiContext?.Fields == null) return null;
var newExpr = Expression.New(typeof(UserInfo));
//i => new UserInfo { ID = i.id }
var parameter = Expression.Parameter(typeof(User), "i");
var bindExprs = new List<MemberAssignment>();
if (apiContext.Check("Id"))
{
bindExprs.Add(Expression.Bind(typeof(UserInfo).GetProperty("ID"), Expression.Property(parameter, typeof(User).GetProperty("Id"))));
}
var body = Expression.MemberInit(newExpr, bindExprs);
var lambda = Expression.Lambda<Func<User, UserInfo>>(body, parameter);
return lambda;
}
public EmployeeWraperFull GetFull(UserInfo userInfo)
{
var result = new EmployeeWraperFull
{
UserName = userInfo.UserName,
FirstName = userInfo.FirstName,
LastName = userInfo.LastName,
2020-02-25 12:21:48 +00:00
Birthday = ApiDateTimeHelper.Get(userInfo.BirthDate),
Status = userInfo.Status,
ActivationStatus = userInfo.ActivationStatus & ~EmployeeActivationStatus.AutoGenerated,
2020-02-25 12:21:48 +00:00
Terminated = ApiDateTimeHelper.Get(userInfo.TerminatedDate),
WorkFrom = ApiDateTimeHelper.Get(userInfo.WorkFromDate),
Email = userInfo.Email,
IsVisitor = userInfo.IsVisitor(UserManager),
IsAdmin = userInfo.IsAdmin(UserManager),
IsOwner = userInfo.IsOwner(Context.Tenant),
IsLDAP = userInfo.IsLDAP(),
IsSSO = userInfo.IsSSO()
};
2019-06-11 15:20:04 +00:00
Init(result, userInfo);
2019-06-11 15:20:04 +00:00
if (userInfo.Sex.HasValue)
{
result.Sex = userInfo.Sex.Value ? "male" : "female";
}
2019-06-11 15:20:04 +00:00
if (!string.IsNullOrEmpty(userInfo.Location))
{
result.Location = userInfo.Location;
2019-06-11 15:20:04 +00:00
}
if (!string.IsNullOrEmpty(userInfo.Notes))
{
result.Notes = userInfo.Notes;
2019-06-11 15:20:04 +00:00
}
if (!string.IsNullOrEmpty(userInfo.MobilePhone))
{
result.MobilePhone = userInfo.MobilePhone;
2019-06-11 15:20:04 +00:00
}
result.MobilePhoneActivationStatus = userInfo.MobilePhoneActivationStatus;
2019-06-11 15:20:04 +00:00
if (!string.IsNullOrEmpty(userInfo.CultureName))
{
result.CultureName = userInfo.CultureName;
2019-06-11 15:20:04 +00:00
}
FillConacts(result, userInfo);
2019-06-11 15:20:04 +00:00
if (Context.Check("groups") || Context.Check("department"))
2019-06-13 09:04:46 +00:00
{
var groups = UserManager.GetUserGroups(userInfo.ID)
.Select(x => new GroupWrapperSummary(x, UserManager))
2019-08-08 09:26:58 +00:00
.ToList();
2019-06-11 15:20:04 +00:00
2019-08-08 09:26:58 +00:00
if (groups.Count > 0)
2019-06-11 15:20:04 +00:00
{
result.Groups = groups;
result.Department = string.Join(", ", result.Groups.Select(d => d.Name.HtmlEncode()));
2019-06-11 15:20:04 +00:00
}
else
{
result.Department = "";
2019-06-11 15:20:04 +00:00
}
2019-06-13 09:04:46 +00:00
}
2019-06-11 15:20:04 +00:00
2019-07-24 12:34:23 +00:00
var userInfoLM = userInfo.LastModified.GetHashCode();
if (Context.Check("avatarMax"))
{
result.AvatarMax = UserPhotoManager.GetMaxPhotoURL(userInfo.ID, out var isdef) + (isdef ? "" : $"?_={userInfoLM}");
}
if (Context.Check("avatarMedium"))
2019-06-13 09:04:46 +00:00
{
result.AvatarMedium = UserPhotoManager.GetMediumPhotoURL(userInfo.ID, out var isdef) + (isdef ? "" : $"?_={userInfoLM}");
2019-06-13 09:04:46 +00:00
}
2019-06-11 15:20:04 +00:00
if (Context.Check("avatar"))
2019-06-13 09:04:46 +00:00
{
result.Avatar = UserPhotoManager.GetBigPhotoURL(userInfo.ID, out var isdef) + (isdef ? "" : $"?_={userInfoLM}");
2019-06-13 09:04:46 +00:00
}
2019-06-11 15:20:04 +00:00
if (Context.Check("listAdminModules"))
2019-06-13 09:04:46 +00:00
{
var listAdminModules = userInfo.GetListAdminModules(WebItemSecurity);
2019-06-11 15:20:04 +00:00
if (listAdminModules.Any())
result.ListAdminModules = listAdminModules;
2019-06-13 09:04:46 +00:00
}
2019-06-11 15:20:04 +00:00
return result;
2019-06-11 15:20:04 +00:00
}
private void FillConacts(EmployeeWraperFull employeeWraperFull, UserInfo userInfo)
2019-06-11 15:20:04 +00:00
{
2019-11-25 09:49:12 +00:00
if (userInfo.ContactsList == null) return;
2019-09-02 15:09:45 +00:00
2019-06-11 15:20:04 +00:00
var contacts = new List<Contact>();
2019-09-02 15:09:45 +00:00
2019-11-25 09:49:12 +00:00
for (var i = 0; i < userInfo.ContactsList.Count; i += 2)
2019-06-11 15:20:04 +00:00
{
2019-11-25 09:49:12 +00:00
if (i + 1 < userInfo.ContactsList.Count)
2019-06-11 15:20:04 +00:00
{
2019-11-25 09:49:12 +00:00
contacts.Add(new Contact(userInfo.ContactsList[i], userInfo.ContactsList[i + 1]));
2019-06-11 15:20:04 +00:00
}
}
if (contacts.Any())
{
employeeWraperFull.Contacts = contacts;
2019-06-11 15:20:04 +00:00
}
}
}
2019-06-11 15:20:04 +00:00
}