예제 #1
0
        public void UpdateGroupType(string id, Rock.Groups.DTO.GroupType GroupType)
        {
            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.GroupTypeService GroupTypeService  = new Rock.Groups.GroupTypeService();
                Rock.Groups.GroupType        existingGroupType = GroupTypeService.Get(int.Parse(id));
                if (existingGroupType.Authorized("Edit", currentUser))
                {
                    uow.objectContext.Entry(existingGroupType).CurrentValues.SetValues(GroupType);

                    if (existingGroupType.IsValid)
                    {
                        GroupTypeService.Save(existingGroupType, currentUser.PersonId);
                    }
                    else
                    {
                        throw new WebFaultException <string>(existingGroupType.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest);
                    }
                }
                else
                {
                    throw new WebFaultException <string>("Not Authorized to Edit this GroupType", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
예제 #2
0
        public void ApiDeleteGroupType(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.GroupTypeService GroupTypeService = new Rock.Groups.GroupTypeService();
                    Rock.Groups.GroupType        GroupType        = GroupTypeService.Get(int.Parse(id));
                    if (GroupType.Authorized("Edit", user))
                    {
                        GroupTypeService.Delete(GroupType, user.PersonId);
                        GroupTypeService.Save(GroupType, user.PersonId);
                    }
                    else
                    {
                        throw new WebFaultException <string>("Not Authorized to Edit this GroupType", System.Net.HttpStatusCode.Forbidden);
                    }
                }
                else
                {
                    throw new WebFaultException <string>("Invalid API Key", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
예제 #3
0
        public void DeleteGroupType(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.GroupTypeService GroupTypeService = new Rock.Groups.GroupTypeService();
                Rock.Groups.GroupType        GroupType        = GroupTypeService.Get(int.Parse(id));
                if (GroupType.Authorized("Edit", currentUser))
                {
                    GroupTypeService.Delete(GroupType, currentUser.PersonId);
                    GroupTypeService.Save(GroupType, currentUser.PersonId);
                }
                else
                {
                    throw new WebFaultException <string>("Not Authorized to Edit this GroupType", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
예제 #4
0
        public void ApiCreateGroupType(string apiKey, Rock.Groups.DTO.GroupType GroupType)
        {
            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.GroupTypeService GroupTypeService  = new Rock.Groups.GroupTypeService();
                    Rock.Groups.GroupType        existingGroupType = new Rock.Groups.GroupType();
                    GroupTypeService.Add(existingGroupType, user.PersonId);
                    uow.objectContext.Entry(existingGroupType).CurrentValues.SetValues(GroupType);

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

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

                    if (existingGroupType.IsValid)
                        GroupTypeService.Save( existingGroupType, currentUser.PersonId );
                    else
                        throw new WebFaultException<string>( existingGroupType.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest );
                }
                else
                    throw new WebFaultException<string>( "Not Authorized to Edit this GroupType", System.Net.HttpStatusCode.Forbidden );
            }
        }
예제 #8
0
        public void DeleteGroupType( 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.GroupTypeService GroupTypeService = new Rock.Groups.GroupTypeService();
                Rock.Groups.GroupType GroupType = GroupTypeService.Get( int.Parse( id ) );
                if ( GroupType.Authorized( "Edit", currentUser ) )
                {
                    GroupTypeService.Delete( GroupType, currentUser.PersonId );
                    GroupTypeService.Save( GroupType, currentUser.PersonId );
                }
                else
                    throw new WebFaultException<string>( "Not Authorized to Edit this GroupType", System.Net.HttpStatusCode.Forbidden );
            }
        }