public void UpdateDefinedValue(string id, Rock.Core.DTO.DefinedValue DefinedValue) { 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.DefinedValueService DefinedValueService = new Rock.Core.DefinedValueService(); Rock.Core.DefinedValue existingDefinedValue = DefinedValueService.Get(int.Parse(id)); if (existingDefinedValue.Authorized("Edit", currentUser)) { uow.objectContext.Entry(existingDefinedValue).CurrentValues.SetValues(DefinedValue); if (existingDefinedValue.IsValid) { DefinedValueService.Save(existingDefinedValue, currentUser.PersonId); } else { throw new WebFaultException <string>(existingDefinedValue.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest); } } else { throw new WebFaultException <string>("Not Authorized to Edit this DefinedValue", System.Net.HttpStatusCode.Forbidden); } } }
public Rock.Core.DTO.DefinedValue ApiGet(string id, string apiKey) { 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.DefinedValueService DefinedValueService = new Rock.Core.DefinedValueService(); Rock.Core.DefinedValue DefinedValue = DefinedValueService.Get(int.Parse(id)); if (DefinedValue.Authorized("View", user)) { return(DefinedValue.DataTransferObject); } else { throw new WebFaultException <string>("Not Authorized to View this DefinedValue", System.Net.HttpStatusCode.Forbidden); } } else { throw new WebFaultException <string>("Invalid API Key", System.Net.HttpStatusCode.Forbidden); } } }
public void DeleteDefinedValue(string id) { 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.DefinedValueService DefinedValueService = new Rock.Core.DefinedValueService(); Rock.Core.DefinedValue DefinedValue = DefinedValueService.Get(int.Parse(id)); if (DefinedValue.Authorized("Edit", currentUser)) { DefinedValueService.Delete(DefinedValue, currentUser.PersonId); DefinedValueService.Save(DefinedValue, currentUser.PersonId); } else { throw new WebFaultException <string>("Not Authorized to Edit this DefinedValue", System.Net.HttpStatusCode.Forbidden); } } }
public Rock.Core.DTO.DefinedValue Get(string id) { 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.DefinedValueService DefinedValueService = new Rock.Core.DefinedValueService(); Rock.Core.DefinedValue DefinedValue = DefinedValueService.Get(int.Parse(id)); if (DefinedValue.Authorized("View", currentUser)) { return(DefinedValue.DataTransferObject); } else { throw new WebFaultException <string>("Not Authorized to View this DefinedValue", System.Net.HttpStatusCode.Forbidden); } } }
public void ApiUpdateDefinedValue(string id, string apiKey, Rock.Core.DTO.DefinedValue DefinedValue) { 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.DefinedValueService DefinedValueService = new Rock.Core.DefinedValueService(); Rock.Core.DefinedValue existingDefinedValue = DefinedValueService.Get(int.Parse(id)); if (existingDefinedValue.Authorized("Edit", user)) { uow.objectContext.Entry(existingDefinedValue).CurrentValues.SetValues(DefinedValue); if (existingDefinedValue.IsValid) { DefinedValueService.Save(existingDefinedValue, user.PersonId); } else { throw new WebFaultException <string>(existingDefinedValue.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest); } } else { throw new WebFaultException <string>("Not Authorized to Edit this DefinedValue", System.Net.HttpStatusCode.Forbidden); } } else { throw new WebFaultException <string>("Invalid API Key", System.Net.HttpStatusCode.Forbidden); } } }