Пример #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);
                }
            }
        }
Пример #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);
                }
            }
        }
Пример #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);
                }
            }
        }
Пример #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);
                }
            }
        }
Пример #5
0
        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);
                }
            }
        }
Пример #6
0
        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 );
            }
        }
Пример #7
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);
                }
            }
        }
Пример #8
0
        public void CreateJob( 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 = new Rock.Util.Job();
                JobService.Add( existingJob, currentUser.PersonId );
                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 );
            }
        }