// Copyright (C) 2026, 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;
namespace Duplicati.Server;
///
/// Defines how the task configuration should be stored in the backup.
///
public enum StoreTaskConfigMode
{
///
/// Automatically determine behavior based on encryption settings.
/// When encryption is enabled, behaves as .
/// When encryption is not enabled, behaves as .
///
Auto,
///
/// Include the current job's backup configuration, excluding additional targets.
/// When encryption is enabled, includes secrets.
/// When encryption is not enabled, excludes secrets.
///
SelfOnly,
///
/// Include the current job's backup configuration.
/// When encryption is enabled, includes all secrets.
/// When encryption is not enabled, excludes secrets.
///
Self,
///
/// Include all job backup configurations.
/// When encryption is enabled, includes all secrets.
/// When encryption is not enabled, excludes secrets.
///
All,
///
/// Do not include any task configuration.
///
None,
///
/// Include the current job's backup configuration with all secrets included, but excluding additional targets.
///
SelfOnlyWithUnencryptedSecrets,
///
/// Include the current job's backup configuration with all secrets included.
///
SelfWithUnencryptedSecrets,
///
/// Include all job backup configurations with all secrets included.
///
AllWithUnencryptedSecrets
}
///
/// The resolved mode for storing task configuration.
///
/// A value indicating whether to include all tasks.
/// A value indicating whether to remove secrets.
/// A value indicating whether to remove additional targets.
public record ResolvedTaskConfigMode(
bool IncludeAllTasks,
bool RemoveSecrets,
bool RemoveAdditionalTargets
);
///
/// Extension methods for .
///
public static class StoreTaskConfigModeExtensions
{
///
/// Resolves the effective mode based on the current mode and encryption settings.
///
/// The mode to resolve.
/// A flag indicating whether encryption is enabled.
/// The effective mode
private static StoreTaskConfigMode ResolveEffectiveMode(this StoreTaskConfigMode mode, bool encryptionEnabled)
=> mode switch
{
StoreTaskConfigMode.Auto => encryptionEnabled ? StoreTaskConfigMode.SelfOnlyWithUnencryptedSecrets : StoreTaskConfigMode.None,
StoreTaskConfigMode.SelfOnly when encryptionEnabled => StoreTaskConfigMode.SelfOnlyWithUnencryptedSecrets,
StoreTaskConfigMode.Self when encryptionEnabled => StoreTaskConfigMode.SelfWithUnencryptedSecrets,
StoreTaskConfigMode.All when encryptionEnabled => StoreTaskConfigMode.AllWithUnencryptedSecrets,
_ => mode
};
///
/// Resolves the effective mode based on the current mode and encryption settings.
///
/// The mode to resolve.
/// A flag indicating whether encryption is enabled.
/// The effective mode
public static ResolvedTaskConfigMode? ResolvedTaskConfigMode(this StoreTaskConfigMode mode, bool encryptionEnabled)
{
var effectiveMode = mode.ResolveEffectiveMode(encryptionEnabled);
if (effectiveMode == StoreTaskConfigMode.None)
return null;
if (effectiveMode == StoreTaskConfigMode.Auto)
throw new InvalidOperationException("Auto mode should have been resolved to a concrete mode");
return new ResolvedTaskConfigMode(
effectiveMode.IncludeAllTasks(),
effectiveMode.RemoveSecrets(),
effectiveMode.RemoveAdditionalTargets()
);
}
///
/// Determines whether additional targets should be removed based on the current mode.
///
/// The mode to check.
/// true if additional targets should be removed; otherwise, false.
private static bool RemoveAdditionalTargets(this StoreTaskConfigMode mode)
=> mode switch
{
StoreTaskConfigMode.SelfOnlyWithUnencryptedSecrets or StoreTaskConfigMode.SelfOnly => true,
_ => false
};
///
/// Determines whether secrets should be removed based on the current mode.
///
/// The mode to check.
/// true if secrets should be removed; otherwise, false.
private static bool RemoveSecrets(this StoreTaskConfigMode mode)
=> mode switch
{
StoreTaskConfigMode.SelfOnlyWithUnencryptedSecrets or StoreTaskConfigMode.SelfWithUnencryptedSecrets or StoreTaskConfigMode.AllWithUnencryptedSecrets => false,
_ => true
};
///
/// Determines whether all tasks should be included based on the current mode.
///
/// The mode to check.
/// true if all tasks should be included; otherwise, false.
private static bool IncludeAllTasks(this StoreTaskConfigMode mode)
=> mode switch
{
StoreTaskConfigMode.All or StoreTaskConfigMode.AllWithUnencryptedSecrets => true,
_ => false
};
}