public void ApiDeletePerson(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.CRM.PersonService PersonService = new Rock.CRM.PersonService(); Rock.CRM.Person Person = PersonService.Get(int.Parse(id)); if (Person.Authorized("Edit", user)) { PersonService.Delete(Person, user.PersonId); PersonService.Save(Person, user.PersonId); } else { throw new WebFaultException <string>("Not Authorized to Edit this Person", System.Net.HttpStatusCode.Forbidden); } } else { throw new WebFaultException <string>("Invalid API Key", System.Net.HttpStatusCode.Forbidden); } } }
public void DeletePerson(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.CRM.PersonService PersonService = new Rock.CRM.PersonService(); Rock.CRM.Person Person = PersonService.Get(int.Parse(id)); if (Person.Authorized("Edit", currentUser)) { PersonService.Delete(Person, currentUser.PersonId); PersonService.Save(Person, currentUser.PersonId); } else { throw new WebFaultException <string>("Not Authorized to Edit this Person", System.Net.HttpStatusCode.Forbidden); } } }