Esempio n. 1
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. 2
0
        public void CreateGroup(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 = new Rock.Groups.Group();
                GroupService.Add(existingGroup, currentUser.PersonId);
                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);
                }
            }
        }
Esempio n. 3
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. 4
0
        public void CreateGroup( 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 = new Rock.Groups.Group();
                GroupService.Add( existingGroup, currentUser.PersonId );
                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 );
            }
        }