示例#1
0
        public void UpdateAddress(string id, Rock.CRM.DTO.Address Address)
        {
            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.CRM.AddressService AddressService  = new Rock.CRM.AddressService();
                Rock.CRM.Address        existingAddress = AddressService.Get(int.Parse(id));
                if (existingAddress.Authorized("Edit", currentUser))
                {
                    uow.objectContext.Entry(existingAddress).CurrentValues.SetValues(Address);

                    if (existingAddress.IsValid)
                    {
                        AddressService.Save(existingAddress, currentUser.PersonId);
                    }
                    else
                    {
                        throw new WebFaultException <string>(existingAddress.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest);
                    }
                }
                else
                {
                    throw new WebFaultException <string>("Not Authorized to Edit this Address", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
示例#2
0
        public Rock.CRM.DTO.Address ApiGeocode(string apiKey, Rock.CRM.DTO.Address address)
        {
            using (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)
                {
                    if (address != null)
                    {
                        Rock.CRM.AddressService addressService = new Rock.CRM.AddressService();
                        Rock.CRM.Address        addressModel   = addressService.Geocode(address, user.PersonId);
                        return(addressModel.DataTransferObject);
                    }
                    else
                    {
                        throw new WebFaultException <string>("Invalid Address", System.Net.HttpStatusCode.BadRequest);
                    }
                }
                else
                {
                    throw new WebFaultException <string>("Invalid API Key", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
示例#3
0
        public Rock.CRM.DTO.Address 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.CRM.AddressService AddressService = new Rock.CRM.AddressService();
                    Rock.CRM.Address        Address        = AddressService.Get(int.Parse(id));
                    if (Address.Authorized("View", user))
                    {
                        return(Address.DataTransferObject);
                    }
                    else
                    {
                        throw new WebFaultException <string>("Not Authorized to View this Address", System.Net.HttpStatusCode.Forbidden);
                    }
                }
                else
                {
                    throw new WebFaultException <string>("Invalid API Key", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
示例#4
0
        public void ApiDeleteAddress(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.CRM.AddressService AddressService = new Rock.CRM.AddressService();
                    Rock.CRM.Address        Address        = AddressService.Get(int.Parse(id));
                    if (Address.Authorized("Edit", user))
                    {
                        AddressService.Delete(Address, user.PersonId);
                        AddressService.Save(Address, user.PersonId);
                    }
                    else
                    {
                        throw new WebFaultException <string>("Not Authorized to Edit this Address", System.Net.HttpStatusCode.Forbidden);
                    }
                }
                else
                {
                    throw new WebFaultException <string>("Invalid API Key", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
示例#5
0
        public void DeleteAddress(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.CRM.AddressService AddressService = new Rock.CRM.AddressService();
                Rock.CRM.Address        Address        = AddressService.Get(int.Parse(id));
                if (Address.Authorized("Edit", currentUser))
                {
                    AddressService.Delete(Address, currentUser.PersonId);
                    AddressService.Save(Address, currentUser.PersonId);
                }
                else
                {
                    throw new WebFaultException <string>("Not Authorized to Edit this Address", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
示例#6
0
        public void ApiCreateAddress(string apiKey, Rock.CRM.DTO.Address Address)
        {
            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.CRM.AddressService AddressService  = new Rock.CRM.AddressService();
                    Rock.CRM.Address        existingAddress = new Rock.CRM.Address();
                    AddressService.Add(existingAddress, user.PersonId);
                    uow.objectContext.Entry(existingAddress).CurrentValues.SetValues(Address);

                    if (existingAddress.IsValid)
                    {
                        AddressService.Save(existingAddress, user.PersonId);
                    }
                    else
                    {
                        throw new WebFaultException <string>(existingAddress.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest);
                    }
                }
                else
                {
                    throw new WebFaultException <string>("Invalid API Key", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
示例#7
0
        public Rock.CRM.DTO.Address Standardize(Rock.CRM.DTO.Address address)
        {
            var currentUser = Rock.CMS.UserService.GetCurrentUser();

            if (currentUser == null)
            {
                throw new WebFaultException <string>("Must be logged in", System.Net.HttpStatusCode.Forbidden);
            }

            using (new Rock.Data.UnitOfWorkScope())
            {
                if (address != null)
                {
                    Rock.CRM.AddressService addressService = new Rock.CRM.AddressService();
                    Rock.CRM.Address        addressModel   = addressService.Standardize(address, currentUser.PersonId);
                    return(addressModel.DataTransferObject);
                }
                else
                {
                    throw new WebFaultException <string>("Invalid Address", System.Net.HttpStatusCode.BadRequest);
                }
            }
        }
示例#8
0
        public void ApiDeleteAddress( 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.CRM.AddressService AddressService = new Rock.CRM.AddressService();
                    Rock.CRM.Address Address = AddressService.Get( int.Parse( id ) );
                    if ( Address.Authorized( "Edit", user ) )
                    {
                        AddressService.Delete( Address, user.PersonId );
                        AddressService.Save( Address, user.PersonId );
                    }
                    else
                        throw new WebFaultException<string>( "Not Authorized to Edit this Address", System.Net.HttpStatusCode.Forbidden );
                }
                else
                    throw new WebFaultException<string>( "Invalid API Key", System.Net.HttpStatusCode.Forbidden );
            }
        }
示例#9
0
        public void ApiCreateAddress( string apiKey, Rock.CRM.DTO.Address Address )
        {
            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.CRM.AddressService AddressService = new Rock.CRM.AddressService();
                    Rock.CRM.Address existingAddress = new Rock.CRM.Address();
                    AddressService.Add( existingAddress, user.PersonId );
                    uow.objectContext.Entry(existingAddress).CurrentValues.SetValues(Address);

                    if (existingAddress.IsValid)
                        AddressService.Save( existingAddress, user.PersonId );
                    else
                        throw new WebFaultException<string>( existingAddress.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest );
                }
                else
                    throw new WebFaultException<string>( "Invalid API Key", System.Net.HttpStatusCode.Forbidden );
            }
        }
示例#10
0
        public Rock.CRM.DTO.Address 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.CRM.AddressService AddressService = new Rock.CRM.AddressService();
                Rock.CRM.Address        Address        = AddressService.Get(int.Parse(id));
                if (Address.Authorized("View", currentUser))
                {
                    return(Address.DataTransferObject);
                }
                else
                {
                    throw new WebFaultException <string>("Not Authorized to View this Address", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
示例#11
0
        public Rock.CRM.DTO.Address 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.CRM.AddressService AddressService = new Rock.CRM.AddressService();
                    Rock.CRM.Address Address = AddressService.Get( int.Parse( id ) );
                    if ( Address.Authorized( "View", user ) )
                        return Address.DataTransferObject;
                    else
                        throw new WebFaultException<string>( "Not Authorized to View this Address", System.Net.HttpStatusCode.Forbidden );
                }
                else
                    throw new WebFaultException<string>( "Invalid API Key", System.Net.HttpStatusCode.Forbidden );
            }
        }
示例#12
0
        public void UpdateAddress( string id, Rock.CRM.DTO.Address Address )
        {
            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.CRM.AddressService AddressService = new Rock.CRM.AddressService();
                Rock.CRM.Address existingAddress = AddressService.Get( int.Parse( id ) );
                if ( existingAddress.Authorized( "Edit", currentUser ) )
                {
                    uow.objectContext.Entry(existingAddress).CurrentValues.SetValues(Address);

                    if (existingAddress.IsValid)
                        AddressService.Save( existingAddress, currentUser.PersonId );
                    else
                        throw new WebFaultException<string>( existingAddress.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest );
                }
                else
                    throw new WebFaultException<string>( "Not Authorized to Edit this Address", System.Net.HttpStatusCode.Forbidden );
            }
        }
示例#13
0
        public Rock.CRM.DTO.Address 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.CRM.AddressService AddressService = new Rock.CRM.AddressService();
                Rock.CRM.Address Address = AddressService.Get( int.Parse( id ) );
                if ( Address.Authorized( "View", currentUser ) )
                    return Address.DataTransferObject;
                else
                    throw new WebFaultException<string>( "Not Authorized to View this Address", System.Net.HttpStatusCode.Forbidden );
            }
        }
示例#14
0
        public void DeleteAddress( 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.CRM.AddressService AddressService = new Rock.CRM.AddressService();
                Rock.CRM.Address Address = AddressService.Get( int.Parse( id ) );
                if ( Address.Authorized( "Edit", currentUser ) )
                {
                    AddressService.Delete( Address, currentUser.PersonId );
                    AddressService.Save( Address, currentUser.PersonId );
                }
                else
                    throw new WebFaultException<string>( "Not Authorized to Edit this Address", System.Net.HttpStatusCode.Forbidden );
            }
        }