public void UpdateGroupType(string id, 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 = GroupTypeService.Get(int.Parse(id)); if (existingGroupType.Authorized("Edit", currentUser)) { 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); } } else { throw new WebFaultException <string>("Not Authorized to Edit this GroupType", System.Net.HttpStatusCode.Forbidden); } } }
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); } } }