2024-02-28 15:45:30 +01:00
// Copyright (C) 2024, 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.
2019-01-07 21:38:39 -08:00
using Duplicati.Server.Serializable ;
using Duplicati.Server.WebServer.RESTMethods ;
using System ;
using System.Collections.Generic ;
using System.Linq ;
2019-04-14 12:41:35 -07:00
namespace Duplicati.CommandLine.ConfigurationImporter
2019-01-07 21:38:39 -08:00
{
2019-04-14 12:52:54 -07:00
public static class ConfigurationImporter
2019-01-07 21:38:39 -08:00
{
2019-01-19 21:15:47 -08:00
private static readonly string usageString = $"Usage: {nameof(ConfigurationImporter)}.exe <configuration-file> --import-metadata=(true | false) --server-datafolder=<folder containing Duplicati-server.sqlite>" ;
2019-01-07 21:38:39 -08:00
2021-04-03 13:57:02 +02:00
public static int Main ( string [] args )
2019-01-07 21:38:39 -08:00
{
2019-01-19 21:15:47 -08:00
if ( args . Length != 3 )
2019-01-07 21:38:39 -08:00
{
throw new ArgumentException ( $"Incorrect number of input arguments. {ConfigurationImporter.usageString}" );
}
string configurationFile = args [ 0 ];
2019-01-19 21:15:47 -08:00
Dictionary < string , string > importOptions = Duplicati . Library . Utility . CommandLineParser . ExtractOptions ( args . Skip ( 1 ). ToList ());
2019-01-07 21:38:39 -08:00
if (! importOptions . TryGetValue ( "import-metadata" , out string importMetadataString ))
{
throw new ArgumentException ( $"Invalid import-metadata argument. {ConfigurationImporter.usageString}" );
}
bool importMetadata = Duplicati . Library . Utility . Utility . ParseBool ( importMetadataString , false );
2019-01-19 21:15:47 -08:00
if (! importOptions . TryGetValue ( "server-datafolder" , out string serverDatafolder ))
{
throw new ArgumentException ( $"Invalid server-datafolder argument. {ConfigurationImporter.usageString}" );
}
Dictionary < string , string > advancedOptions = new Dictionary < string , string >
{
{ "server-datafolder" , serverDatafolder }
};
2019-01-07 21:38:39 -08:00
2019-01-15 19:26:47 -08:00
ImportExportStructure importedStructure = Backups . ImportBackup ( configurationFile , importMetadata , () => ConfigurationImporter . ReadPassword ( $"Password for {configurationFile}: " ), advancedOptions );
2019-01-07 21:38:39 -08:00
Console . WriteLine ( $"Imported \" { importedStructure . Backup . Name } \ " with ID {importedStructure.Backup.ID} and local database at {importedStructure.Backup.DBPath}." );
2021-04-03 13:57:02 +02:00
return 0 ;
2019-01-07 21:38:39 -08:00
}
private static string ReadPassword ( string prompt )
{
Console . Write ( prompt );
string password = "" ;
while ( true )
{
ConsoleKeyInfo keyInfo = Console . ReadKey ( true );
if ( keyInfo . Key == ConsoleKey . Enter )
{
break ;
}
if ( keyInfo . Key == ConsoleKey . Backspace )
{
if ( password . Length > 0 )
{
password = password . Substring ( 0 , password . Length - 1 );
Console . Write ( "\b \b" );
}
}
else if ( keyInfo . KeyChar != '\ u0000 ' ) // Only accept if the key maps to a Unicode character (e.g., ignore F1 or Home).
{
password += keyInfo . KeyChar ;
Console . Write ( "*" );
}
}
Console . WriteLine ();
return password ;
}
}
2019-04-14 12:41:35 -07:00
}