Files
piratepoet/lib/WP/Emoji.php
Jan Jakeš 54549ff037 Convert variable names to camel case
[MAILPOET-1796]
2020-01-14 15:22:42 +01:00

68 lines
1.8 KiB
PHP

<?php
namespace MailPoet\WP;
use MailPoet\WP\Functions as WPFunctions;
class Emoji {
/** @var WPFunctions */
private $wp;
public function __construct(WPFunctions $wp = null) {
if ($wp === null) {
$wp = new WPFunctions();
}
$this->wp = $wp;
}
public function encodeEmojisInBody($newsletterRenderedBody) {
if (is_array($newsletterRenderedBody)) {
return array_map([$this, 'encodeRenderedBodyForUTF8Column'], $newsletterRenderedBody);
}
return $this->encodeRenderedBodyForUTF8Column($newsletterRenderedBody);
}
public function decodeEmojisInBody($newsletterRenderedBody) {
if (is_array($newsletterRenderedBody)) {
return array_map([$this, 'decodeEntities'], $newsletterRenderedBody);
}
return $this->decodeEntities($newsletterRenderedBody);
}
private function encodeRenderedBodyForUTF8Column($value) {
return $this->encodeForUTF8Column(
MP_SENDING_QUEUES_TABLE,
'newsletter_rendered_body',
$value
);
}
public function encodeForUTF8Column($table, $field, $value) {
global $wpdb;
$charset = $wpdb->get_col_charset($table, $field);
if ($charset === 'utf8') {
$value = $this->wp->wpEncodeEmoji($value);
}
return $value;
}
public function decodeEntities($content) {
// Based on WPFunctions::get()->wpStaticizeEmoji()
// Loosely match the Emoji Unicode range.
$regex = '/(&#x[2-3][0-9a-f]{3};|&#x1f[1-6][0-9a-f]{2};)/';
$matches = [];
if (preg_match_all($regex, $content, $matches)) {
if (!empty($matches[1])) {
foreach ($matches[1] as $emoji) {
$entity = html_entity_decode($emoji, ENT_COMPAT, 'UTF-8');
$content = str_replace($emoji, $entity, $content);
}
}
}
return $content;
}
}