public void UpdateJob(string id, Rock.Util.DTO.Job Job) { 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.Util.JobService JobService = new Rock.Util.JobService(); Rock.Util.Job existingJob = JobService.Get(int.Parse(id)); if (existingJob.Authorized("Edit", currentUser)) { uow.objectContext.Entry(existingJob).CurrentValues.SetValues(Job); if (existingJob.IsValid) { JobService.Save(existingJob, currentUser.PersonId); } else { throw new WebFaultException <string>(existingJob.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest); } } else { throw new WebFaultException <string>("Not Authorized to Edit this Job", System.Net.HttpStatusCode.Forbidden); } } }
public void ApiDeleteJob(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.Util.JobService JobService = new Rock.Util.JobService(); Rock.Util.Job Job = JobService.Get(int.Parse(id)); if (Job.Authorized("Edit", user)) { JobService.Delete(Job, user.PersonId); JobService.Save(Job, user.PersonId); } else { throw new WebFaultException <string>("Not Authorized to Edit this Job", System.Net.HttpStatusCode.Forbidden); } } else { throw new WebFaultException <string>("Invalid API Key", System.Net.HttpStatusCode.Forbidden); } } }
public void DeleteJob(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.Util.JobService JobService = new Rock.Util.JobService(); Rock.Util.Job Job = JobService.Get(int.Parse(id)); if (Job.Authorized("Edit", currentUser)) { JobService.Delete(Job, currentUser.PersonId); JobService.Save(Job, currentUser.PersonId); } else { throw new WebFaultException <string>("Not Authorized to Edit this Job", System.Net.HttpStatusCode.Forbidden); } } }
public void ApiCreateJob(string apiKey, Rock.Util.DTO.Job Job) { 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.Util.JobService JobService = new Rock.Util.JobService(); Rock.Util.Job existingJob = new Rock.Util.Job(); JobService.Add(existingJob, user.PersonId); uow.objectContext.Entry(existingJob).CurrentValues.SetValues(Job); if (existingJob.IsValid) { JobService.Save(existingJob, user.PersonId); } else { throw new WebFaultException <string>(existingJob.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest); } } else { throw new WebFaultException <string>("Invalid API Key", System.Net.HttpStatusCode.Forbidden); } } }
public void ApiDeleteJob( 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.Util.JobService JobService = new Rock.Util.JobService(); Rock.Util.Job Job = JobService.Get( int.Parse( id ) ); if ( Job.Authorized( "Edit", user ) ) { JobService.Delete( Job, user.PersonId ); JobService.Save( Job, user.PersonId ); } else throw new WebFaultException<string>( "Not Authorized to Edit this Job", System.Net.HttpStatusCode.Forbidden ); } else throw new WebFaultException<string>( "Invalid API Key", System.Net.HttpStatusCode.Forbidden ); } }
public void ApiCreateJob( string apiKey, Rock.Util.DTO.Job Job ) { 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.Util.JobService JobService = new Rock.Util.JobService(); Rock.Util.Job existingJob = new Rock.Util.Job(); JobService.Add( existingJob, user.PersonId ); uow.objectContext.Entry(existingJob).CurrentValues.SetValues(Job); if (existingJob.IsValid) JobService.Save( existingJob, user.PersonId ); else throw new WebFaultException<string>( existingJob.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest ); } else throw new WebFaultException<string>( "Invalid API Key", System.Net.HttpStatusCode.Forbidden ); } }
public void UpdateJob( string id, Rock.Util.DTO.Job Job ) { 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.Util.JobService JobService = new Rock.Util.JobService(); Rock.Util.Job existingJob = JobService.Get( int.Parse( id ) ); if ( existingJob.Authorized( "Edit", currentUser ) ) { uow.objectContext.Entry(existingJob).CurrentValues.SetValues(Job); if (existingJob.IsValid) JobService.Save( existingJob, currentUser.PersonId ); else throw new WebFaultException<string>( existingJob.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest ); } else throw new WebFaultException<string>( "Not Authorized to Edit this Job", System.Net.HttpStatusCode.Forbidden ); } }
public void DeleteJob( 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.Util.JobService JobService = new Rock.Util.JobService(); Rock.Util.Job Job = JobService.Get( int.Parse( id ) ); if ( Job.Authorized( "Edit", currentUser ) ) { JobService.Delete( Job, currentUser.PersonId ); JobService.Save( Job, currentUser.PersonId ); } else throw new WebFaultException<string>( "Not Authorized to Edit this Job", System.Net.HttpStatusCode.Forbidden ); } }