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