Esempio n. 1
0
        public void UpdateGroup(string id, Rock.Groups.DTO.Group Group)
        {
            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.Groups.GroupService GroupService  = new Rock.Groups.GroupService();
                Rock.Groups.Group        existingGroup = GroupService.Get(int.Parse(id));
                if (existingGroup.Authorized("Edit", currentUser))
                {
                    uow.objectContext.Entry(existingGroup).CurrentValues.SetValues(Group);

                    if (existingGroup.IsValid)
                    {
                        GroupService.Save(existingGroup, currentUser.PersonId);
                    }
                    else
                    {
                        throw new WebFaultException <string>(existingGroup.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest);
                    }
                }
                else
                {
                    throw new WebFaultException <string>("Not Authorized to Edit this Group", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
Esempio n. 2
0
        public void DeleteGroup(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.Groups.GroupService GroupService = new Rock.Groups.GroupService();
                Rock.Groups.Group        Group        = GroupService.Get(int.Parse(id));
                if (Group.Authorized("Edit", currentUser))
                {
                    GroupService.Delete(Group, currentUser.PersonId);
                    GroupService.Save(Group, currentUser.PersonId);
                }
                else
                {
                    throw new WebFaultException <string>("Not Authorized to Edit this Group", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
Esempio n. 3
0
        public void ApiDeleteGroup(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.Groups.GroupService GroupService = new Rock.Groups.GroupService();
                    Rock.Groups.Group        Group        = GroupService.Get(int.Parse(id));
                    if (Group.Authorized("Edit", user))
                    {
                        GroupService.Delete(Group, user.PersonId);
                        GroupService.Save(Group, user.PersonId);
                    }
                    else
                    {
                        throw new WebFaultException <string>("Not Authorized to Edit this Group", System.Net.HttpStatusCode.Forbidden);
                    }
                }
                else
                {
                    throw new WebFaultException <string>("Invalid API Key", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
Esempio n. 4
0
        public void ApiCreateGroup(string apiKey, Rock.Groups.DTO.Group Group)
        {
            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.Groups.GroupService GroupService  = new Rock.Groups.GroupService();
                    Rock.Groups.Group        existingGroup = new Rock.Groups.Group();
                    GroupService.Add(existingGroup, user.PersonId);
                    uow.objectContext.Entry(existingGroup).CurrentValues.SetValues(Group);

                    if (existingGroup.IsValid)
                    {
                        GroupService.Save(existingGroup, user.PersonId);
                    }
                    else
                    {
                        throw new WebFaultException <string>(existingGroup.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest);
                    }
                }
                else
                {
                    throw new WebFaultException <string>("Invalid API Key", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
Esempio n. 5
0
        public void ApiDeleteGroup( 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.Groups.GroupService GroupService = new Rock.Groups.GroupService();
                    Rock.Groups.Group Group = GroupService.Get( int.Parse( id ) );
                    if ( Group.Authorized( "Edit", user ) )
                    {
                        GroupService.Delete( Group, user.PersonId );
                        GroupService.Save( Group, user.PersonId );
                    }
                    else
                        throw new WebFaultException<string>( "Not Authorized to Edit this Group", System.Net.HttpStatusCode.Forbidden );
                }
                else
                    throw new WebFaultException<string>( "Invalid API Key", System.Net.HttpStatusCode.Forbidden );
            }
        }
Esempio n. 6
0
        public void ApiCreateGroup( string apiKey, Rock.Groups.DTO.Group Group )
        {
            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.Groups.GroupService GroupService = new Rock.Groups.GroupService();
                    Rock.Groups.Group existingGroup = new Rock.Groups.Group();
                    GroupService.Add( existingGroup, user.PersonId );
                    uow.objectContext.Entry(existingGroup).CurrentValues.SetValues(Group);

                    if (existingGroup.IsValid)
                        GroupService.Save( existingGroup, user.PersonId );
                    else
                        throw new WebFaultException<string>( existingGroup.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest );
                }
                else
                    throw new WebFaultException<string>( "Invalid API Key", System.Net.HttpStatusCode.Forbidden );
            }
        }
Esempio n. 7
0
        public void UpdateGroup( string id, Rock.Groups.DTO.Group Group )
        {
            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.Groups.GroupService GroupService = new Rock.Groups.GroupService();
                Rock.Groups.Group existingGroup = GroupService.Get( int.Parse( id ) );
                if ( existingGroup.Authorized( "Edit", currentUser ) )
                {
                    uow.objectContext.Entry(existingGroup).CurrentValues.SetValues(Group);

                    if (existingGroup.IsValid)
                        GroupService.Save( existingGroup, currentUser.PersonId );
                    else
                        throw new WebFaultException<string>( existingGroup.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest );
                }
                else
                    throw new WebFaultException<string>( "Not Authorized to Edit this Group", System.Net.HttpStatusCode.Forbidden );
            }
        }
Esempio n. 8
0
        public void DeleteGroup( 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.Groups.GroupService GroupService = new Rock.Groups.GroupService();
                Rock.Groups.Group Group = GroupService.Get( int.Parse( id ) );
                if ( Group.Authorized( "Edit", currentUser ) )
                {
                    GroupService.Delete( Group, currentUser.PersonId );
                    GroupService.Save( Group, currentUser.PersonId );
                }
                else
                    throw new WebFaultException<string>( "Not Authorized to Edit this Group", System.Net.HttpStatusCode.Forbidden );
            }
        }