Files

44 lines
1.8 KiB
C#
Raw Permalink Normal View History

// Copyright (c) 2026 Duplicati Inc. All rights reserved.
using Duplicati.Library.Common.IO;
using Duplicati.Library.Interface;
using Google.Apis.Keep.v1.Data;
2026-02-15 22:03:57 +01:00
using Google.Apis.Keep.v1;
using System.Runtime.CompilerServices;
namespace Duplicati.Proprietary.GoogleWorkspace.SourceItems;
2026-02-15 22:03:57 +01:00
internal class KeepNoteSourceEntry(string parentPath, Note note, KeepService keepService)
2026-02-16 13:03:38 +01:00
: MetaEntryBase(Util.AppendDirSeparator(SystemIO.IO_OS.PathCombine(parentPath, note.Name.Split('/').Last())),
note.CreateTimeDateTimeOffset.HasValue ? note.CreateTimeDateTimeOffset.Value.UtcDateTime : DateTime.UnixEpoch,
note.UpdateTimeDateTimeOffset.HasValue ? note.UpdateTimeDateTimeOffset.Value.UtcDateTime : DateTime.UnixEpoch)
{
public override async IAsyncEnumerable<ISourceProviderEntry> Enumerate([EnumeratorCancellation] CancellationToken cancellationToken)
{
if (cancellationToken.IsCancellationRequested) yield break;
yield return new KeepNoteFileSourceEntry(this.Path, note);
if (note.Attachments != null)
{
foreach (var attachment in note.Attachments)
{
if (cancellationToken.IsCancellationRequested) yield break;
2026-02-15 22:03:57 +01:00
yield return new KeepNoteAttachmentSourceEntry(this.Path, attachment, keepService);
}
}
}
public override Task<Dictionary<string, string?>> GetMinorMetadata(CancellationToken cancellationToken)
{
return Task.FromResult(new Dictionary<string, string?>
{
{ "gsuite:v", "1" },
{ "gsuite:Type", SourceItemType.KeepNote.ToString() },
{ "gsuite:Name", note.Title ?? note.Name },
{ "gsuite:Id", note.Name }
}
.Where(kv => !string.IsNullOrEmpty(kv.Value))
.ToDictionary(kv => kv.Key, kv => kv.Value));
}
}