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

130 lines
4.0 KiB
C#
Raw Normal View History

2019-06-07 08:59:07 +00:00
namespace ASC.Web.Core.Calendars
{
public abstract class BaseEvent : IEvent, ICloneable
{
2021-05-27 17:13:24 +00:00
public virtual TimeZoneInfo TimeZone { get; set; }
2019-06-07 08:59:07 +00:00
2022-01-24 09:57:01 +00:00
protected BaseEvent()
2019-06-07 08:59:07 +00:00
{
this.Context = new EventContext();
this.AlertType = EventAlertType.Never;
this.SharingOptions = new SharingOptions();
this.RecurrenceRule = new RecurrenceRule();
}
#region IEvent Members
public SharingOptions SharingOptions { get; set; }
public virtual EventAlertType AlertType { get; set; }
public virtual bool AllDayLong { get; set; }
public virtual string CalendarId { get; set; }
public virtual string Description { get; set; }
public virtual string Id { get; set; }
public virtual string Uid { get; set; }
public virtual string Name { get; set; }
public virtual Guid OwnerId { get; set; }
public virtual DateTime UtcEndDate { get; set; }
public virtual DateTime UtcStartDate { get; set; }
2019-08-15 12:04:42 +00:00
2019-06-07 08:59:07 +00:00
public virtual DateTime UtcUpdateDate { get; set; }
public virtual EventContext Context { get; set; }
public virtual RecurrenceRule RecurrenceRule { get; set; }
public virtual EventStatus Status { get; set; }
#endregion
#region ICloneable Members
public object Clone()
{
var e = (BaseEvent)this.MemberwiseClone();
e.Context = (EventContext)this.Context.Clone();
e.RecurrenceRule = (RecurrenceRule)this.RecurrenceRule.Clone();
e.SharingOptions = (SharingOptions)this.SharingOptions.Clone();
return e;
}
#endregion
#region IiCalFormatView Members
public virtual string ToiCalFormat()
{
2019-08-15 13:03:57 +00:00
var sb = new StringBuilder();
2019-06-07 08:59:07 +00:00
sb.AppendLine("BEGIN:VEVENT");
2022-01-14 13:12:37 +00:00
var id = string.IsNullOrEmpty(Uid) ? Id : Uid;
sb.AppendLine($"UID:{id}");
sb.AppendLine($"SUMMARY:{Name}");
2019-06-07 08:59:07 +00:00
if (!string.IsNullOrEmpty(this.Description))
2022-01-14 13:12:37 +00:00
sb.AppendLine($"DESCRIPTION:{Description.Replace("\n", "\\n")}");
2019-06-07 08:59:07 +00:00
if (this.AllDayLong)
{
DateTime startDate = this.UtcStartDate, endDate = this.UtcEndDate;
if (this.TimeZone != null)
{
if (this.UtcStartDate != DateTime.MinValue && startDate.Kind == DateTimeKind.Utc)
startDate = startDate.Add(TimeZone.GetOffset());
if (this.UtcEndDate != DateTime.MinValue && endDate.Kind == DateTimeKind.Utc)
endDate = endDate.Add(TimeZone.GetOffset());
}
if (this.UtcStartDate != DateTime.MinValue)
2022-01-14 13:12:37 +00:00
{
var start = startDate.ToString("yyyyMMdd");
sb.AppendLine($"DTSTART;VALUE=DATE:{start}");
}
2019-06-07 08:59:07 +00:00
if (this.UtcEndDate != DateTime.MinValue)
2022-01-14 13:12:37 +00:00
{
var end = endDate.AddDays(1).ToString("yyyyMMdd");
sb.AppendLine($"DTEND;VALUE=DATE:{end}");
}
2019-06-07 08:59:07 +00:00
}
else
{
if (this.UtcStartDate != DateTime.MinValue)
2022-01-14 13:12:37 +00:00
{
var utcStart = UtcStartDate.ToString("yyyyMMdd'T'HHmmss'Z'");
sb.AppendLine($"DTSTART:{utcStart}");
}
2019-06-07 08:59:07 +00:00
if (this.UtcEndDate != DateTime.MinValue)
2022-01-14 13:12:37 +00:00
{
var utcEnd = UtcEndDate.ToString("yyyyMMdd'T'HHmmss'Z'");
sb.AppendLine($"DTEND:{utcEnd}");
}
2019-06-07 08:59:07 +00:00
}
2019-08-15 12:04:42 +00:00
2019-06-07 08:59:07 +00:00
if (this.RecurrenceRule != null)
sb.AppendLine(this.RecurrenceRule.ToiCalFormat());
sb.Append("END:VEVENT");
return sb.ToString();
}
2019-08-15 12:04:42 +00:00
#endregion
2019-06-07 08:59:07 +00:00
}
}