1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-23 01:41:42 +02:00
Radarr/NzbDrone.Core/Providers/BackupProvider.cs

43 lines
1.1 KiB
C#
Raw Normal View History

2012-01-27 06:05:09 +01:00
using System;
using System.Linq;
using Ionic.Zip;
using NLog;
using Ninject;
using NzbDrone.Common;
namespace NzbDrone.Core.Providers
{
public class BackupProvider
{
private readonly EnviromentProvider _enviromentProvider;
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
[Inject]
public BackupProvider(EnviromentProvider enviromentProvider)
{
_enviromentProvider = enviromentProvider;
}
public BackupProvider()
{
}
public virtual string CreateBackupZip()
{
var dbFile = _enviromentProvider.GetNzbDronoeDbFile();
var configFile = _enviromentProvider.GetConfigPath();
var zipFile = _enviromentProvider.GetConfigBackupFile();
2012-01-27 06:05:09 +01:00
using (var zip = new ZipFile())
2012-01-27 06:05:09 +01:00
{
zip.AddFile(dbFile, String.Empty);
zip.AddFile(configFile, String.Empty);
zip.Save(zipFile);
2012-01-27 06:05:09 +01:00
}
return zipFile;
2012-01-27 06:05:09 +01:00
}
}
}