Files
piratepoet/lib/Newsletter/Editor/PostTransformer.php
2019-03-07 08:30:14 -05:00

270 lines
7.8 KiB
PHP

<?php
namespace MailPoet\Newsletter\Editor;
use MailPoet\WP\Functions as WPFunctions;
use MailPoet\Config\Env;
if (!defined('ABSPATH')) exit;
class PostTransformer {
private $args;
private $with_layout;
private $image_position;
private $wp;
function __construct($args) {
$this->args = $args;
$this->with_layout = isset($args['withLayout']) ? (bool)filter_var($args['withLayout'], FILTER_VALIDATE_BOOLEAN) : false;
$this->image_position = 'left';
$this->wp = new WPFunctions();
}
function getDivider() {
if (empty($this->with_layout)) {
return $this->args['divider'];
}
return LayoutHelper::row(array(
LayoutHelper::col(array($this->args['divider']))
));
}
function transform($post) {
if (empty($this->with_layout)) {
return $this->getStructure($post);
}
return $this->getStructureWithLayout($post);
}
private function getStructure($post) {
$content = $this->getContent($post, true, $this->args['displayType']);
$title = $this->getTitle($post);
$featured_image = $this->getFeaturedImage($post);
$featured_image_position = $this->args['featuredImagePosition'];
if ($featured_image && $featured_image_position === 'belowTitle' && $this->args['displayType'] === 'excerpt') {
array_unshift($content, $title, $featured_image);
return $content;
}
if ($content[0]['type'] === 'text') {
$content[0]['text'] = $title['text'] . $content[0]['text'];
} else {
array_unshift($content, $title);
}
if ($featured_image && $this->args['displayType'] === 'excerpt') {
array_unshift($content, $featured_image);
}
return $content;
}
private function getStructureWithLayout($post) {
$with_post_class = $this->args['displayType'] === 'full';
$content = $this->getContent($post, $with_post_class, $this->args['displayType']);
$title = $this->getTitle($post);
$featured_image = $this->getFeaturedImage($post);
$featured_image_position = $this->args['featuredImagePosition'];
if (!$featured_image || $featured_image_position === 'none' || $this->args['displayType'] !== 'excerpt') {
array_unshift($content, $title);
return array(
LayoutHelper::row(array(
LayoutHelper::col($content)
))
);
}
$title_position = isset($this->args['titlePosition']) ? $this->args['titlePosition'] : '';
if ($featured_image_position === 'aboveTitle' || $featured_image_position === 'belowTitle') {
$featured_image_position = 'centered';
}
if ($featured_image_position === 'centered') {
if ($title_position === 'aboveExcerpt') {
array_unshift($content, $featured_image, $title);
} else {
array_unshift($content, $title, $featured_image);
}
return array(
LayoutHelper::row(array(
LayoutHelper::col($content)
))
);
}
if ($title_position === 'aboveExcerpt') {
array_unshift($content, $title);
}
if ($featured_image_position === 'alternate') {
$featured_image_position = $this->nextImagePosition();
}
$content = ($featured_image_position === 'left')
? array(
LayoutHelper::col(array($featured_image)),
LayoutHelper::col($content)
)
: array(
LayoutHelper::col($content),
LayoutHelper::col(array($featured_image))
);
$result = array(
LayoutHelper::row($content)
);
if ($title_position !== 'aboveExcerpt') {
array_unshift(
$result,
LayoutHelper::row(
[
LayoutHelper::col([$title]),
]
)
);
}
return $result;
}
private function nextImagePosition() {
$this->image_position = ($this->image_position === 'left') ? 'right' : 'left';
return $this->image_position;
}
private function getContent($post, $with_post_class, $display_type) {
$content_manager = new PostContentManager();
$meta_manager = new MetaInformationManager();
$content = $content_manager->getContent($post, $this->args['displayType']);
$content = $meta_manager->appendMetaInformation($content, $post, $this->args);
$content = $content_manager->filterContent($content, $display_type, $with_post_class);
$structure_transformer = new StructureTransformer();
$content = $structure_transformer->transform($content, $this->args['imageFullWidth'] === true);
$read_more_btn = $this->getReadMoreButton($post);
$blocks_count = count($content);
if ($read_more_btn['type'] === 'text' && $blocks_count > 0 && $content[$blocks_count - 1]['type'] === 'text') {
$content[$blocks_count - 1]['text'] .= $read_more_btn['text'];
} else {
$content[] = $read_more_btn;
}
return $content;
}
private function getImageInfo($id) {
/*
* In some cases wp_get_attachment_image_src ignore the second parameter
* and use global variable $content_width value instead.
* By overriding it ourselves when ensure a constant behaviour regardless
* of the user setup.
*
* https://mailpoet.atlassian.net/browse/MAILPOET-1365
*/
global $content_width; // default is NULL
$content_width_copy = $content_width;
$content_width = Env::NEWSLETTER_CONTENT_WIDTH;
$image_info = $this->wp->wpGetAttachmentImageSrc($id, 'mailpoet_newsletter_max');
$content_width = $content_width_copy;
return $image_info;
}
private function getFeaturedImage($post) {
$post_id = $post->ID;
$post_title = $post->post_title;
$image_full_width = (bool)filter_var($this->args['imageFullWidth'], FILTER_VALIDATE_BOOLEAN);
if (!has_post_thumbnail($post_id)) {
return false;
}
$thumbnail_id = $this->wp->getPostThumbnailId($post_id);
$image_info = $this->getImageInfo($thumbnail_id);
// get alt text
$alt_text = trim(strip_tags(get_post_meta(
$thumbnail_id,
'_wp_attachment_image_alt',
true
)));
if (strlen($alt_text) === 0) {
// if the alt text is empty then use the post title
$alt_text = trim(strip_tags($post_title));
}
return array(
'type' => 'image',
'link' => $this->wp->getPermalink($post_id),
'src' => $image_info[0],
'alt' => $alt_text,
'fullWidth' => $image_full_width,
'width' => $image_info[1],
'height' => $image_info[2],
'styles' => array(
'block' => array(
'textAlign' => 'center',
),
),
);
}
private function getReadMoreButton($post) {
if ($this->args['readMoreType'] === 'button') {
$button = $this->args['readMoreButton'];
$button['url'] = $this->wp->getPermalink($post->ID);
return $button;
}
$read_more_text = sprintf(
'<p><a href="%s">%s</a></p>',
$this->wp->getPermalink($post->ID),
$this->args['readMoreText']
);
return array(
'type' => 'text',
'text' => $read_more_text,
);
}
private function getTitle($post) {
$title = $post->post_title;
$top_padding = '20px';
if (filter_var($this->args['titleIsLink'], FILTER_VALIDATE_BOOLEAN)) {
$title = '<a href="' . $this->wp->getPermalink($post->ID) . '">' . $title . '</a>';
}
if (in_array($this->args['titleFormat'], array('h1', 'h2', 'h3'))) {
$tag = $this->args['titleFormat'];
} elseif ($this->args['titleFormat'] === 'ul') {
$tag = 'li';
$top_padding = '0';
} else {
$tag = 'h1';
}
$alignment = (in_array($this->args['titleAlignment'], array('left', 'right', 'center'))) ? $this->args['titleAlignment'] : 'left';
$title = '<' . $tag . ' data-post-id="' . $post->ID . '" style="text-align: ' . $alignment . ';">' . $title . '</' . $tag . '>';
return array(
'type' => 'text',
'text' => $title,
'styles' => [
'block' => [
'paddingTop' => $top_padding,
],
]
);
}
}