54 lines
1.7 KiB
C#
54 lines
1.7 KiB
C#
using MongoDB.Driver;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.Specialized;
|
|
|
|
namespace Bootstrap.DataAccess.MongoDB
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class Exceptions : DataAccess.Exceptions
|
|
{
|
|
private static void ClearExceptions()
|
|
{
|
|
System.Threading.Tasks.Task.Run(() =>
|
|
{
|
|
MongoDbAccessManager.Exceptions.DeleteMany(ex => ex.LogTime < DateTime.Now.AddDays(-7));
|
|
});
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public override IEnumerable<DataAccess.Exceptions> RetrieveExceptions()
|
|
{
|
|
return MongoDbAccessManager.Exceptions.Find(ex => ex.LogTime >= DateTime.Now.AddDays(-7)).ToList();
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="ex"></param>
|
|
/// <param name="additionalInfo"></param>
|
|
/// <returns></returns>
|
|
public override bool Log(Exception ex, NameValueCollection additionalInfo)
|
|
{
|
|
var excep = new Exceptions();
|
|
excep.Id = null;
|
|
excep.AppDomainName = AppDomain.CurrentDomain.FriendlyName;
|
|
excep.ErrorPage = additionalInfo?["ErrorPage"];
|
|
excep.ExceptionType = ex.GetType().FullName;
|
|
excep.LogTime = DateTime.Now;
|
|
excep.Message = ex.Message;
|
|
excep.StackTrace = ex.StackTrace;
|
|
excep.UserId = additionalInfo?["UserId"];
|
|
excep.UserIp = additionalInfo?["UserIp"];
|
|
MongoDbAccessManager.Exceptions.InsertOne(excep);
|
|
ClearExceptions();
|
|
return true;
|
|
}
|
|
}
|
|
}
|