public void ApiCreateExceptionLog(string apiKey, Rock.Core.DTO.ExceptionLog ExceptionLog) { using (Rock.Data.UnitOfWorkScope uow = new Rock.Data.UnitOfWorkScope()) { Rock.CMS.UserService userService = new Rock.CMS.UserService(); Rock.CMS.User user = userService.Queryable().Where(u => u.ApiKey == apiKey).FirstOrDefault(); if (user != null) { uow.objectContext.Configuration.ProxyCreationEnabled = false; Rock.Core.ExceptionLogService ExceptionLogService = new Rock.Core.ExceptionLogService(); Rock.Core.ExceptionLog existingExceptionLog = new Rock.Core.ExceptionLog(); ExceptionLogService.Add(existingExceptionLog, user.PersonId); uow.objectContext.Entry(existingExceptionLog).CurrentValues.SetValues(ExceptionLog); if (existingExceptionLog.IsValid) { ExceptionLogService.Save(existingExceptionLog, user.PersonId); } else { throw new WebFaultException <string>(existingExceptionLog.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest); } } else { throw new WebFaultException <string>("Invalid API Key", System.Net.HttpStatusCode.Forbidden); } } }
public void CreateExceptionLog(Rock.Core.DTO.ExceptionLog ExceptionLog) { var currentUser = Rock.CMS.UserService.GetCurrentUser(); if (currentUser == null) { throw new WebFaultException <string>("Must be logged in", System.Net.HttpStatusCode.Forbidden); } using (Rock.Data.UnitOfWorkScope uow = new Rock.Data.UnitOfWorkScope()) { uow.objectContext.Configuration.ProxyCreationEnabled = false; Rock.Core.ExceptionLogService ExceptionLogService = new Rock.Core.ExceptionLogService(); Rock.Core.ExceptionLog existingExceptionLog = new Rock.Core.ExceptionLog(); ExceptionLogService.Add(existingExceptionLog, currentUser.PersonId); uow.objectContext.Entry(existingExceptionLog).CurrentValues.SetValues(ExceptionLog); if (existingExceptionLog.IsValid) { ExceptionLogService.Save(existingExceptionLog, currentUser.PersonId); } else { throw new WebFaultException <string>(existingExceptionLog.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest); } } }
public void ApiCreateExceptionLog( string apiKey, Rock.Core.DTO.ExceptionLog ExceptionLog ) { using ( Rock.Data.UnitOfWorkScope uow = new Rock.Data.UnitOfWorkScope() ) { Rock.CMS.UserService userService = new Rock.CMS.UserService(); Rock.CMS.User user = userService.Queryable().Where( u => u.ApiKey == apiKey ).FirstOrDefault(); if (user != null) { uow.objectContext.Configuration.ProxyCreationEnabled = false; Rock.Core.ExceptionLogService ExceptionLogService = new Rock.Core.ExceptionLogService(); Rock.Core.ExceptionLog existingExceptionLog = new Rock.Core.ExceptionLog(); ExceptionLogService.Add( existingExceptionLog, user.PersonId ); uow.objectContext.Entry(existingExceptionLog).CurrentValues.SetValues(ExceptionLog); if (existingExceptionLog.IsValid) ExceptionLogService.Save( existingExceptionLog, user.PersonId ); else throw new WebFaultException<string>( existingExceptionLog.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest ); } else throw new WebFaultException<string>( "Invalid API Key", System.Net.HttpStatusCode.Forbidden ); } }
public void CreateExceptionLog( Rock.Core.DTO.ExceptionLog ExceptionLog ) { var currentUser = Rock.CMS.UserService.GetCurrentUser(); if ( currentUser == null ) throw new WebFaultException<string>("Must be logged in", System.Net.HttpStatusCode.Forbidden ); using ( Rock.Data.UnitOfWorkScope uow = new Rock.Data.UnitOfWorkScope() ) { uow.objectContext.Configuration.ProxyCreationEnabled = false; Rock.Core.ExceptionLogService ExceptionLogService = new Rock.Core.ExceptionLogService(); Rock.Core.ExceptionLog existingExceptionLog = new Rock.Core.ExceptionLog(); ExceptionLogService.Add( existingExceptionLog, currentUser.PersonId ); uow.objectContext.Entry(existingExceptionLog).CurrentValues.SetValues(ExceptionLog); if (existingExceptionLog.IsValid) ExceptionLogService.Save( existingExceptionLog, currentUser.PersonId ); else throw new WebFaultException<string>( existingExceptionLog.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest ); } }