jellyfin-server/Emby.Server.Implementations/Archiving/ZipClient.cs

47 lines
1.3 KiB
C#
Raw Normal View History

using System.IO;
2016-10-28 18:35:17 +00:00
using MediaBrowser.Model.IO;
2018-09-12 17:26:21 +00:00
using SharpCompress.Common;
2016-11-11 04:25:21 +00:00
using SharpCompress.Readers;
2017-09-25 05:06:15 +00:00
using SharpCompress.Readers.GZip;
2013-09-25 00:54:51 +00:00
namespace Emby.Server.Implementations.Archiving
2013-09-25 00:54:51 +00:00
{
/// <summary>
2019-11-01 17:38:54 +00:00
/// Class DotNetZipClient.
2013-09-25 00:54:51 +00:00
/// </summary>
public class ZipClient : IZipClient
{
2020-04-14 19:16:04 +00:00
/// <inheritdoc />
2017-09-25 05:06:15 +00:00
public void ExtractAllFromGz(Stream source, string targetPath, bool overwriteExistingFiles)
{
2020-04-14 19:16:04 +00:00
using var reader = GZipReader.Open(source);
var options = new ExtractionOptions
2017-09-25 05:06:15 +00:00
{
2020-04-14 19:16:04 +00:00
ExtractFullPath = true,
Overwrite = overwriteExistingFiles
};
2017-09-25 05:06:15 +00:00
Directory.CreateDirectory(targetPath);
2020-04-14 19:16:04 +00:00
reader.WriteAllToDirectory(targetPath, options);
2017-09-25 05:06:15 +00:00
}
2020-04-14 19:16:04 +00:00
/// <inheritdoc />
2017-12-03 22:11:04 +00:00
public void ExtractFirstFileFromGz(Stream source, string targetPath, string defaultFileName)
{
2020-04-14 19:16:04 +00:00
using var reader = GZipReader.Open(source);
if (reader.MoveToNextEntry())
2017-12-03 22:11:04 +00:00
{
2020-04-14 19:16:04 +00:00
var entry = reader.Entry;
var filename = entry.Key;
if (string.IsNullOrWhiteSpace(filename))
2017-12-03 22:11:04 +00:00
{
2020-04-14 19:16:04 +00:00
filename = defaultFileName;
2017-12-03 22:11:04 +00:00
}
2020-04-14 19:16:04 +00:00
reader.WriteEntryToFile(Path.Combine(targetPath, filename));
2017-12-03 22:11:04 +00:00
}
}
2013-09-25 00:54:51 +00:00
}
}