]> git.mxchange.org Git - friendica.git/blob - src/Model/Conversation.php
Merge pull request #6209 from MrPetovan/task/move-config-to-php-array
[friendica.git] / src / Model / Conversation.php
1 <?php
2 /**
3  * @file src/Model/Conversation
4  */
5
6 namespace Friendica\Model;
7
8 use Friendica\Core\Logger;
9 use Friendica\Core\Protocol;
10 use Friendica\Database\DBA;
11 use Friendica\Util\DateTimeFormat;
12
13 class Conversation
14 {
15         /*
16          * These constants represent the parcel format used to transport a conversation independently of the message protocol.
17          * It currently is stored in the "protocol" field for legacy reasons.
18          */
19         const PARCEL_ACTIVITYPUB        = 0;
20         const PARCEL_DFRN               = 1;
21         const PARCEL_DIASPORA           = 2;
22         const PARCEL_SALMON             = 3;
23         const PARCEL_FEED               = 4; // Deprecated
24         const PARCEL_SPLIT_CONVERSATION = 6;
25         const PARCEL_TWITTER            = 67;
26         const PARCEL_UNKNOWN            = 255;
27
28         public static function getByItemUri($item_uri)
29         {
30                 return DBA::selectFirst('conversation', [], ['item-uri' => $item_uri]);
31         }
32
33         /**
34          * @brief Store the conversation data
35          *
36          * @param array $arr Item array with conversation data
37          * @return array Item array with removed conversation data
38          */
39         public static function insert(array $arr)
40         {
41                 if (in_array(defaults($arr, 'network', Protocol::PHANTOM),
42                         [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS, Protocol::TWITTER]) && !empty($arr['uri'])) {
43                         $conversation = ['item-uri' => $arr['uri'], 'received' => DateTimeFormat::utcNow()];
44
45                         if (isset($arr['parent-uri']) && ($arr['parent-uri'] != $arr['uri'])) {
46                                 $conversation['reply-to-uri'] = $arr['parent-uri'];
47                         }
48
49                         if (isset($arr['thr-parent']) && ($arr['thr-parent'] != $arr['uri'])) {
50                                 $conversation['reply-to-uri'] = $arr['thr-parent'];
51                         }
52
53                         if (isset($arr['conversation-uri'])) {
54                                 $conversation['conversation-uri'] = $arr['conversation-uri'];
55                         }
56
57                         if (isset($arr['conversation-href'])) {
58                                 $conversation['conversation-href'] = $arr['conversation-href'];
59                         }
60
61                         if (isset($arr['protocol'])) {
62                                 $conversation['protocol'] = $arr['protocol'];
63                         }
64
65                         if (isset($arr['source'])) {
66                                 $conversation['source'] = $arr['source'];
67                         }
68
69                         $fields = ['item-uri', 'reply-to-uri', 'conversation-uri', 'conversation-href', 'protocol', 'source'];
70                         $old_conv = DBA::selectFirst('conversation', $fields, ['item-uri' => $conversation['item-uri']]);
71                         if (DBA::isResult($old_conv)) {
72                                 // Don't update when only the source has changed.
73                                 // Only do this when there had been no source before.
74                                 if ($old_conv['source'] != '') {
75                                         unset($old_conv['source']);
76                                 }
77                                 // Update structure data all the time but the source only when its from a better protocol.
78                                 if (empty($conversation['source']) || (!empty($old_conv['source']) &&
79                                         ($old_conv['protocol'] < defaults($conversation, 'protocol', PARCEL_UNKNOWN)))) {
80                                         unset($conversation['protocol']);
81                                         unset($conversation['source']);
82                                 }
83                                 if (!DBA::update('conversation', $conversation, ['item-uri' => $conversation['item-uri']], $old_conv)) {
84                                         Logger::log('Conversation: update for ' . $conversation['item-uri'] . ' from ' . $old_conv['protocol'] . ' to ' . $conversation['protocol'] . ' failed',
85                                                 Logger::DEBUG);
86                                 }
87                         } else {
88                                 if (!DBA::insert('conversation', $conversation, true)) {
89                                         Logger::log('Conversation: insert for ' . $conversation['item-uri'] . ' (protocol ' . $conversation['protocol'] . ') failed',
90                                                 Logger::DEBUG);
91                                 }
92                         }
93                 }
94
95                 unset($arr['conversation-uri']);
96                 unset($arr['conversation-href']);
97                 unset($arr['protocol']);
98                 unset($arr['source']);
99
100                 return $arr;
101         }
102 }