Пример #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 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);
                }
            }
        }
Пример #3
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);
                }
            }
        }
Пример #4
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);
                }
            }
        }
Пример #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Email"/> class.
 /// </summary>
 /// <param name="templateGuid">The template GUID.</param>
 public Email(Guid templateGuid)
 {
     Rock.CRM.EmailTemplateService service  = new CRM.EmailTemplateService();
     Rock.CRM.EmailTemplate        template = service.GetByGuid(templateGuid);
     if (template != null)
     {
         To      = template.To;
         From    = template.From;
         Cc      = template.Cc;
         Bcc     = template.Bcc;
         Subject = template.Subject;
         Body    = template.Body;
     }
 }
Пример #6
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);
                }
            }
        }
Пример #7
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 );
            }
        }
Пример #8
0
        public void CreateEmailTemplate( 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 = new Rock.CRM.EmailTemplate();
                EmailTemplateService.Add( existingEmailTemplate, currentUser.PersonId );
                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 );
            }
        }