newsletter = ($newsletter instanceof Newsletter) ? $newsletter->asArray() : $newsletter; $this->preview = $preview; $this->blocksRenderer = new Blocks\Renderer($this->newsletter); $this->columnsRenderer = new Columns\Renderer(); $this->preprocessor = new Preprocessor( $this->blocksRenderer, ContainerWrapper::getInstance()->get(TransactionalEmails::class) ); $this->cSSInliner = new \MailPoetVendor\CSS(); $this->template = file_get_contents(dirname(__FILE__) . '/' . self::NEWSLETTER_TEMPLATE); $this->premiumActivated = License::getLicense(); $bridge = new Bridge(); $this->mssActivated = $bridge->isMPSendingServiceEnabled(); } public function render($type = false) { $newsletter = $this->newsletter; $body = (is_array($newsletter['body'])) ? $newsletter['body'] : []; $content = (array_key_exists('content', $body)) ? $body['content'] : []; $styles = (array_key_exists('globalStyles', $body)) ? $body['globalStyles'] : []; if (!$this->premiumActivated && !$this->mssActivated && !$this->preview) { $content = $this->addMailpoetLogoContentBlock($content, $styles); } $content = $this->preprocessor->process($content); $renderedBody = $this->renderBody($content); $renderedStyles = $this->renderStyles($styles); $customFontsLinks = StylesHelper::getCustomFontsLinks($styles); $template = $this->injectContentIntoTemplate($this->template, [ htmlspecialchars($newsletter['subject']), $renderedStyles, $customFontsLinks, EHelper::escapeHtmlText($newsletter['preheader']), $renderedBody, ]); $templateDom = $this->inlineCSSStyles($template); $template = $this->postProcessTemplate($templateDom); $renderedNewsletter = [ 'html' => $template, 'text' => $this->renderTextVersion($template), ]; return ($type && !empty($renderedNewsletter[$type])) ? $renderedNewsletter[$type] : $renderedNewsletter; } /** * @param array $content * @return string */ private function renderBody($content) { $blocks = (array_key_exists('blocks', $content)) ? $content['blocks'] : []; $_this = $this; $renderedContent = array_map(function($contentBlock) use($_this) { $columnsData = $_this->blocksRenderer->render($contentBlock); return $_this->columnsRenderer->render( $contentBlock, $columnsData ); }, $blocks); return implode('', $renderedContent); } /** * @param array $styles * @return string */ private function renderStyles(array $styles) { $css = ''; foreach ($styles as $selector => $style) { switch ($selector) { case 'text': $selector = 'td.mailpoet_paragraph, td.mailpoet_blockquote, li.mailpoet_paragraph'; break; case 'body': $selector = 'body, .mailpoet-wrapper'; break; case 'link': $selector = '.mailpoet-wrapper a'; break; case 'wrapper': $selector = '.mailpoet_content-wrapper'; break; } $css .= StylesHelper::setStyle($style, $selector); } return $css; } /** * @param string $template * @param string[] $content * @return string|string[]|null */ private function injectContentIntoTemplate($template, $content) { return preg_replace_callback('/{{\w+}}/', function($matches) use (&$content) { return array_shift($content); }, $template); } /** * @param string $template * @return DomNode */ private function inlineCSSStyles($template) { return $this->cSSInliner->inlineCSS($template); } /** * @param string $template * @return string */ private function renderTextVersion($template) { $template = (mb_detect_encoding($template, 'UTF-8', true)) ? $template : utf8_encode($template); return @\Html2Text\Html2Text::convert($template); } /** * @param DomNode $templateDom * @return string */ private function postProcessTemplate(DomNode $templateDom) { // replace spaces in image tag URLs foreach ($templateDom->query('img') as $image) { $image->src = str_replace(' ', '%20', $image->src); } $template = WPFunctions::get()->applyFilters( self::FILTER_POST_PROCESS, $templateDom->__toString() ); return $template; } /** * @param array $content * @param array $styles * @return array */ private function addMailpoetLogoContentBlock(array $content, array $styles) { if (empty($content['blocks'])) return $content; $content['blocks'][] = [ 'type' => 'container', 'orientation' => 'horizontal', 'styles' => [ 'block' => [ 'backgroundColor' => (!empty($styles['body']['backgroundColor'])) ? $styles['body']['backgroundColor'] : 'transparent', ], ], 'blocks' => [ [ 'type' => 'container', 'orientation' => 'vertical', 'styles' => [ ], 'blocks' => [ [ 'type' => 'image', 'link' => 'http://www.mailpoet.com', 'src' => Env::$assetsUrl . '/img/mailpoet_logo_newsletter.png', 'fullWidth' => false, 'alt' => 'MailPoet', 'width' => '108px', 'height' => '65px', 'styles' => [ 'block' => [ 'textAlign' => 'center', ], ], ], ], ], ], ]; return $content; } }