Merge pull request #11967 from annando/quote-share
Improve quote share ("message_id" added)
This commit is contained in:
commit
885f90afa3
|
@ -621,6 +621,7 @@ function item_post(App $a) {
|
|||
$datarray["author-uri-id"] = ItemURI::getIdByURI($datarray["author-link"]);
|
||||
$datarray["owner-updated"] = '';
|
||||
$datarray["has-media"] = false;
|
||||
$datarray['body'] = Item::improveSharedDataInBody($datarray);
|
||||
|
||||
$o = DI::conversation()->create([array_merge($contact_record, $datarray)], 'search', false, true);
|
||||
|
||||
|
@ -661,6 +662,7 @@ function item_post(App $a) {
|
|||
}
|
||||
|
||||
$datarray['uri-id'] = ItemURI::getIdByURI($datarray['uri']);
|
||||
$datarray['body'] = Item::improveSharedDataInBody($datarray);
|
||||
|
||||
if ($orig_post) {
|
||||
$fields = [
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
*/
|
||||
|
||||
use Friendica\App;
|
||||
use Friendica\Content\Text\BBCode;
|
||||
use Friendica\Core\System;
|
||||
use Friendica\Database\DBA;
|
||||
use Friendica\DI;
|
||||
|
@ -34,8 +33,7 @@ function share_init(App $a) {
|
|||
System::exit();
|
||||
}
|
||||
|
||||
$fields = ['private', 'body', 'author-name', 'author-link', 'author-avatar',
|
||||
'guid', 'created', 'plink', 'title'];
|
||||
$fields = ['private', 'body', 'uri'];
|
||||
$item = Post::selectFirst($fields, ['id' => $post_id]);
|
||||
|
||||
if (!DBA::isResult($item) || $item['private'] == Item::PRIVATE) {
|
||||
|
@ -46,14 +44,7 @@ function share_init(App $a) {
|
|||
$pos = strpos($item['body'], "[share");
|
||||
$o = substr($item['body'], $pos);
|
||||
} else {
|
||||
$o = BBCode::getShareOpeningTag($item['author-name'], $item['author-link'], $item['author-avatar'], $item['plink'], $item['created'], $item['guid']);
|
||||
|
||||
if ($item['title']) {
|
||||
$o .= '[h3]'.$item['title'].'[/h3]'."\n";
|
||||
}
|
||||
|
||||
$o .= $item['body'];
|
||||
$o .= "[/share]";
|
||||
$o = "[share]" . $item['uri'] . "[/share]";
|
||||
}
|
||||
|
||||
echo $o;
|
||||
|
|
|
@ -339,7 +339,7 @@ class Router
|
|||
if ($this->dice_profiler_threshold > 0) {
|
||||
$dur = floatval(microtime(true) - $stamp);
|
||||
if ($dur >= $this->dice_profiler_threshold) {
|
||||
$this->logger->warning('Dice module creation lasts too long.', ['duration' => round($dur, 3), 'module' => $module_class, 'parameters' => $module_parameters]);
|
||||
$this->logger->notice('Dice module creation lasts too long.', ['duration' => round($dur, 3), 'module' => $module_class, 'parameters' => $module_parameters]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1021,6 +1021,19 @@ class BBCode
|
|||
public static function fetchShareAttributes(string $text): array
|
||||
{
|
||||
DI::profiler()->startRecording('rendering');
|
||||
if (preg_match('~(.*?)\[share](.*)\[/share]~ism', $text, $matches)) {
|
||||
return [
|
||||
'author' => '',
|
||||
'profile' => '',
|
||||
'avatar' => '',
|
||||
'link' => '',
|
||||
'posted' => '',
|
||||
'guid' => '',
|
||||
'message_id' => trim($matches[2]),
|
||||
'comment' => trim($matches[1]),
|
||||
'shared' => '',
|
||||
];
|
||||
}
|
||||
// See Issue https://github.com/friendica/friendica/issues/10454
|
||||
// Hashtags in usernames are expanded to links. This here is a quick fix.
|
||||
$text = preg_replace('~([@!#])\[url=.*?](.*?)\[/url]~ism', '$1$2', $text);
|
||||
|
@ -1047,7 +1060,7 @@ class BBCode
|
|||
private static function extractShareAttributes(string $shareString): array
|
||||
{
|
||||
$attributes = [];
|
||||
foreach (['author', 'profile', 'avatar', 'link', 'posted', 'guid'] as $field) {
|
||||
foreach (['author', 'profile', 'avatar', 'link', 'posted', 'guid', 'message_id'] as $field) {
|
||||
preg_match("/$field=(['\"])(.+?)\\1/ism", $shareString, $matches);
|
||||
$attributes[$field] = html_entity_decode($matches[2] ?? '', ENT_QUOTES, 'UTF-8');
|
||||
}
|
||||
|
@ -2458,10 +2471,11 @@ class BBCode
|
|||
* @param string $link Post source URL
|
||||
* @param string $posted Post created date
|
||||
* @param string|null $guid Post guid (if any)
|
||||
* @param string|null $uri Post uri (if any)
|
||||
* @return string
|
||||
* @TODO Rewrite to handle over whole record array
|
||||
*/
|
||||
public static function getShareOpeningTag(string $author, string $profile, string $avatar, string $link, string $posted, string $guid = null): string
|
||||
public static function getShareOpeningTag(string $author, string $profile, string $avatar, string $link, string $posted, string $guid = null, string $uri = null): string
|
||||
{
|
||||
DI::profiler()->startRecording('rendering');
|
||||
$header = "[share author='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $author) .
|
||||
|
@ -2474,6 +2488,10 @@ class BBCode
|
|||
$header .= "' guid='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $guid);
|
||||
}
|
||||
|
||||
if ($uri) {
|
||||
$header .= "' message_id='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $uri);
|
||||
}
|
||||
|
||||
$header .= "']";
|
||||
|
||||
DI::profiler()->stopRecording();
|
||||
|
|
|
@ -3667,22 +3667,22 @@ class Item
|
|||
public static function improveSharedDataInBody(array $item): string
|
||||
{
|
||||
$shared = BBCode::fetchShareAttributes($item['body']);
|
||||
if (empty($shared['link'])) {
|
||||
if (empty($shared['link']) && empty($shared['message_id'])) {
|
||||
return $item['body'];
|
||||
}
|
||||
|
||||
$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()]);
|
||||
$id = self::fetchByLink($shared['link'] ?: $shared['message_id']);
|
||||
Logger::debug('Fetched shared post', ['uri-id' => $item['uri-id'], 'id' => $id, 'author' => $shared['profile'], 'url' => $shared['link'], 'guid' => $shared['guid'], 'uri' => $shared['message_id'], '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]);
|
||||
$shared_item = Post::selectFirst(['author-name', 'author-link', 'author-avatar', 'plink', 'created', 'guid', 'uri', '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']);
|
||||
$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'], $shared_item['uri']);
|
||||
|
||||
if (!empty($shared_item['title'])) {
|
||||
$shared_content .= '[h3]'.$shared_item['title'].'[/h3]'."\n";
|
||||
|
@ -3691,7 +3691,7 @@ class Item
|
|||
$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]);
|
||||
Logger::debug('New shared data', ['uri-id' => $item['uri-id'], 'id' => $id, 'shared_item' => $shared_item]);
|
||||
return $item['body'];
|
||||
}
|
||||
}
|
||||
|
|
|
@ -883,7 +883,7 @@ class Processor
|
|||
return '';
|
||||
}
|
||||
|
||||
$shared_item = Post::selectFirst(['author-name', 'author-link', 'author-avatar', 'plink', 'created', 'guid', 'title', 'body'], ['id' => $id]);
|
||||
$shared_item = Post::selectFirst(['author-name', 'author-link', 'author-avatar', 'plink', 'created', 'guid', 'uri', 'title', 'body'], ['id' => $id]);
|
||||
if (!DBA::isResult($shared_item)) {
|
||||
return '';
|
||||
}
|
||||
|
@ -894,7 +894,8 @@ class Processor
|
|||
$shared_item['author-avatar'],
|
||||
$shared_item['plink'],
|
||||
$shared_item['created'],
|
||||
$shared_item['guid']
|
||||
$shared_item['guid'],
|
||||
$shared_item['uri'],
|
||||
);
|
||||
|
||||
if (!empty($shared_item['title'])) {
|
||||
|
|
|
@ -2483,7 +2483,8 @@ class Diaspora
|
|||
$original_item['author-avatar'],
|
||||
$original_item['plink'],
|
||||
$original_item['created'],
|
||||
$original_item['guid']
|
||||
$original_item['guid'],
|
||||
$original_item['uri'],
|
||||
);
|
||||
|
||||
if (!empty($original_item['title'])) {
|
||||
|
@ -4181,7 +4182,7 @@ class Diaspora
|
|||
|
||||
public static function performReshare(int $UriId, int $uid): int
|
||||
{
|
||||
$fields = ['uri-id', 'body', 'title', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink'];
|
||||
$fields = ['uri-id', 'body', 'title', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink', 'uri'];
|
||||
$item = Post::selectFirst($fields, ['uri-id' => $UriId, 'uid' => [$uid, 0], 'private' => [Item::PUBLIC, Item::UNLISTED]]);
|
||||
if (!DBA::isResult($item)) {
|
||||
return 0;
|
||||
|
@ -4191,7 +4192,7 @@ class Diaspora
|
|||
$pos = strpos($item['body'], '[share');
|
||||
$post = substr($item['body'], $pos);
|
||||
} else {
|
||||
$post = BBCode::getShareOpeningTag($item['author-name'], $item['author-link'], $item['author-avatar'], $item['plink'], $item['created'], $item['guid']);
|
||||
$post = BBCode::getShareOpeningTag($item['author-name'], $item['author-link'], $item['author-avatar'], $item['plink'], $item['created'], $item['guid'], $item['uri']);
|
||||
|
||||
if (!empty($item['title'])) {
|
||||
$post .= '[h3]' . $item['title'] . "[/h3]\n";
|
||||
|
|
|
@ -51,12 +51,12 @@ class Email
|
|||
|
||||
$errors = imap_errors();
|
||||
if (!empty($errors)) {
|
||||
Logger::warning('IMAP Errors occured', ['errors' => $errors]);
|
||||
Logger::notice('IMAP Errors occured', ['errors' => $errors]);
|
||||
}
|
||||
|
||||
$alerts = imap_alerts();
|
||||
if (!empty($alerts)) {
|
||||
Logger::warning('IMAP Alerts occured: ', ['alerts' => $alerts]);
|
||||
Logger::notice('IMAP Alerts occured: ', ['alerts' => $alerts]);
|
||||
}
|
||||
|
||||
return $mbox;
|
||||
|
|
|
@ -482,13 +482,14 @@ Karl Marx - Die ursprüngliche Akkumulation
|
|||
'empty-tag' => [
|
||||
'expected' => [
|
||||
'author' => '',
|
||||
'profile' => '',
|
||||
'avatar' => '',
|
||||
'link' => '',
|
||||
'posted' => '',
|
||||
'guid' => '',
|
||||
'comment' => '',
|
||||
'shared' => '',
|
||||
'profile' => '',
|
||||
'avatar' => '',
|
||||
'link' => '',
|
||||
'posted' => '',
|
||||
'guid' => '',
|
||||
'message_id' => '',
|
||||
'comment' => '',
|
||||
'shared' => '',
|
||||
],
|
||||
'text' => '[share][/share]',
|
||||
],
|
||||
|
@ -500,13 +501,12 @@ Karl Marx - Die ursprüngliche Akkumulation
|
|||
'link' => '',
|
||||
'posted' => '',
|
||||
'guid' => '',
|
||||
'message_id' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243',
|
||||
'comment' => 'comment',
|
||||
'shared' => 'shared',
|
||||
'shared' => '',
|
||||
],
|
||||
'text' => ' comment
|
||||
[share]
|
||||
shared
|
||||
[/share]',
|
||||
[share]https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243[/share]',
|
||||
],
|
||||
'all-attributes' => [
|
||||
'expected' => [
|
||||
|
@ -516,19 +516,21 @@ Karl Marx - Die ursprüngliche Akkumulation
|
|||
'link' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243',
|
||||
'posted' => '2022-06-16 12:34:10',
|
||||
'guid' => '735a2029-1062-ab23-42e4-f9c631220243',
|
||||
'message_id' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243',
|
||||
'comment' => '',
|
||||
'shared' => 'George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion.
|
||||
Disney: So a morally grey “choose your side” story, right?
|
||||
Lucas: For the right price, yes.',
|
||||
],
|
||||
'text' => "[share
|
||||
author='Hypolite Petovan'
|
||||
profile='https://friendica.mrpetovan.com/profile/hypolite'
|
||||
avatar='https://friendica.mrpetovan.com/photo/20682437145daa4e85f019a278584494-5.png'
|
||||
link='https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243'
|
||||
posted='2022-06-16 12:34:10'
|
||||
guid='735a2029-1062-ab23-42e4-f9c631220243'
|
||||
]George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion.
|
||||
author='Hypolite Petovan'
|
||||
profile='https://friendica.mrpetovan.com/profile/hypolite'
|
||||
avatar='https://friendica.mrpetovan.com/photo/20682437145daa4e85f019a278584494-5.png'
|
||||
link='https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243'
|
||||
posted='2022-06-16 12:34:10'
|
||||
guid='735a2029-1062-ab23-42e4-f9c631220243'
|
||||
message_id='https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243'
|
||||
]George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion.
|
||||
Disney: So a morally grey “choose your side” story, right?
|
||||
Lucas: For the right price, yes.[/share]",
|
||||
],
|
||||
|
@ -540,18 +542,20 @@ Lucas: For the right price, yes.[/share]",
|
|||
'link' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243',
|
||||
'posted' => '2022-06-16 12:34:10',
|
||||
'guid' => '',
|
||||
'message_id' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243',
|
||||
'comment' => '',
|
||||
'shared' => 'George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion.
|
||||
Disney: So a morally grey “choose your side” story, right?
|
||||
Lucas: For the right price, yes.',
|
||||
],
|
||||
'text' => "[share
|
||||
author='Hypolite Petovan'
|
||||
profile='https://friendica.mrpetovan.com/profile/hypolite'
|
||||
avatar='https://friendica.mrpetovan.com/photo/20682437145daa4e85f019a278584494-5.png'
|
||||
link='https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243'
|
||||
posted='2022-06-16 12:34:10'
|
||||
]George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion.
|
||||
author='Hypolite Petovan'
|
||||
profile='https://friendica.mrpetovan.com/profile/hypolite'
|
||||
avatar='https://friendica.mrpetovan.com/photo/20682437145daa4e85f019a278584494-5.png'
|
||||
link='https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243'
|
||||
posted='2022-06-16 12:34:10'
|
||||
message_id='https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243'
|
||||
]George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion.
|
||||
Disney: So a morally grey “choose your side” story, right?
|
||||
Lucas: For the right price, yes.[/share]",
|
||||
],
|
||||
|
@ -563,18 +567,20 @@ Lucas: For the right price, yes.[/share]",
|
|||
'link' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243',
|
||||
'posted' => '2022-06-16 12:34:10',
|
||||
'guid' => '',
|
||||
'message_id' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243',
|
||||
'comment' => '',
|
||||
'shared' => 'George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion.
|
||||
Disney: So a morally grey “choose your side” story, right?
|
||||
Lucas: For the right price, yes.',
|
||||
],
|
||||
'text' => '[share
|
||||
author="Hypolite Petovan"
|
||||
profile="https://friendica.mrpetovan.com/profile/hypolite"
|
||||
avatar="https://friendica.mrpetovan.com/photo/20682437145daa4e85f019a278584494-5.png"
|
||||
link="https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243"
|
||||
posted="2022-06-16 12:34:10"
|
||||
]George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion.
|
||||
author="Hypolite Petovan"
|
||||
profile="https://friendica.mrpetovan.com/profile/hypolite"
|
||||
avatar="https://friendica.mrpetovan.com/photo/20682437145daa4e85f019a278584494-5.png"
|
||||
link="https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243"
|
||||
message_id="https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243"
|
||||
posted="2022-06-16 12:34:10"
|
||||
]George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion.
|
||||
Disney: So a morally grey “choose your side” story, right?
|
||||
Lucas: For the right price, yes.[/share]',
|
||||
],
|
||||
|
|
|
@ -366,7 +366,7 @@ function string2bb(element) {
|
|||
|
||||
$.fn.bbco_autocomplete = function(type) {
|
||||
if (type === 'bbcode') {
|
||||
var open_close_elements = ['bold', 'italic', 'underline', 'overline', 'strike', 'quote', 'code', 'spoiler', 'map', 'img', 'url', 'audio', 'video', 'embed', 'youtube', 'vimeo', 'list', 'ul', 'ol', 'li', 'table', 'tr', 'th', 'td', 'center', 'color', 'font', 'size', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'nobb', 'noparse', 'pre', 'abstract'];
|
||||
var open_close_elements = ['bold', 'italic', 'underline', 'overline', 'strike', 'quote', 'code', 'spoiler', 'map', 'img', 'url', 'audio', 'video', 'embed', 'youtube', 'vimeo', 'list', 'ul', 'ol', 'li', 'table', 'tr', 'th', 'td', 'center', 'color', 'font', 'size', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'nobb', 'noparse', 'pre', 'abstract', 'share'];
|
||||
var open_elements = ['*', 'hr'];
|
||||
|
||||
var elements = open_close_elements.concat(open_elements);
|
||||
|
|
Loading…
Reference in New Issue
Block a user