Example #1
0
        public void ApiCreateBlog( string apiKey, Rock.CMS.DTO.Blog Blog )
        {
            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.CMS.BlogService BlogService = new Rock.CMS.BlogService();
                    Rock.CMS.Blog existingBlog = new Rock.CMS.Blog();
                    BlogService.Add( existingBlog, user.PersonId );
                    uow.objectContext.Entry(existingBlog).CurrentValues.SetValues(Blog);

                    if (existingBlog.IsValid)
                        BlogService.Save( existingBlog, user.PersonId );
                    else
                        throw new WebFaultException<string>( existingBlog.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest );
                }
                else
                    throw new WebFaultException<string>( "Invalid API Key", System.Net.HttpStatusCode.Forbidden );
            }
        }
Example #2
0
        public void CreateBlog( Rock.CMS.DTO.Blog Blog )
        {
            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.CMS.BlogService BlogService = new Rock.CMS.BlogService();
                Rock.CMS.Blog existingBlog = new Rock.CMS.Blog();
                BlogService.Add( existingBlog, currentUser.PersonId );
                uow.objectContext.Entry(existingBlog).CurrentValues.SetValues(Blog);

                if (existingBlog.IsValid)
                    BlogService.Save( existingBlog, currentUser.PersonId );
                else
                    throw new WebFaultException<string>( existingBlog.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest );
            }
        }