public void UpdatePerson(string id, Rock.CRM.DTO.Person Person) { 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 existingPerson = PersonService.Get(int.Parse(id)); if (existingPerson.Authorized("Edit", currentUser)) { uow.objectContext.Entry(existingPerson).CurrentValues.SetValues(Person); if (existingPerson.IsValid) { PersonService.Save(existingPerson, currentUser.PersonId); } else { throw new WebFaultException <string>(existingPerson.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest); } } else { throw new WebFaultException <string>("Not Authorized to Edit this Person", System.Net.HttpStatusCode.Forbidden); } } }
public Rock.CRM.DTO.Person 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.CRM.PersonService PersonService = new Rock.CRM.PersonService(); Rock.CRM.Person Person = PersonService.Get(int.Parse(id)); if (Person.Authorized("View", user)) { return(Person.DataTransferObject); } else { throw new WebFaultException <string>("Not Authorized to View 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); } } }
public Rock.CRM.DTO.Person 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.CRM.PersonService PersonService = new Rock.CRM.PersonService(); Rock.CRM.Person Person = PersonService.Get(int.Parse(id)); if (Person.Authorized("View", currentUser)) { return(Person.DataTransferObject); } else { throw new WebFaultException <string>("Not Authorized to View this Person", System.Net.HttpStatusCode.Forbidden); } } }
public void ApiUpdatePerson(string id, string apiKey, Rock.CRM.DTO.Person Person) { 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 existingPerson = PersonService.Get(int.Parse(id)); if (existingPerson.Authorized("Edit", user)) { uow.objectContext.Entry(existingPerson).CurrentValues.SetValues(Person); if (existingPerson.IsValid) { PersonService.Save(existingPerson, user.PersonId); } else { throw new WebFaultException <string>(existingPerson.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest); } } 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); } } }