// Copyright (c) 2026 Duplicati Inc. All rights reserved. using Duplicati.Library.Common.IO; using Duplicati.Library.Interface; using Google.Apis.Drive.v3.Data; using Google.Apis.Drive.v3; using System.Runtime.CompilerServices; namespace Duplicati.Proprietary.GoogleWorkspace.SourceItems; internal class SharedDriveSourceEntry(SourceProvider provider, string parentPath, string userId, Drive drive, DriveService driveService) : MetaEntryBase(Util.AppendDirSeparator(SystemIO.IO_OS.PathCombine(parentPath, drive.Id)), drive.CreatedTimeDateTimeOffset.HasValue ? drive.CreatedTimeDateTimeOffset.Value.UtcDateTime : DateTime.UnixEpoch, DateTime.UnixEpoch) { public override async IAsyncEnumerable Enumerate([EnumeratorCancellation] CancellationToken cancellationToken) { if (!provider.LicenseApprovedForEntry(parentPath, GoogleRootType.SharedDrives, drive.Id, true)) yield break; if (cancellationToken.IsCancellationRequested) yield break; yield return new SharedDriveMetadataSourceEntry(this.Path, drive); if (cancellationToken.IsCancellationRequested) yield break; yield return new SharedDrivePermissionsSourceEntry(this.Path, drive, driveService); if (cancellationToken.IsCancellationRequested) yield break; yield return new DriveFolderSourceEntry(this.Path, userId, "Content", drive.Id, driveService); } public override Task> GetMinorMetadata(CancellationToken cancellationToken) { return Task.FromResult(new Dictionary { { "gsuite:v", "1" }, { "gsuite:Type", SourceItemType.SharedDrives.ToString() }, // Or specific type? { "gsuite:Name", drive.Name }, { "gsuite:Id", drive.Id }, { "gsuite:Kind", drive.Kind } } .Where(kv => !string.IsNullOrEmpty(kv.Value)) .ToDictionary(kv => kv.Key, kv => kv.Value)); } }