]> git.mxchange.org Git - friendica.git/blobdiff - src/Content/Item.php
The quote functionality is simplified
[friendica.git] / src / Content / Item.php
index ccd3396c2231902e9a0457a2750d614500ee5361..d5c33a762c6f6955bc3591d6707f8db629729eb9 100644 (file)
 namespace Friendica\Content;
 
 use Friendica\Content\Text\BBCode;
+use Friendica\Content\Text\Markdown;
 use Friendica\Core\Hook;
 use Friendica\Core\L10n;
 use Friendica\Core\Logger;
 use Friendica\Core\Protocol;
+use Friendica\Core\System;
 use Friendica\Database\DBA;
 use Friendica\Model\Contact;
 use Friendica\Model\Group;
@@ -34,6 +36,7 @@ use Friendica\Model\Photo;
 use Friendica\Model\Tag;
 use Friendica\Model\Post;
 use Friendica\Protocol\Activity;
+use Friendica\Protocol\Diaspora;
 use Friendica\Util\Profiler;
 use Friendica\Util\Proxy;
 use Friendica\Util\XML;
@@ -256,63 +259,6 @@ class Item
                if (!empty($item['verb'])) {
                        $xmlhead = '<?xml version="1.0" encoding="UTF-8" ?>';
 
-                       if (stristr($item['verb'], Activity::POKE)) {
-                               $verb = urldecode(substr($item['verb'], strpos($item['verb'],'#') + 1));
-                               if (!$verb) {
-                                       $this->profiler->stopRecording();
-                                       return;
-                               }
-                               if ($item['object-type'] == '' || $item['object-type'] !== Activity\ObjectType::PERSON) {
-                                       $this->profiler->stopRecording();
-                                       return;
-                               }
-
-                               $obj = XML::parseString($xmlhead . $item['object']);
-
-                               $Bname = $obj->title;
-                               $Blink = $obj->id;
-                               $Bphoto = '';
-
-                               foreach ($obj->link as $l) {
-                                       $atts = $l->attributes();
-                                       switch ($atts['rel']) {
-                                               case 'alternate': $Blink = $atts['href'];
-                                               case 'photo': $Bphoto = $atts['href'];
-                                       }
-                               }
-
-                               $author = [
-                                       'uid' => 0,
-                                       'id' => $item['author-id'],
-                                       'network' => $item['author-network'],
-                                       'url' => $item['author-link'],
-                               ];
-                               $A = '[url=' . Contact::magicLinkByContact($author) . ']' . $item['author-name'] . '[/url]';
-
-                               if (!empty($Blink)) {
-                                       $B = '[url=' . Contact::magicLink($Blink) . ']' . $Bname . '[/url]';
-                               } else {
-                                       $B = '';
-                               }
-
-                               if ($Bphoto != '' && !empty($Blink)) {
-                                       $Bphoto = '[url=' . Contact::magicLink($Blink) . '][img=80x80]' . $Bphoto . '[/img][/url]';
-                               }
-
-                               /*
-                               * we can't have a translation string with three positions but no distinguishable text
-                               * So here is the translate string.
-                               */
-                               $txt = $this->l10n->t('%1$s poked %2$s');
-
-                               // now translate the verb
-                               $poked_t = trim(sprintf($txt, '', ''));
-                               $txt = str_replace($poked_t, $this->l10n->t($verb), $txt);
-
-                               // then do the sprintf on the translation string
-                               $item['body'] = sprintf($txt, $A, $B) . "\n\n\n" . $Bphoto;
-                       }
-
                        if ($this->activity->match($item['verb'], Activity::TAG)) {
                                $fields = ['author-id', 'author-link', 'author-name', 'author-network',
                                        'verb', 'object-type', 'resource-id', 'body', 'plink'];
@@ -382,7 +328,7 @@ class Item
        public function photoMenu(array $item, string $formSecurityToken): string
        {
                $this->profiler->startRecording('rendering');
-               $sub_link = $poke_link = $contact_url = $pm_url = $status_link = '';
+               $sub_link = $contact_url = $pm_url = $status_link = '';
                $photos_link = $posts_link = $block_link = $ignore_link = '';
 
                if (local_user() && local_user() == $item['uid'] && $item['gravity'] == GRAVITY_PARENT && !$item['self'] && !$item['mention']) {
@@ -425,7 +371,6 @@ class Item
 
                if ($cid && !$item['self']) {
                        $contact_url = 'contact/' . $cid;
-                       $poke_link   = $contact_url . '/poke';
                        $posts_link  = $contact_url . '/posts';
 
                        if (in_array($network, [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA])) {
@@ -450,10 +395,6 @@ class Item
                                $menu[$this->l10n->t('Languages')] = 'javascript:alert(\'' . ModelItem::getLanguageMessage($item) . '\');';
                        }
 
-                       if ($network == Protocol::DFRN) {
-                               $menu[$this->l10n->t('Poke')] = $poke_link;
-                       }
-
                        if ((($cid == 0) || ($rel == Contact::FOLLOWER)) &&
                                in_array($item['network'], Protocol::FEDERATED)) {
                                $menu[$this->l10n->t('Connect/Follow')] = 'follow?url=' . urlencode($item['author-link']) . '&auto=1';
@@ -627,4 +568,113 @@ class Item
 
                return $owner_thumb;
        }
+
+       /**
+        * Add a share block for the given url
+        *
+        * @param string $url
+        * @param integer $uid
+        * @return string
+        */
+       public function createSharedPostByUrl(string $url, int $uid = 0): string
+       {
+               if (!empty($uid)) {
+                       $id = ModelItem::searchByLink($url, $uid);
+               }
+
+               if (empty($id)) {
+                       $id = ModelItem::fetchByLink($url);
+               }
+
+               if (!$id) {
+                       Logger::notice('Post could not be fetched.', ['url' => $url, 'uid' => $uid, 'callstack' => System::callstack()]);
+                       return '';
+               }
+
+               Logger::debug('Fetched shared post', ['id' => $id, 'url' => $url, 'uid' => $uid, 'callstack' => System::callstack()]);
+
+               $shared_item = Post::selectFirst(['uri-id', 'uri', 'body', 'title', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink', 'network'], ['id' => $id]);
+               if (!DBA::isResult($shared_item)) {
+                       Logger::warning('Post does not exist.', ['id' => $id, 'url' => $url, 'uid' => $uid]);
+                       return '';
+               }
+
+               return $this->createSharedBlockByArray($shared_item);
+       }
+
+       /**
+        * Add a share block for the given uri-id
+        *
+        * @param integer $UriId
+        * @param integer $uid
+        * @return string
+        */
+       public function createSharedPostByUriId(int $UriId, int $uid = 0): string
+       {
+               $fields = ['uri-id', 'uri', 'body', 'title', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink', 'network'];
+               $shared_item = Post::selectFirst($fields, ['uri-id' => $UriId, 'uid' => [$uid, 0], 'private' => [ModelItem::PUBLIC, ModelItem::UNLISTED]]);
+               if (!DBA::isResult($shared_item)) {
+                       Logger::notice('Post does not exist.', ['uri-id' => $UriId, 'uid' => $uid]);
+                       return '';
+               }
+
+               return $this->createSharedBlockByArray($shared_item);
+       }
+
+       /**
+        * Add a share block for the given guid
+        *
+        * @param string $guid
+        * @param integer $uid
+        * @return string
+        */
+       public function createSharedPostByGuid(string $guid, int $uid = 0, string $host = ''): string
+       {
+               $fields = ['uri-id', 'uri', 'body', 'title', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink', 'network'];
+               $shared_item = Post::selectFirst($fields, ['guid' => $guid, 'uid' => [$uid, 0], 'private' => [ModelItem::PUBLIC, ModelItem::UNLISTED]]);
+
+               if (!DBA::isResult($shared_item) && !empty($host) && Diaspora::storeByGuid($guid, $host, true)) {
+                       Logger::debug('Fetched post', ['guid' => $guid, 'host' => $host, 'uid' => $uid]);
+                       $shared_item = Post::selectFirst($fields, ['guid' => $guid, 'uid' => [$uid, 0], 'private' => [ModelItem::PUBLIC, ModelItem::UNLISTED]]);
+               } elseif (DBA::isResult($shared_item)) {
+                       Logger::debug('Found existing post', ['guid' => $guid, 'host' => $host, 'uid' => $uid]);
+               }
+
+               if (!DBA::isResult($shared_item)) {
+                       Logger::notice('Post does not exist.', ['guid' => $guid, 'host' => $host, 'uid' => $uid]);
+                       return '';
+               }
+
+               return $this->createSharedBlockByArray($shared_item);
+       }
+
+       /**
+        * Add a share block for the given item array
+        *
+        * @param array $item
+        * @return string
+        */
+       public function createSharedBlockByArray(array $item): string
+       {
+               if (!in_array($item['network'] ?? '', Protocol::FEDERATED)) {
+                       $item['guid'] = '';
+                       $item['uri']  = '';
+               }
+
+               $shared_content = BBCode::getShareOpeningTag($item['author-name'], $item['author-link'], $item['author-avatar'], $item['plink'], $item['created'], $item['guid'], $item['uri']);
+
+               if (!empty($item['title'])) {
+                       $shared_content .= '[h3]' . $item['title'] . "[/h3]\n";
+               }
+
+               // If it is a reshared post then reformat it to avoid display problems with two share elements
+               if (Diaspora::isReshare($item['body'], false)) {
+                       $item['body'] = Markdown::toBBCode(BBCode::toMarkdown($item['body']));
+                       $item['body'] = Diaspora::replacePeopleGuid($item['body'], $item['author-link']);
+               }
+
+               $shared_content .= $item['body'] . '[/share]';
+
+               return $shared_content;
+       }
 }