コード例 #1
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);
                }
            }
        }
コード例 #2
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);
                }
            }
        }
コード例 #3
0
        public void CreateGroupType(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 = new Rock.Groups.GroupType();
                GroupTypeService.Add(existingGroupType, currentUser.PersonId);
                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);
                }
            }
        }
コード例 #4
0
ファイル: GroupTypeService.cs プロジェクト: rowlek/Rock-ChMS
        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 Rock.Groups.DTO.GroupType 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.Groups.GroupTypeService GroupTypeService = new Rock.Groups.GroupTypeService();
                Rock.Groups.GroupType        GroupType        = GroupTypeService.Get(int.Parse(id));
                if (GroupType.Authorized("View", currentUser))
                {
                    return(GroupType.DataTransferObject);
                }
                else
                {
                    throw new WebFaultException <string>("Not Authorized to View this GroupType", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
コード例 #6
0
ファイル: GroupTypeService.cs プロジェクト: rowlek/Rock-ChMS
        public void CreateGroupType( 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 = new Rock.Groups.GroupType();
                GroupTypeService.Add( existingGroupType, currentUser.PersonId );
                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 );
            }
        }