Files
duplicati/Duplicati/CommandLine/SourceTool/GetProvider.cs
T

39 lines
1.9 KiB
C#
Raw Normal View History

2025-02-21 11:51:45 +01:00
// 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.
using Duplicati.Library.DynamicLoader;
using Duplicati.Library.Interface;
namespace Duplicati.CommandLine.SourceTool;
/// <summary>
/// Common methods for the source tool
/// </summary>
public static partial class Common
{
/// <summary>
/// Gets the source provider for the given URL
/// </summary>
/// <param name="url">The URL to get the provider for</param>
/// <returns>The source provider</returns>
2025-02-24 12:50:58 +01:00
public static async Task<ISourceProvider> GetProvider(string url) =>
(await SourceProviderLoader.GetSourceProvider(url, "", [], CancellationToken.None))
2025-02-21 11:51:45 +01:00
?? throw new UserInformationException(string.Format("The source \"{0}\" is not supported", url), "SourceNotSupported");
}