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 UpdateAttributeValue(string id, 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 = AttributeValueService.Get(int.Parse(id));
                if (existingAttributeValue.Authorized("Edit", currentUser))
                {
                    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);
                    }
                }
                else
                {
                    throw new WebFaultException <string>("Not Authorized to Edit this AttributeValue", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
Beispiel #3
0
        /// <summary>
        /// Gets all the values of an attribute for a specific entity
        /// </summary>
        /// <param name="entityId">The entity id.</param>
        /// <returns></returns>
        public List <Rock.Core.DTO.AttributeValue> GetValues(int entityId)
        {
            List <Rock.Core.DTO.AttributeValue> values = new List <DTO.AttributeValue>();

            foreach (var value in this.AttributeValues.
                     Where(v => v.EntityId == entityId).
                     OrderBy(v => v.Order))
            {
                values.Add(value.DataTransferObject);
            }

            if (values.Count == 0)
            {
                var value = new Rock.Core.DTO.AttributeValue();
                value.AttributeId = this.Id;
                value.Value       = this.DefaultValue;
                values.Add(value);
            }

            return(values);
        }