Example #1
0
        public void UpdateEmailTemplate(string id, Rock.CRM.DTO.EmailTemplate EmailTemplate)
        {
            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.EmailTemplateService EmailTemplateService  = new Rock.CRM.EmailTemplateService();
                Rock.CRM.EmailTemplate        existingEmailTemplate = EmailTemplateService.Get(int.Parse(id));
                if (existingEmailTemplate.Authorized("Edit", currentUser))
                {
                    uow.objectContext.Entry(existingEmailTemplate).CurrentValues.SetValues(EmailTemplate);

                    if (existingEmailTemplate.IsValid)
                    {
                        EmailTemplateService.Save(existingEmailTemplate, currentUser.PersonId);
                    }
                    else
                    {
                        throw new WebFaultException <string>(existingEmailTemplate.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest);
                    }
                }
                else
                {
                    throw new WebFaultException <string>("Not Authorized to Edit this EmailTemplate", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
Example #2
0
        public void ApiCreateEmailTemplate(string apiKey, Rock.CRM.DTO.EmailTemplate EmailTemplate)
        {
            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.EmailTemplateService EmailTemplateService  = new Rock.CRM.EmailTemplateService();
                    Rock.CRM.EmailTemplate        existingEmailTemplate = new Rock.CRM.EmailTemplate();
                    EmailTemplateService.Add(existingEmailTemplate, user.PersonId);
                    uow.objectContext.Entry(existingEmailTemplate).CurrentValues.SetValues(EmailTemplate);

                    if (existingEmailTemplate.IsValid)
                    {
                        EmailTemplateService.Save(existingEmailTemplate, user.PersonId);
                    }
                    else
                    {
                        throw new WebFaultException <string>(existingEmailTemplate.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest);
                    }
                }
                else
                {
                    throw new WebFaultException <string>("Invalid API Key", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }