DocSpace-buildtools/products/ASC.Calendar/Server/Models/EventWrapper.cs

309 lines
12 KiB
C#
Raw Normal View History

2020-02-13 09:18:13 +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.Runtime.Serialization;
using ASC.Calendar.ExternalCalendars;
using ASC.Common.Security;
using ASC.Core;
using ASC.Core.Common;
using ASC.Web.Core.Users;
2020-02-13 09:18:13 +00:00
using ASC.Core.Users;
using ASC.Api.Core;
2020-02-13 09:18:13 +00:00
using ASC.Web.Core.Calendars;
namespace ASC.Calendar.Models
{/*
2020-02-13 09:18:13 +00:00
[DataContract(Name = "event", Namespace = "")]
public class EventWrapper
{
private PermissionContext PermissionContext { get; }
private AuthManager Authentication { get; }
private TenantManager TenantManager { get; }
public UserManager UserManager { get; }
public DisplayUserSettingsHelper DisplayUserSettingsHelper { get; }
2020-02-13 09:18:13 +00:00
private TimeZoneInfo _timeZone;
public Guid UserId { get; private set; }
protected IEvent _baseEvent;
private DateTime _utcStartDate = DateTime.MinValue;
private DateTime _utcEndDate = DateTime.MinValue;
private DateTime _utcUpdateDate = DateTime.MinValue;
public EventWrapper(
PermissionContext permissionContext,
AuthManager authentication,
TenantManager tenantManager,
UserManager userManager,
DisplayUserSettingsHelper displayUserSettingsHelper
)
{
PermissionContext = permissionContext;
Authentication = authentication;
TenantManager = tenantManager;
UserManager = userManager;
DisplayUserSettingsHelper = displayUserSettingsHelper;
}
2020-02-13 09:18:13 +00:00
private EventWrapper(IEvent baseEvent, Guid userId, TimeZoneInfo timeZone, DateTime utcStartDate, DateTime utcEndDate, DateTime utcUpdateDate)
:this(baseEvent, userId, timeZone)
{
_utcStartDate = utcStartDate;
_utcEndDate = utcEndDate;
_utcUpdateDate = utcUpdateDate;
}
public EventWrapper(IEvent baseEvent, Guid userId, TimeZoneInfo timeZone)
{
_timeZone = timeZone;
_baseEvent = baseEvent;
this.UserId = userId;
}
public List<EventWrapper> GetList(DateTime utcStartDate, DateTime utcEndDate)
{
var list = new List<EventWrapper>();
if (_baseEvent.UtcStartDate == DateTime.MinValue)
return list;
var difference = _baseEvent.UtcEndDate - _baseEvent.UtcStartDate;
var recurenceDates = new List<DateTime>();
if (_baseEvent.RecurrenceRule.Freq == Frequency.Never)
{
if ((_baseEvent.UtcStartDate <= utcStartDate && _baseEvent.UtcEndDate >= utcStartDate) ||
(_baseEvent.UtcStartDate <= utcEndDate && _baseEvent.UtcEndDate >= utcEndDate) ||
(_baseEvent.UtcStartDate >= utcStartDate && _baseEvent.UtcEndDate <= utcEndDate))
recurenceDates.Add(_baseEvent.UtcStartDate);
}
else
{
recurenceDates = _baseEvent.RecurrenceRule.GetDates(_baseEvent.UtcStartDate, utcStartDate, utcEndDate);
}
foreach (var d in recurenceDates)
{
var endDate = _baseEvent.UtcEndDate;
if (!_baseEvent.UtcEndDate.Equals(DateTime.MinValue))
endDate = d + difference;
list.Add(new EventWrapper(_baseEvent, this.UserId, _timeZone, d, endDate, _baseEvent.UtcUpdateDate));
}
return list;
}
[DataMember(Name = "objectId", Order = 0)]
public string Id { get { return _baseEvent.Id; } }
[DataMember(Name = "uniqueId", Order = 140)]
public string Uid { get { return _baseEvent.Uid; } }
public int TenantId { get; set; }
public bool Todo { get; set; }
[DataMember(Name = "sourceId", Order = 10)]
public string CalendarId { get { return _baseEvent.CalendarId; } }
[DataMember(Name = "title", Order = 20)]
public string Name { get { return _baseEvent.Name; } }
[DataMember(Name = "description", Order = 30)]
public string Description { get { return _baseEvent.Description; } }
[DataMember(Name = "allDay", Order = 60)]
public bool AllDayLong { get { return _baseEvent.AllDayLong; } }
[DataMember(Name = "start", Order = 40)]
public ApiDateTime Start
{
get
{
var startD = _utcStartDate != DateTime.MinValue ? _utcStartDate : _baseEvent.UtcStartDate;
startD =new DateTime(startD.Ticks, DateTimeKind.Utc);
var updateD = _utcUpdateDate != DateTime.MinValue ? _utcUpdateDate : _baseEvent.UtcStartDate;
if (_baseEvent.AllDayLong && _baseEvent.GetType().GetCustomAttributes(typeof(AllDayLongUTCAttribute), true).Length > 0)
return new ApiDateTime(startD, TimeZoneInfo.Utc.GetOffset());
2020-02-13 09:18:13 +00:00
//if(_baseEvent is iCalParser.iCalEvent)
// if (_baseEvent.AllDayLong)
// return new ApiDateTime(startD, TimeZoneInfo.Utc);
// else
// return new ApiDateTime(startD, CoreContext.TenantManager.GetCurrentTenant().TimeZone);
if (_baseEvent.GetType().Namespace == new BusinessObjects.Event().GetType().Namespace)
return new ApiDateTime(startD, _timeZone.GetOffset(false, updateD));
return new ApiDateTime(startD, _timeZone.GetOffset());
2020-02-13 09:18:13 +00:00
}
}
[DataMember(Name = "end", Order = 50)]
public ApiDateTime End
{
get
{
var endD = _utcEndDate!= DateTime.MinValue? _utcEndDate : _baseEvent.UtcEndDate;
endD = new DateTime(endD.Ticks, DateTimeKind.Utc);
var updateD = _utcUpdateDate != DateTime.MinValue ? _utcUpdateDate : _baseEvent.UtcStartDate;
if (_baseEvent.AllDayLong && _baseEvent.GetType().GetCustomAttributes(typeof(AllDayLongUTCAttribute), true).Length > 0)
return new ApiDateTime(endD, TimeZoneInfo.Utc.GetOffset());
2020-02-13 09:18:13 +00:00
//if (_baseEvent is iCalParser.iCalEvent)
// if (_baseEvent.AllDayLong)
// return new ApiDateTime(endD, TimeZoneInfo.Utc);
// else
// return new ApiDateTime(endD, CoreContext.TenantManager.GetCurrentTenant().TimeZone);
if (_baseEvent.GetType().Namespace == new BusinessObjects.Event().GetType().Namespace)
return new ApiDateTime(endD, _timeZone.GetOffset(false, updateD));
return new ApiDateTime(endD, _timeZone.GetOffset());
2020-02-13 09:18:13 +00:00
}
}
[DataMember(Name = "repeatRule", Order = 70)]
public string RepeatRule
{
get
{
return _baseEvent.RecurrenceRule.ToString();
}
}
[DataMember(Name = "alert", Order = 110)]
public EventAlertWrapper Alert
{
get
{
return EventAlertWrapper.ConvertToTypeSurrogated(_baseEvent.AlertType);
}
}
[DataMember(Name = "isShared", Order = 80)]
public bool IsShared
{
get
{
return _baseEvent.SharingOptions.SharedForAll || _baseEvent.SharingOptions.PublicItems.Count > 0;
}
}
[DataMember(Name = "canUnsubscribe", Order = 130)]
public bool CanUnsubscribe
{
get
{
return String.Equals(_baseEvent.CalendarId, SharedEventsCalendar.CalendarId, StringComparison.InvariantCultureIgnoreCase);
}
}
[DataMember(Name = "isEditable", Order = 100)]
public virtual bool IsEditable
{
get
{
if (_baseEvent is ISecurityObject)
return PermissionContext.PermissionResolver.Check(Authentication.GetAccountByID(TenantManager.GetCurrentTenant().TenantId, this.UserId), (ISecurityObject)_baseEvent, null, CalendarAccessRights.FullAccessAction);
2020-02-13 09:18:13 +00:00
return false;
}
}
[DataMember(Name = "permissions", Order = 90)]
public Permissions Permissions
{
get
{
var p = new CalendarPermissions() { Data = PublicItemCollection.GetForEvent(_baseEvent) };
foreach (var item in _baseEvent.SharingOptions.PublicItems)
{
if (item.IsGroup)
p.UserParams.Add(new UserParams() { Id = item.Id, Name = UserManager.GetGroupInfo(item.Id).Name });
2020-02-13 09:18:13 +00:00
else
p.UserParams.Add(new UserParams() { Id = item.Id, Name = UserManager.GetUsers(item.Id).DisplayUserName(DisplayUserSettingsHelper) });
2020-02-13 09:18:13 +00:00
}
return p;
}
}
[DataMember(Name = "owner", Order = 120)]
public UserParams Owner
{
get
{
var owner = new UserParams() { Id = _baseEvent.OwnerId, Name = "" };
if (_baseEvent.OwnerId != Guid.Empty)
owner.Name = UserManager.GetUsers(_baseEvent.OwnerId).DisplayUserName(DisplayUserSettingsHelper);
2020-02-13 09:18:13 +00:00
return owner;
}
}
[DataMember(Name = "status", Order = 150)]
public EventStatus Status
{
get
{
return _baseEvent.Status;
}
}
public static object GetSample()
{
return new
{
owner = UserParams.GetSample(),
permissions = Permissions.GetSample(),
isEditable = false,
сanUnsubscribe = true,
isShared = true,
alert = EventAlertWrapper.GetSample(),
repeatRule = "",
start = new ApiDateTime(DateTime.Now.AddDays(1), TimeZoneInfo.Utc.GetOffset()),
end = new ApiDateTime(DateTime.Now.AddDays(1), TimeZoneInfo.Utc.GetOffset()),
2020-02-13 09:18:13 +00:00
allDay = false,
description = "Event Description",
title = "Event Name",
objectId = "1",
sourceId = "calendarID",
status = (int) EventStatus.Tentative
};
}
}
*/
2020-02-13 09:18:13 +00:00
}