openvk/Web/Models/Entities/Traits/TRichText.php

81 lines
3.4 KiB
PHP
Raw Normal View History

2020-06-07 19:04:43 +03:00
<?php declare(strict_types=1);
namespace openvk\Web\Models\Entities\Traits;
2021-12-14 14:46:51 +03:00
use Wkhooy\ObsceneCensorRus;
2020-06-07 19:04:43 +03:00
trait TRichText
{
private function formatEmojis(string $text): string
{
2021-11-17 22:41:44 +03:00
$contentColumn = property_exists($this, "overrideContentColumn") ? $this->overrideContentColumn : "content";
if(iconv_strlen($this->getRecord()->{$contentColumn}) > OPENVK_ROOT_CONF["openvk"]["preferences"]["wall"]["postSizes"]["emojiProcessingLimit"])
2020-08-20 15:58:40 +03:00
return $text;
$emojis = \Emoji\detect_emoji($text);
2020-08-20 15:58:40 +03:00
$replaced = []; # OVK-113
2020-06-07 19:04:43 +03:00
foreach($emojis as $emoji) {
2020-08-20 15:58:40 +03:00
$point = explode("-", strtolower($emoji["hex_str"]))[0];
if(in_array($point, $replaced))
continue;
else
$replaced[] = $point;
2020-06-26 12:30:15 +03:00
$image = "https://abs.twimg.com/emoji/v2/72x72/$point.png";
2020-06-07 19:04:43 +03:00
$image = "<img src='$image' alt='$emoji[emoji]' ";
2020-06-26 12:30:15 +03:00
$image .= "style='max-height:12px; padding-left: 2pt; padding-right: 2pt; vertical-align: bottom;' />";
2020-06-07 19:04:43 +03:00
$text = str_replace($emoji["emoji"], $image, $text);
}
2020-08-20 15:58:40 +03:00
return $text;
2020-06-07 19:04:43 +03:00
}
2021-11-17 22:41:44 +03:00
private function formatLinks(string &$text): string
{
return preg_replace_callback(
"%(([A-z]++):\/\/(\S*?\.\S*?))([\s)\[\]{},\"\'<]|\.\s|$)%",
2021-11-17 22:41:44 +03:00
(function (array $matches): string {
$href = str_replace("#", "&num;", $matches[1]);
$href = str_replace(";", "&#59;", $matches[1]);
2021-11-17 22:41:44 +03:00
$link = str_replace("#", "&num;", $matches[3]);
$link = str_replace(";", "&#59;", $matches[3]);
2021-11-17 22:41:44 +03:00
$rel = $this->isAd() ? "sponsored" : "ugc";
return "<a href='$href' rel='$rel' target='_blank'>$link</a>" . htmlentities($matches[4]);
}),
$text
);
}
2020-06-07 19:04:43 +03:00
private function removeZalgo(string $text): string
{
return preg_replace("%[\x{0300}-\x{036F}]{3,}%Xu", "<EFBFBD>", $text);
}
function getText(bool $html = true): string
{
$contentColumn = property_exists($this, "overrideContentColumn") ? $this->overrideContentColumn : "content";
$text = htmlentities($this->getRecord()->{$contentColumn}, ENT_DISALLOWED | ENT_XHTML);
$proc = iconv_strlen($this->getRecord()->{$contentColumn}) <= OPENVK_ROOT_CONF["openvk"]["preferences"]["wall"]["postSizes"]["processingLimit"];
2020-06-07 19:04:43 +03:00
if($html) {
2020-08-20 15:58:40 +03:00
if($proc) {
$rel = $this->isAd() ? "sponsored" : "ugc";
2020-08-24 14:37:47 +03:00
$text = $this->formatLinks($text);
$text = preg_replace("%@([A-Za-z0-9]++) \(([\p{L} 0-9]+)\)%Xu", "[$1|$2]", $text);
$text = preg_replace("%([\n\r\s]|^)(@([A-Za-z0-9]++))%Xu", "$1[$3|@$3]", $text);
$text = preg_replace("%\[([A-Za-z0-9]++)\|([\p{L} 0-9@]+)\]%Xu", "<a href='/$1'>$2</a>", $text);
$text = preg_replace("%([\n\r\s]|^)(#([\p{L}_-]++[0-9]*[\p{L}_-]*))%Xu", "$1<a href='/feed/hashtag/$3'>$2</a>", $text);
2020-08-20 15:58:40 +03:00
$text = $this->formatEmojis($text);
}
2020-06-07 19:04:43 +03:00
$text = $this->removeZalgo($text);
$text = nl2br($text);
}
2021-12-14 14:46:51 +03:00
if(OPENVK_ROOT_CONF["openvk"]["preferences"]["wall"]["christian"])
2021-12-14 14:55:11 +03:00
ObsceneCensorRus::filterText($text);
2021-12-14 14:46:51 +03:00
2020-06-07 19:04:43 +03:00
return $text;
}
}