Esempio n. 1
0
        public void ApiCreatePerson(string apiKey, Rock.CRM.DTO.Person Person)
        {
            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.PersonService PersonService  = new Rock.CRM.PersonService();
                    Rock.CRM.Person        existingPerson = new Rock.CRM.Person();
                    PersonService.Add(existingPerson, user.PersonId);
                    uow.objectContext.Entry(existingPerson).CurrentValues.SetValues(Person);

                    if (existingPerson.IsValid)
                    {
                        PersonService.Save(existingPerson, user.PersonId);
                    }
                    else
                    {
                        throw new WebFaultException <string>(existingPerson.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest);
                    }
                }
                else
                {
                    throw new WebFaultException <string>("Invalid API Key", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
Esempio n. 2
0
        public void CreatePerson(Rock.CRM.DTO.Person Person)
        {
            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.PersonService PersonService  = new Rock.CRM.PersonService();
                Rock.CRM.Person        existingPerson = new Rock.CRM.Person();
                PersonService.Add(existingPerson, currentUser.PersonId);
                uow.objectContext.Entry(existingPerson).CurrentValues.SetValues(Person);

                if (existingPerson.IsValid)
                {
                    PersonService.Save(existingPerson, currentUser.PersonId);
                }
                else
                {
                    throw new WebFaultException <string>(existingPerson.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest);
                }
            }
        }