// Copyright (C) 2025, The Duplicati Team // https://duplicati.com, hello@duplicati.com // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. #nullable enable using System.Linq; using System.Threading.Tasks; using Duplicati.Library.Common.IO; using Duplicati.Library.Interface; namespace Duplicati.Library.Main.Operation; /// /// Handler for listing file versions /// internal static class ListFileVersionsHandler { /// /// Runs the list file versions operation /// /// The options to use /// The result class /// The paths to list versions for /// The offset to start listing from /// The maximum number of results to return /// A task representing the asynchronous operation public async static Task RunAsync(Options options, ListFileVersionsResults result, string[] paths, long offset, long limit) { if (!System.IO.File.Exists(options.Dbpath) || options.NoLocalDb) throw new UserInformationException("No local database found, this operation requires a local database", "NoLocalDatabase"); await using var db = await Database.LocalListDatabase.CreateAsync(options.Dbpath, null, result.TaskControl.ProgressToken) .ConfigureAwait(false); long[]? filesetIds = null; if (!options.AllVersions) { filesetIds = await db .GetFilesetIDs(options.Time, options.Version, false, result.TaskControl.ProgressToken) .ToArrayAsync(cancellationToken: result.TaskControl.ProgressToken) .ConfigureAwait(false); if (filesetIds.Length == 0) throw new UserInformationException("No filesets found", "NoFilesetsFound"); } if (paths == null || paths.Length == 0) throw new UserInformationException("No path specified", "NoPathSpecified"); paths = paths.Select(path => Util.AppendDirSeparator(path)).ToArray(); result.FileVersions = await db .ListFileVersions(paths, filesetIds, offset, limit, result.TaskControl.ProgressToken) .ConfigureAwait(false); } }