jellyfin/MediaBrowser.Controller/ClientEvent/ClientEventLogger.cs

35 lines
1.3 KiB
C#
Raw Normal View History

2021-04-26 09:02:26 -04:00
using System;
2021-10-26 20:42:17 -04:00
using System.IO;
using System.Threading.Tasks;
2021-04-26 09:02:26 -04:00
namespace MediaBrowser.Controller.ClientEvent
{
/// <inheritdoc />
public class ClientEventLogger : IClientEventLogger
{
2021-10-26 20:42:17 -04:00
private readonly IServerApplicationPaths _applicationPaths;
2021-04-26 09:02:26 -04:00
/// <summary>
/// Initializes a new instance of the <see cref="ClientEventLogger"/> class.
/// </summary>
2021-10-26 20:42:17 -04:00
/// <param name="applicationPaths">Instance of the <see cref="IServerApplicationPaths"/> interface.</param>
2021-11-20 10:47:05 -05:00
public ClientEventLogger(IServerApplicationPaths applicationPaths)
2021-04-26 09:02:26 -04:00
{
2021-10-26 20:42:17 -04:00
_applicationPaths = applicationPaths;
2021-04-26 09:02:26 -04:00
}
2021-10-26 20:42:17 -04:00
/// <inheritdoc />
2021-11-05 12:40:45 -04:00
public async Task<string> WriteDocumentAsync(string clientName, string clientVersion, Stream fileContents)
2021-10-26 20:42:17 -04:00
{
var fileName = $"upload_{clientName}_{clientVersion}_{DateTime.UtcNow:yyyyMMddHHmmss}_{Guid.NewGuid():N}.log";
2021-10-26 20:42:17 -04:00
var logFilePath = Path.Combine(_applicationPaths.LogDirectoryPath, fileName);
var fileStream = new FileStream(logFilePath, FileMode.CreateNew, FileAccess.Write, FileShare.None);
await using (fileStream.ConfigureAwait(false))
{
await fileContents.CopyToAsync(fileStream).ConfigureAwait(false);
return fileName;
}
2021-10-26 20:42:17 -04:00
}
2021-04-26 09:02:26 -04:00
}
2021-10-26 20:42:17 -04:00
}