public void ApiCreateAttributeValue(string apiKey, Rock.Core.DTO.AttributeValue AttributeValue)
        {
            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.Core.AttributeValueService AttributeValueService  = new Rock.Core.AttributeValueService();
                    Rock.Core.AttributeValue        existingAttributeValue = new Rock.Core.AttributeValue();
                    AttributeValueService.Add(existingAttributeValue, user.PersonId);
                    uow.objectContext.Entry(existingAttributeValue).CurrentValues.SetValues(AttributeValue);

                    if (existingAttributeValue.IsValid)
                    {
                        AttributeValueService.Save(existingAttributeValue, user.PersonId);
                    }
                    else
                    {
                        throw new WebFaultException <string>(existingAttributeValue.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest);
                    }
                }
                else
                {
                    throw new WebFaultException <string>("Invalid API Key", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
        public void CreateAttributeValue(Rock.Core.DTO.AttributeValue AttributeValue)
        {
            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.Core.AttributeValueService AttributeValueService  = new Rock.Core.AttributeValueService();
                Rock.Core.AttributeValue        existingAttributeValue = new Rock.Core.AttributeValue();
                AttributeValueService.Add(existingAttributeValue, currentUser.PersonId);
                uow.objectContext.Entry(existingAttributeValue).CurrentValues.SetValues(AttributeValue);

                if (existingAttributeValue.IsValid)
                {
                    AttributeValueService.Save(existingAttributeValue, currentUser.PersonId);
                }
                else
                {
                    throw new WebFaultException <string>(existingAttributeValue.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest);
                }
            }
        }
示例#3
0
        public void ApiCreateAttributeValue( string apiKey, Rock.Core.DTO.AttributeValue AttributeValue )
        {
            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.Core.AttributeValueService AttributeValueService = new Rock.Core.AttributeValueService();
                    Rock.Core.AttributeValue existingAttributeValue = new Rock.Core.AttributeValue();
                    AttributeValueService.Add( existingAttributeValue, user.PersonId );
                    uow.objectContext.Entry(existingAttributeValue).CurrentValues.SetValues(AttributeValue);

                    if (existingAttributeValue.IsValid)
                        AttributeValueService.Save( existingAttributeValue, user.PersonId );
                    else
                        throw new WebFaultException<string>( existingAttributeValue.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest );
                }
                else
                    throw new WebFaultException<string>( "Invalid API Key", System.Net.HttpStatusCode.Forbidden );
            }
        }
示例#4
0
        public void CreateAttributeValue( Rock.Core.DTO.AttributeValue AttributeValue )
        {
            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.Core.AttributeValueService AttributeValueService = new Rock.Core.AttributeValueService();
                Rock.Core.AttributeValue existingAttributeValue = new Rock.Core.AttributeValue();
                AttributeValueService.Add( existingAttributeValue, currentUser.PersonId );
                uow.objectContext.Entry(existingAttributeValue).CurrentValues.SetValues(AttributeValue);

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