// 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.Collections.Generic; using Duplicati.Library.Interface; namespace Duplicati.Library.Utility.Options; /// /// Helper class for unified use of authentication settings /// public static class AuthOptionsHelper { /// /// The authentication username option, without a prefix /// public const string AuthUsernameOption = "auth-username"; /// /// The authentication password option, without a prefix /// public const string AuthPasswordOption = "auth-password"; /// /// Gets the authentication options /// /// An optional prefix for the options /// The authentication options public static CommandLineArgument[] GetOptions(string? prefix = null) => [ new CommandLineArgument($"{prefix}{AuthUsernameOption}", CommandLineArgument.ArgumentType.String, Strings.AuthSettingsHelper.DescriptionAuthUsernameShort, Strings.AuthSettingsHelper.DescriptionAuthUsernameLong), new CommandLineArgument($"{prefix}{AuthPasswordOption}", CommandLineArgument.ArgumentType.Password, Strings.AuthSettingsHelper.DescriptionAuthPasswordShort, Strings.AuthSettingsHelper.DescriptionAuthPasswordLong) ]; /// /// Parses the authentication options from a dictionary /// /// The dictionary to parse /// The URI to get the default values from /// The name of the username options /// The name of the password options /// The parsed authentication options public static AuthOptions ParseWithAlias(IReadOnlyDictionary options, Uri uri, string username, string password) { // Prefer the primary name, if set var optionUsername = options.GetValueOrDefault(username); var optionPassword = options.GetValueOrDefault(password); var parsedOptions = Parse(options, uri); if (string.IsNullOrWhiteSpace(optionUsername)) optionUsername = parsedOptions.Username; if (string.IsNullOrWhiteSpace(optionPassword)) optionPassword = parsedOptions.Password; return new AuthOptions(optionUsername, optionPassword); } /// /// Parses the authentication options from a dictionary /// /// The dictionary to parse /// The URI to get the default values from /// An optional prefix for the options /// The parsed authentication options public static AuthOptions Parse(IReadOnlyDictionary options, Uri uri, string? prefix = null) { var optionUsername = options.GetValueOrDefault($"{prefix}{AuthUsernameOption}"); var optionPassword = options.GetValueOrDefault($"{prefix}{AuthPasswordOption}"); // Prefer the URL values, if set string? username = null; string? password = null; if (!string.IsNullOrEmpty(uri.Username)) { username = uri.Username; if (!string.IsNullOrEmpty(uri.Password)) password = uri.Password; else if (!string.IsNullOrWhiteSpace(optionPassword)) password = optionPassword; } else { if (!string.IsNullOrWhiteSpace(optionUsername)) { username = optionUsername; if (!string.IsNullOrWhiteSpace(optionPassword)) password = optionPassword; } } return new AuthOptions(username, password); } /// /// Structure to hold the authentication options /// /// The username /// The password public sealed record AuthOptions(string? Username, string? Password) { /// /// Checks if the username has a value /// public bool HasUsername => !string.IsNullOrWhiteSpace(Username); /// /// Checks if the password has a value /// public bool HasPassword => !string.IsNullOrWhiteSpace(Password); /// /// Checks if the username and password are set /// /// True if the username and password are set public bool IsValid() => HasUsername && HasPassword; /// /// Throws an exception if the username and password are not set /// public AuthOptions RequireCredentials() { if (!IsValid()) throw new UserInformationException(Strings.AuthSettingsHelper.UsernameAndPasswordRequired, "UsernameAndPasswordRequired"); return this; } /// /// Returns the username and password after checking that they are set /// /// The username and password public (string Username, string Password) GetCredentials() { RequireCredentials(); return (Username!, Password!); } } }