Пример #1
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);
                }
            }
        }
Пример #2
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);
                }
            }
        }
Пример #3
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 );
            }
        }
Пример #4
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 );
            }
        }