DocSpace-buildtools/web/ASC.Web.Core/Calendars/SharingOptions.cs

60 lines
1.6 KiB
C#
Raw Normal View History

using Constants = ASC.Core.Users.Constants;
2019-06-07 08:59:07 +00:00
namespace ASC.Web.Core.Calendars
{
public class SharingOptions : ICloneable
{
public class PublicItem
{
public Guid Id { get; set; }
public bool IsGroup { get; set; }
}
public bool SharedForAll { get; set; }
public List<PublicItem> PublicItems { get; set; }
public SharingOptions()
{
this.PublicItems = new List<PublicItem>();
}
public bool PublicForItem(Guid itemId, UserManager userManager)
2019-06-07 08:59:07 +00:00
{
if (SharedForAll)
return true;
2019-08-15 12:04:42 +00:00
if (PublicItems.Exists(i => i.Id.Equals(itemId)))
2019-06-07 08:59:07 +00:00
return true;
var u = userManager.GetUsers(itemId);
if (u != null && u.Id != ASC.Core.Users.Constants.LostUser.Id)
2019-06-07 08:59:07 +00:00
{
var userGroups = new List<GroupInfo>(userManager.GetUserGroups(itemId));
userGroups.AddRange(userManager.GetUserGroups(itemId, Constants.SysGroupCategoryId));
2019-06-07 08:59:07 +00:00
return userGroups.Exists(g => PublicItems.Exists(i => i.Id.Equals(g.ID)));
}
return false;
}
#region ICloneable Members
public object Clone()
{
2019-08-15 13:35:18 +00:00
var o = new SharingOptions
{
SharedForAll = this.SharedForAll
};
2019-08-15 12:04:42 +00:00
foreach (var i in this.PublicItems)
2019-06-07 08:59:07 +00:00
o.PublicItems.Add(new PublicItem() { Id = i.Id, IsGroup = i.IsGroup });
2019-08-15 12:04:42 +00:00
2019-06-07 08:59:07 +00:00
return o;
}
#endregion
}
2019-08-15 12:04:42 +00:00
2019-06-07 08:59:07 +00:00
}