public Rock.CMS.DTO.PageRoute ApiGet(string id, string apiKey) { 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.PageRouteService PageRouteService = new Rock.CMS.PageRouteService(); Rock.CMS.PageRoute PageRoute = PageRouteService.Get(int.Parse(id)); if (PageRoute.Authorized("View", user)) { return(PageRoute.DataTransferObject); } else { throw new WebFaultException <string>("Not Authorized to View this PageRoute", System.Net.HttpStatusCode.Forbidden); } } else { throw new WebFaultException <string>("Invalid API Key", System.Net.HttpStatusCode.Forbidden); } } }
public void UpdatePageRoute(string id, Rock.CMS.DTO.PageRoute PageRoute) { 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.PageRouteService PageRouteService = new Rock.CMS.PageRouteService(); Rock.CMS.PageRoute existingPageRoute = PageRouteService.Get(int.Parse(id)); if (existingPageRoute.Authorized("Edit", currentUser)) { uow.objectContext.Entry(existingPageRoute).CurrentValues.SetValues(PageRoute); if (existingPageRoute.IsValid) { PageRouteService.Save(existingPageRoute, currentUser.PersonId); } else { throw new WebFaultException <string>(existingPageRoute.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest); } } else { throw new WebFaultException <string>("Not Authorized to Edit this PageRoute", System.Net.HttpStatusCode.Forbidden); } } }
public void DeletePageRoute(string id) { 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.PageRouteService PageRouteService = new Rock.CMS.PageRouteService(); Rock.CMS.PageRoute PageRoute = PageRouteService.Get(int.Parse(id)); if (PageRoute.Authorized("Edit", currentUser)) { PageRouteService.Delete(PageRoute, currentUser.PersonId); PageRouteService.Save(PageRoute, currentUser.PersonId); } else { throw new WebFaultException <string>("Not Authorized to Edit this PageRoute", System.Net.HttpStatusCode.Forbidden); } } }
public Rock.CMS.DTO.PageRoute Get(string id) { 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.PageRouteService PageRouteService = new Rock.CMS.PageRouteService(); Rock.CMS.PageRoute PageRoute = PageRouteService.Get(int.Parse(id)); if (PageRoute.Authorized("View", currentUser)) { return(PageRoute.DataTransferObject); } else { throw new WebFaultException <string>("Not Authorized to View this PageRoute", System.Net.HttpStatusCode.Forbidden); } } }
public void ApiDeletePageRoute( string id, string apiKey ) { 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.PageRouteService PageRouteService = new Rock.CMS.PageRouteService(); Rock.CMS.PageRoute PageRoute = PageRouteService.Get( int.Parse( id ) ); if ( PageRoute.Authorized( "Edit", user ) ) { PageRouteService.Delete( PageRoute, user.PersonId ); PageRouteService.Save( PageRoute, user.PersonId ); } else throw new WebFaultException<string>( "Not Authorized to Edit this PageRoute", System.Net.HttpStatusCode.Forbidden ); } else throw new WebFaultException<string>( "Invalid API Key", System.Net.HttpStatusCode.Forbidden ); } }
public void ApiUpdatePageRoute(string id, string apiKey, Rock.CMS.DTO.PageRoute PageRoute) { 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.PageRouteService PageRouteService = new Rock.CMS.PageRouteService(); Rock.CMS.PageRoute existingPageRoute = PageRouteService.Get(int.Parse(id)); if (existingPageRoute.Authorized("Edit", user)) { uow.objectContext.Entry(existingPageRoute).CurrentValues.SetValues(PageRoute); if (existingPageRoute.IsValid) { PageRouteService.Save(existingPageRoute, user.PersonId); } else { throw new WebFaultException <string>(existingPageRoute.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest); } } else { throw new WebFaultException <string>("Not Authorized to Edit this PageRoute", System.Net.HttpStatusCode.Forbidden); } } else { throw new WebFaultException <string>("Invalid API Key", System.Net.HttpStatusCode.Forbidden); } } }
public Rock.CMS.DTO.PageRoute ApiGet( string id, string apiKey ) { 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.PageRouteService PageRouteService = new Rock.CMS.PageRouteService(); Rock.CMS.PageRoute PageRoute = PageRouteService.Get( int.Parse( id ) ); if ( PageRoute.Authorized( "View", user ) ) return PageRoute.DataTransferObject; else throw new WebFaultException<string>( "Not Authorized to View this PageRoute", System.Net.HttpStatusCode.Forbidden ); } else throw new WebFaultException<string>( "Invalid API Key", System.Net.HttpStatusCode.Forbidden ); } }
public void UpdatePageRoute( string id, Rock.CMS.DTO.PageRoute PageRoute ) { 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.PageRouteService PageRouteService = new Rock.CMS.PageRouteService(); Rock.CMS.PageRoute existingPageRoute = PageRouteService.Get( int.Parse( id ) ); if ( existingPageRoute.Authorized( "Edit", currentUser ) ) { uow.objectContext.Entry(existingPageRoute).CurrentValues.SetValues(PageRoute); if (existingPageRoute.IsValid) PageRouteService.Save( existingPageRoute, currentUser.PersonId ); else throw new WebFaultException<string>( existingPageRoute.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest ); } else throw new WebFaultException<string>( "Not Authorized to Edit this PageRoute", System.Net.HttpStatusCode.Forbidden ); } }
public Rock.CMS.DTO.PageRoute Get( string id ) { 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.PageRouteService PageRouteService = new Rock.CMS.PageRouteService(); Rock.CMS.PageRoute PageRoute = PageRouteService.Get( int.Parse( id ) ); if ( PageRoute.Authorized( "View", currentUser ) ) return PageRoute.DataTransferObject; else throw new WebFaultException<string>( "Not Authorized to View this PageRoute", System.Net.HttpStatusCode.Forbidden ); } }
public void DeletePageRoute( string id ) { 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.PageRouteService PageRouteService = new Rock.CMS.PageRouteService(); Rock.CMS.PageRoute PageRoute = PageRouteService.Get( int.Parse( id ) ); if ( PageRoute.Authorized( "Edit", currentUser ) ) { PageRouteService.Delete( PageRoute, currentUser.PersonId ); PageRouteService.Save( PageRoute, currentUser.PersonId ); } else throw new WebFaultException<string>( "Not Authorized to Edit this PageRoute", System.Net.HttpStatusCode.Forbidden ); } }
public void ApiUpdatePageRoute( string id, string apiKey, Rock.CMS.DTO.PageRoute PageRoute ) { 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.PageRouteService PageRouteService = new Rock.CMS.PageRouteService(); Rock.CMS.PageRoute existingPageRoute = PageRouteService.Get( int.Parse( id ) ); if ( existingPageRoute.Authorized( "Edit", user ) ) { uow.objectContext.Entry(existingPageRoute).CurrentValues.SetValues(PageRoute); if (existingPageRoute.IsValid) PageRouteService.Save( existingPageRoute, user.PersonId ); else throw new WebFaultException<string>( existingPageRoute.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest ); } else throw new WebFaultException<string>( "Not Authorized to Edit this PageRoute", System.Net.HttpStatusCode.Forbidden ); } else throw new WebFaultException<string>( "Invalid API Key", System.Net.HttpStatusCode.Forbidden ); } }