Improved code structure
This commit is contained in:
parent
95f741c427
commit
6be6803983
|
@ -3275,23 +3275,31 @@ class Item
|
||||||
public static function improveSharedDataInBody(array $item)
|
public static function improveSharedDataInBody(array $item)
|
||||||
{
|
{
|
||||||
$shared = BBCode::fetchShareAttributes($item['body']);
|
$shared = BBCode::fetchShareAttributes($item['body']);
|
||||||
if (!empty($shared['link'])) {
|
if (empty($shared['link'])) {
|
||||||
$id = self::fetchByLink($shared['link']);
|
return $item['body'];
|
||||||
Logger::info('Fetched shared post', ['uri-id' => $item['uri-id'], 'id' => $id, 'author' => $shared['profile'], 'url' => $shared['link'], 'guid' => $shared['guid'], 'callstack' => System::callstack()]);
|
|
||||||
if ($id) {
|
|
||||||
$shared_item = Post::selectFirst(['author-name', 'author-link', 'author-avatar', 'plink', 'created', 'guid', 'title', 'body'], ['id' => $id]);
|
|
||||||
$shared_content = BBCode::getShareOpeningTag($shared_item['author-name'], $shared_item['author-link'], $shared_item['author-avatar'], $shared_item['plink'], $shared_item['created'], $shared_item['guid']);
|
|
||||||
|
|
||||||
if (!empty($shared_item['title'])) {
|
|
||||||
$shared_content .= '[h3]'.$shared_item['title'].'[/h3]'."\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
$shared_content .= $shared_item['body'];
|
|
||||||
|
|
||||||
$item['body'] = preg_replace("/\[share.*?\](.*)\[\/share\]/ism", $shared_content . '[/share]', $item['body']);
|
|
||||||
Logger::info('New shared data', ['uri-id' => $item['uri-id'], 'id' => $id, 'shared_item' => $shared_item]);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$id = self::fetchByLink($shared['link']);
|
||||||
|
Logger::info('Fetched shared post', ['uri-id' => $item['uri-id'], 'id' => $id, 'author' => $shared['profile'], 'url' => $shared['link'], 'guid' => $shared['guid'], 'callstack' => System::callstack()]);
|
||||||
|
if (!$id) {
|
||||||
|
return $item['body'];
|
||||||
|
}
|
||||||
|
|
||||||
|
$shared_item = Post::selectFirst(['author-name', 'author-link', 'author-avatar', 'plink', 'created', 'guid', 'title', 'body'], ['id' => $id]);
|
||||||
|
if (!DBA::isResult($shared_item)) {
|
||||||
|
return $item['body'];
|
||||||
|
}
|
||||||
|
|
||||||
|
$shared_content = BBCode::getShareOpeningTag($shared_item['author-name'], $shared_item['author-link'], $shared_item['author-avatar'], $shared_item['plink'], $shared_item['created'], $shared_item['guid']);
|
||||||
|
|
||||||
|
if (!empty($shared_item['title'])) {
|
||||||
|
$shared_content .= '[h3]'.$shared_item['title'].'[/h3]'."\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
$shared_content .= $shared_item['body'];
|
||||||
|
|
||||||
|
$item['body'] = preg_replace("/\[share.*?\](.*)\[\/share\]/ism", $shared_content . '[/share]', $item['body']);
|
||||||
|
Logger::info('New shared data', ['uri-id' => $item['uri-id'], 'id' => $id, 'shared_item' => $shared_item]);
|
||||||
return $item['body'];
|
return $item['body'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue