using System.Collections.Generic; using System.IO; using System.Linq; using NzbDrone.Core.Backup; namespace NzbDrone.Api.System.Backup { public class BackupModule : NzbDroneRestModule { private readonly IBackupService _backupService; public BackupModule(IBackupService backupService) : base("system/backup") { _backupService = backupService; GetResourceAll = GetBackupFiles; } public List GetBackupFiles() { var backups = _backupService.GetBackups(); return backups.Select(b => new BackupResource { Id = b.Path.GetHashCode(), Name = Path.GetFileName(b.Path), Path = b.Path, Type = b.Type, Time = b.Time }).ToList(); } } }