예제 #1
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);
                }
            }
        }
예제 #2
0
        public void CreateAddress(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 = new Rock.CRM.Address();
                AddressService.Add(existingAddress, currentUser.PersonId);
                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);
                }
            }
        }
예제 #3
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 );
            }
        }
예제 #4
0
        public void CreateAddress( 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 = new Rock.CRM.Address();
                AddressService.Add( existingAddress, currentUser.PersonId );
                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 );
            }
        }