Files
Kenneth Skovhede 910c56b3c4 Reworked the use of scopes.
Instead of requesting all scopes up front, each sub-section of the backup/restore will request the permissions that are relevant for the operation.

The effect is that it is not required to grant all permissions to get a backup running. If permissions are failing, that part of the backup will generate warnings for items that are excluded.
2026-02-15 22:03:57 +01:00

36 lines
1.4 KiB
C#

// 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<Stream> 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<Dictionary<string, string?>> GetMinorMetadata(CancellationToken cancellationToken)
{
return Task.FromResult(new Dictionary<string, string?>
{
{ "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));
}
}