X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModel%2FItem.php;h=48c578e85f7b75c40d1daf811806b3e006d85969;hb=c356c962f12768d07667c4aa0024fd0067a081d9;hp=17493e9a00508a187351c2d80518722551a2713d;hpb=f600f68907fbe77a0541ae409aa1a7f2d91fad3e;p=friendica.git diff --git a/src/Model/Item.php b/src/Model/Item.php index 17493e9a00..48c578e85f 100644 --- a/src/Model/Item.php +++ b/src/Model/Item.php @@ -210,7 +210,7 @@ class Item $fields['raw-body'] = BBCode::removeSharedData($fields['raw-body']); } } - + Post\Media::insertFromAttachmentData($item['uri-id'], $fields['body']); $content_fields = ['raw-body' => trim($fields['raw-body'] ?? $fields['body'])]; @@ -337,7 +337,7 @@ class Item * generate a resource-id and therefore aren't intimately linked to the item. */ /// @TODO: this should first check if photo is used elsewhere - if (strlen($item['resource-id'])) { + if ($item['resource-id']) { Photo::delete(['resource-id' => $item['resource-id'], 'uid' => $item['uid']]); } @@ -823,19 +823,38 @@ class Item $item['protocol'] = Conversation::PARCEL_DIRECT; $item['direction'] = Conversation::PUSH; - if (!empty($item['author-link']) && !empty($item['author-id'])) { - $owner = User::getOwnerDataById($item['uid']); + $owner = User::getOwnerDataById($item['uid']); + + if (empty($item['contact-id'])) { + $item['contact-id'] = $owner['id']; + } + + if (empty($item['author-link']) && empty($item['author-id'])) { $item['author-link'] = $owner['url']; $item['author-name'] = $owner['name']; $item['author-avatar'] = $owner['thumb']; } - if (!empty($item['owner-link']) && !empty($item['owner-id'])) { + if (empty($item['owner-link']) && empty($item['owner-id'])) { $item['owner-link'] = $item['author-link']; $item['owner-name'] = $item['author-name']; $item['owner-avatar'] = $item['author-avatar']; } + // Setting the object type if not defined before + if (empty($item['object-type'])) { + $item['object-type'] = Activity\ObjectType::NOTE; // Default value + $objectdata = BBCode::getAttachedData($item['body']); + + if ($objectdata['type'] == 'link') { + $item['object-type'] = Activity\ObjectType::BOOKMARK; + } elseif ($objectdata['type'] == 'video') { + $item['object-type'] = Activity\ObjectType::VIDEO; + } elseif ($objectdata['type'] == 'photo') { + $item['object-type'] = Activity\ObjectType::IMAGE; + } + } + return $item; } @@ -2714,7 +2733,7 @@ class Item } $condition = ['vid' => $vids, 'deleted' => false, 'gravity' => self::GRAVITY_ACTIVITY, - 'author-id' => $author_id, 'uid' => $item['uid'], 'thr-parent-id' => $uri_id]; + 'author-id' => $author_id, 'uid' => $uid, 'thr-parent-id' => $uri_id]; $like_item = Post::selectFirst(['id', 'guid', 'verb'], $condition); if (DBA::isResult($like_item)) {