Exemple #1
0
        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);
                }
            }
        }
Exemple #2
0
        public Rock.Util.DTO.Job 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.Util.JobService JobService = new Rock.Util.JobService();
                    Rock.Util.Job        Job        = JobService.Get(int.Parse(id));
                    if (Job.Authorized("View", user))
                    {
                        return(Job.DataTransferObject);
                    }
                    else
                    {
                        throw new WebFaultException <string>("Not Authorized to View this Job", System.Net.HttpStatusCode.Forbidden);
                    }
                }
                else
                {
                    throw new WebFaultException <string>("Invalid API Key", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
Exemple #3
0
        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);
                }
            }
        }
Exemple #4
0
        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);
                }
            }
        }
Exemple #5
0
        public Rock.Util.DTO.Job 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.Util.JobService JobService = new Rock.Util.JobService();
                Rock.Util.Job        Job        = JobService.Get(int.Parse(id));
                if (Job.Authorized("View", currentUser))
                {
                    return(Job.DataTransferObject);
                }
                else
                {
                    throw new WebFaultException <string>("Not Authorized to View this Job", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
Exemple #6
0
        public void ApiUpdateJob(string id, 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 = JobService.Get(int.Parse(id));
                    if (existingJob.Authorized("Edit", user))
                    {
                        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>("Not Authorized to Edit this Job", System.Net.HttpStatusCode.Forbidden);
                    }
                }
                else
                {
                    throw new WebFaultException <string>("Invalid API Key", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }