示例#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);
                }
            }
        }
示例#2
0
        public Rock.CRM.DTO.EmailTemplate 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.EmailTemplateService EmailTemplateService = new Rock.CRM.EmailTemplateService();
                    Rock.CRM.EmailTemplate        EmailTemplate        = EmailTemplateService.Get(int.Parse(id));
                    if (EmailTemplate.Authorized("View", user))
                    {
                        return(EmailTemplate.DataTransferObject);
                    }
                    else
                    {
                        throw new WebFaultException <string>("Not Authorized to View this EmailTemplate", System.Net.HttpStatusCode.Forbidden);
                    }
                }
                else
                {
                    throw new WebFaultException <string>("Invalid API Key", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
示例#3
0
        public void DeleteEmailTemplate(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.EmailTemplateService EmailTemplateService = new Rock.CRM.EmailTemplateService();
                Rock.CRM.EmailTemplate        EmailTemplate        = EmailTemplateService.Get(int.Parse(id));
                if (EmailTemplate.Authorized("Edit", currentUser))
                {
                    EmailTemplateService.Delete(EmailTemplate, currentUser.PersonId);
                    EmailTemplateService.Save(EmailTemplate, currentUser.PersonId);
                }
                else
                {
                    throw new WebFaultException <string>("Not Authorized to Edit this EmailTemplate", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
示例#4
0
        public Rock.CRM.DTO.EmailTemplate 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.EmailTemplateService EmailTemplateService = new Rock.CRM.EmailTemplateService();
                Rock.CRM.EmailTemplate        EmailTemplate        = EmailTemplateService.Get(int.Parse(id));
                if (EmailTemplate.Authorized("View", currentUser))
                {
                    return(EmailTemplate.DataTransferObject);
                }
                else
                {
                    throw new WebFaultException <string>("Not Authorized to View this EmailTemplate", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
示例#5
0
        public void ApiUpdateEmailTemplate(string id, 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 = EmailTemplateService.Get(int.Parse(id));
                    if (existingEmailTemplate.Authorized("Edit", user))
                    {
                        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>("Not Authorized to Edit this EmailTemplate", System.Net.HttpStatusCode.Forbidden);
                    }
                }
                else
                {
                    throw new WebFaultException <string>("Invalid API Key", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }