Files

60 lines
2.4 KiB
C#

// Copyright (c) 2026 Duplicati Inc. All rights reserved.
using Duplicati.Library.Common.IO;
using Duplicati.Library.Interface;
using Google.Apis.Calendar.v3.Data;
using Google.Apis.Calendar.v3;
using System.Runtime.CompilerServices;
using Google.Apis.Drive.v3;
namespace Duplicati.Proprietary.GoogleWorkspace.SourceItems;
internal class CalendarSourceEntry(string parentPath, string userId, CalendarListEntry calendar, CalendarService service, DriveService driveService, CalendarService? aclService)
: MetaEntryBase(Util.AppendDirSeparator(SystemIO.IO_OS.PathCombine(parentPath, calendar.Id)), null, null)
{
public override async IAsyncEnumerable<ISourceProviderEntry> Enumerate([EnumeratorCancellation] CancellationToken cancellationToken)
{
if (cancellationToken.IsCancellationRequested) yield break;
yield return new CalendarMetadataSourceEntry(this.Path, calendar);
if (cancellationToken.IsCancellationRequested) yield break;
if (aclService != null)
yield return new CalendarAclSourceEntry(this.Path, calendar.Id, aclService);
var request = service.Events.List(calendar.Id);
string? nextPageToken = null;
do
{
if (cancellationToken.IsCancellationRequested) yield break;
request.PageToken = nextPageToken;
var events = await request.ExecuteAsync(cancellationToken);
if (events.Items != null)
{
foreach (var evt in events.Items)
{
if (cancellationToken.IsCancellationRequested) yield break;
yield return new CalendarEventSourceEntry(this.Path, evt, driveService);
}
}
nextPageToken = events.NextPageToken;
} while (!string.IsNullOrEmpty(nextPageToken));
}
public override Task<Dictionary<string, string?>> GetMinorMetadata(CancellationToken cancellationToken)
{
return Task.FromResult(new Dictionary<string, string?>
{
{ "gsuite:v", "1" },
{ "gsuite:Type", SourceItemType.Calendar.ToString() },
{ "gsuite:Name", calendar.SummaryOverride ?? calendar.Summary },
{ "gsuite:Id", calendar.Id },
{ "gsuite:Description", calendar.Description },
{ "gsuite:UserId", userId }
}
.Where(kv => !string.IsNullOrEmpty(kv.Value))
.ToDictionary(kv => kv.Key, kv => kv.Value));
}
}