jellyfin/Emby.Server.Implementations/HttpServer/LoggerUtils.cs

69 lines
2.6 KiB
C#
Raw Normal View History

2014-07-09 02:46:11 +02:00
using MediaBrowser.Model.Logging;
2013-12-07 16:52:38 +01:00
using System;
2015-07-08 18:10:34 +02:00
using System.Globalization;
2017-05-09 20:51:26 +02:00
using MediaBrowser.Model.Services;
2016-01-23 04:10:21 +01:00
using SocketHttpListener.Net;
2013-12-07 16:52:38 +01:00
2016-11-08 19:44:23 +01:00
namespace Emby.Server.Implementations.HttpServer
2013-12-07 16:52:38 +01:00
{
public static class LoggerUtils
{
2016-01-23 04:10:21 +01:00
/// <summary>
/// Logs the request.
/// </summary>
/// <param name="logger">The logger.</param>
/// <param name="request">The request.</param>
public static void LogRequest(ILogger logger, HttpListenerRequest request)
{
var url = request.Url.ToString();
2016-03-27 23:11:27 +02:00
logger.Info("{0} {1}. UserAgent: {2}", request.IsWebSocketRequest ? "WS" : "HTTP " + request.HttpMethod, url, request.UserAgent ?? string.Empty);
2016-01-23 04:10:21 +01:00
}
2017-05-09 20:51:26 +02:00
public static void LogRequest(ILogger logger, string url, string method, string userAgent, QueryParamCollection headers)
2016-01-23 04:10:21 +01:00
{
2017-05-09 20:51:26 +02:00
if (headers == null)
{
logger.Info("{0} {1}. UserAgent: {2}", "HTTP " + method, url, userAgent ?? string.Empty);
}
else
{
2017-08-30 20:52:29 +02:00
var headerText = string.Empty;
var index = 0;
foreach (var i in headers)
{
if (index > 0)
{
headerText += ", ";
}
headerText += i.Name + "=" + i.Value;
index++;
}
2017-05-09 20:51:26 +02:00
logger.Info("HTTP {0} {1}. {2}", method, url, headerText);
}
2016-01-23 04:10:21 +01:00
}
2013-12-07 16:52:38 +01:00
/// <summary>
/// Logs the response.
/// </summary>
/// <param name="logger">The logger.</param>
2014-07-09 02:46:11 +02:00
/// <param name="statusCode">The status code.</param>
2013-12-07 16:52:38 +01:00
/// <param name="url">The URL.</param>
/// <param name="endPoint">The end point.</param>
/// <param name="duration">The duration.</param>
2017-05-09 20:51:26 +02:00
public static void LogResponse(ILogger logger, int statusCode, string url, string endPoint, TimeSpan duration, QueryParamCollection headers)
2013-12-07 16:52:38 +01:00
{
2015-10-28 20:40:38 +01:00
var durationMs = duration.TotalMilliseconds;
2016-06-14 21:21:26 +02:00
var logSuffix = durationMs >= 1000 && durationMs < 60000 ? "ms (slow)" : "ms";
2015-10-28 20:40:38 +01:00
2017-08-30 20:52:29 +02:00
//var headerText = headers == null ? string.Empty : "Headers: " + string.Join(", ", headers.Where(i => i.Name.IndexOf("Access-", StringComparison.OrdinalIgnoreCase) == -1).Select(i => i.Name + "=" + i.Value).ToArray());
var headerText = string.Empty;
2017-05-09 20:51:26 +02:00
logger.Info("HTTP Response {0} to {1}. Time: {2}{3}. {4} {5}", statusCode, endPoint, Convert.ToInt32(durationMs).ToString(CultureInfo.InvariantCulture), logSuffix, url, headerText);
2013-12-07 16:52:38 +01:00
}
}
}