// Copyright (c) 2026 Duplicati Inc. All rights reserved. using Duplicati.Library.Common.IO; using System.Text.Json; namespace Duplicati.Proprietary.GoogleWorkspace.SourceItems; internal class UserProfileSourceEntry(SourceProvider provider, string parentPath, string userId) : StreamResourceEntryBase(SystemIO.IO_OS.PathCombine(parentPath, "profile.json"), DateTime.UnixEpoch, DateTime.UnixEpoch) { public override long Size => -1; public override async Task OpenRead(CancellationToken cancellationToken) { var service = provider.ApiHelper.GetDirectoryServiceForUsers(); var request = service.Users.Get(userId); var user = await request.ExecuteAsync(cancellationToken); var json = JsonSerializer.Serialize(user, new JsonSerializerOptions { WriteIndented = true }); return new MemoryStream(System.Text.Encoding.UTF8.GetBytes(json)); } public override Task> GetMinorMetadata(CancellationToken cancellationToken) { return Task.FromResult(new Dictionary { { "gsuite:v", "1" }, { "gsuite:Type", SourceItemType.UserProfile.ToString() }, { "gsuite:Name", "profile.json" }, { "gsuite:Id", userId } } .Where(kv => !string.IsNullOrEmpty(kv.Value)) .ToDictionary(kv => kv.Key, kv => kv.Value)); } }