34 lines
1.3 KiB
C#
34 lines
1.3 KiB
C#
// Copyright (c) 2026 Duplicati Inc. All rights reserved.
|
|
|
|
using Duplicati.Library.Common.IO;
|
|
using Google.Apis.PeopleService.v1.Data;
|
|
using System.Text.Json;
|
|
|
|
namespace Duplicati.Proprietary.GoogleWorkspace.SourceItems;
|
|
|
|
internal class ContactGroupSourceEntry(string parentPath, ContactGroup group)
|
|
: StreamResourceEntryBase(SystemIO.IO_OS.PathCombine(parentPath, (group.FormattedName ?? group.Name) + ".json"), DateTime.UnixEpoch, DateTime.UnixEpoch)
|
|
{
|
|
public override long Size => -1;
|
|
|
|
public override Task<Stream> OpenRead(CancellationToken cancellationToken)
|
|
{
|
|
var json = JsonSerializer.Serialize(group, new JsonSerializerOptions { WriteIndented = true });
|
|
return Task.FromResult<Stream>(new MemoryStream(System.Text.Encoding.UTF8.GetBytes(json)));
|
|
}
|
|
|
|
public override Task<Dictionary<string, string?>> GetMinorMetadata(CancellationToken cancellationToken)
|
|
{
|
|
return Task.FromResult(new Dictionary<string, string?>
|
|
{
|
|
{ "gsuite:v", "1" },
|
|
{ "gsuite:Type", SourceItemType.ContactGroup.ToString() },
|
|
{ "gsuite:Name", group.FormattedName ?? group.Name },
|
|
{ "gsuite:Id", group.ResourceName },
|
|
{ "gsuite:Etag", group.ETag }
|
|
}
|
|
.Where(kv => !string.IsNullOrEmpty(kv.Value))
|
|
.ToDictionary(kv => kv.Key, kv => kv.Value));
|
|
}
|
|
}
|