2021-04-26 06:02:26 -07:00
|
|
|
|
using System;
|
2021-10-26 17:42:17 -07:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Threading.Tasks;
|
2021-04-26 06:02:26 -07:00
|
|
|
|
using MediaBrowser.Model.ClientLog;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.ClientEvent
|
|
|
|
|
{
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public class ClientEventLogger : IClientEventLogger
|
|
|
|
|
{
|
|
|
|
|
private const string LogString = "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz}] [{Level}] [{ClientName}:{ClientVersion}]: UserId: {UserId} DeviceId: {DeviceId}{NewLine}{Message}";
|
|
|
|
|
private readonly ILogger<ClientEventLogger> _logger;
|
2021-10-26 17:42:17 -07:00
|
|
|
|
private readonly IServerApplicationPaths _applicationPaths;
|
2021-04-26 06:02:26 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="ClientEventLogger"/> class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="logger">Instance of the <see cref="ILogger{ClientEventLogger}"/> interface.</param>
|
2021-10-26 17:42:17 -07:00
|
|
|
|
/// <param name="applicationPaths">Instance of the <see cref="IServerApplicationPaths"/> interface.</param>
|
|
|
|
|
public ClientEventLogger(
|
|
|
|
|
ILogger<ClientEventLogger> logger,
|
|
|
|
|
IServerApplicationPaths applicationPaths)
|
2021-04-26 06:02:26 -07:00
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
2021-10-26 17:42:17 -07:00
|
|
|
|
_applicationPaths = applicationPaths;
|
2021-04-26 06:02:26 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public void Log(ClientLogEvent clientLogEvent)
|
|
|
|
|
{
|
|
|
|
|
_logger.Log(
|
|
|
|
|
LogLevel.Critical,
|
|
|
|
|
LogString,
|
|
|
|
|
clientLogEvent.Timestamp,
|
|
|
|
|
clientLogEvent.Level.ToString(),
|
|
|
|
|
clientLogEvent.ClientName,
|
|
|
|
|
clientLogEvent.ClientVersion,
|
|
|
|
|
clientLogEvent.UserId ?? Guid.Empty,
|
|
|
|
|
clientLogEvent.DeviceId,
|
|
|
|
|
Environment.NewLine,
|
|
|
|
|
clientLogEvent.Message);
|
|
|
|
|
}
|
2021-10-26 17:42:17 -07:00
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
2021-11-05 09:40:45 -07:00
|
|
|
|
public async Task<string> WriteDocumentAsync(string clientName, string clientVersion, Stream fileContents)
|
2021-10-26 17:42:17 -07:00
|
|
|
|
{
|
2021-11-07 11:41:56 -07:00
|
|
|
|
var fileName = $"upload_{clientName}_{clientVersion}_{DateTime.UtcNow:yyyyMMddHHmmss}_{Guid.NewGuid():N}.log";
|
2021-10-26 17:42:17 -07:00
|
|
|
|
var logFilePath = Path.Combine(_applicationPaths.LogDirectoryPath, fileName);
|
|
|
|
|
await using var fileStream = new FileStream(logFilePath, FileMode.CreateNew, FileAccess.Write, FileShare.None);
|
|
|
|
|
await fileContents.CopyToAsync(fileStream).ConfigureAwait(false);
|
2021-10-28 15:11:14 -07:00
|
|
|
|
return fileName;
|
2021-10-26 17:42:17 -07:00
|
|
|
|
}
|
2021-04-26 06:02:26 -07:00
|
|
|
|
}
|
2021-10-26 17:42:17 -07:00
|
|
|
|
}
|