2012-01-27 05:05:09 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using Ionic.Zip;
|
|
|
|
|
using NLog;
|
|
|
|
|
using NzbDrone.Common;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
|
|
|
{
|
|
|
|
|
public class BackupProvider
|
|
|
|
|
{
|
2012-03-07 02:59:43 +00:00
|
|
|
|
private readonly EnvironmentProvider _environmentProvider;
|
2012-01-27 05:05:09 +00:00
|
|
|
|
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
|
2012-03-07 02:59:43 +00:00
|
|
|
|
public BackupProvider(EnvironmentProvider environmentProvider)
|
2012-01-27 05:05:09 +00:00
|
|
|
|
{
|
2012-03-07 02:59:43 +00:00
|
|
|
|
_environmentProvider = environmentProvider;
|
2012-01-27 05:05:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BackupProvider()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual string CreateBackupZip()
|
|
|
|
|
{
|
2012-08-14 18:51:25 +00:00
|
|
|
|
var dbFile = _environmentProvider.GetNzbDroneDbFile();
|
2012-03-07 02:59:43 +00:00
|
|
|
|
var configFile = _environmentProvider.GetConfigPath();
|
|
|
|
|
var zipFile = _environmentProvider.GetConfigBackupFile();
|
2012-01-27 05:05:09 +00:00
|
|
|
|
|
2012-01-27 05:24:41 +00:00
|
|
|
|
using (var zip = new ZipFile())
|
2012-01-27 05:05:09 +00:00
|
|
|
|
{
|
2012-01-27 05:24:41 +00:00
|
|
|
|
zip.AddFile(dbFile, String.Empty);
|
|
|
|
|
zip.AddFile(configFile, String.Empty);
|
|
|
|
|
zip.Save(zipFile);
|
2012-01-27 05:05:09 +00:00
|
|
|
|
}
|
2012-01-27 05:24:41 +00:00
|
|
|
|
|
|
|
|
|
return zipFile;
|
2012-01-27 05:05:09 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|