2018-01-20 18:52:54 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Model/Conversation
|
|
|
|
*/
|
2018-08-05 06:34:33 -04:00
|
|
|
|
2018-01-20 18:52:54 -05:00
|
|
|
namespace Friendica\Model;
|
|
|
|
|
2018-08-11 16:40:44 -04:00
|
|
|
use Friendica\Core\Protocol;
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2018-07-21 08:25:11 -04:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2018-01-20 18:52:54 -05:00
|
|
|
|
|
|
|
require_once "include/dba.php";
|
|
|
|
|
|
|
|
class Conversation
|
|
|
|
{
|
2018-08-05 06:23:57 -04:00
|
|
|
/*
|
|
|
|
* These constants represent the parcel format used to transport a conversation independently of the message protocol.
|
|
|
|
* It currently is stored in the "protocol" field for legacy reasons.
|
|
|
|
*/
|
|
|
|
const PARCEL_UNKNOWN = 0;
|
|
|
|
const PARCEL_DFRN = 1;
|
|
|
|
const PARCEL_DIASPORA = 2;
|
|
|
|
const PARCEL_SALMON = 3;
|
|
|
|
const PARCEL_FEED = 4; // Deprecated
|
|
|
|
const PARCEL_SPLIT_CONVERSATION = 6;
|
2018-08-05 07:59:33 -04:00
|
|
|
const PARCEL_TWITTER = 67;
|
2018-02-05 14:09:03 -05:00
|
|
|
|
2018-01-20 18:52:54 -05:00
|
|
|
/**
|
|
|
|
* @brief Store the conversation data
|
|
|
|
*
|
|
|
|
* @param array $arr Item array with conversation data
|
|
|
|
* @return array Item array with removed conversation data
|
|
|
|
*/
|
2018-08-05 06:34:33 -04:00
|
|
|
public static function insert(array $arr)
|
|
|
|
{
|
2018-08-11 16:40:44 -04:00
|
|
|
if (in_array(defaults($arr, 'network', Protocol::PHANTOM),
|
|
|
|
[Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS, Protocol::TWITTER]) && !empty($arr['uri'])) {
|
2018-07-21 08:25:11 -04:00
|
|
|
$conversation = ['item-uri' => $arr['uri'], 'received' => DateTimeFormat::utcNow()];
|
2018-01-20 18:52:54 -05:00
|
|
|
|
|
|
|
if (isset($arr['parent-uri']) && ($arr['parent-uri'] != $arr['uri'])) {
|
|
|
|
$conversation['reply-to-uri'] = $arr['parent-uri'];
|
|
|
|
}
|
|
|
|
if (isset($arr['thr-parent']) && ($arr['thr-parent'] != $arr['uri'])) {
|
|
|
|
$conversation['reply-to-uri'] = $arr['thr-parent'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($arr['conversation-uri'])) {
|
|
|
|
$conversation['conversation-uri'] = $arr['conversation-uri'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($arr['conversation-href'])) {
|
|
|
|
$conversation['conversation-href'] = $arr['conversation-href'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($arr['protocol'])) {
|
|
|
|
$conversation['protocol'] = $arr['protocol'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($arr['source'])) {
|
|
|
|
$conversation['source'] = $arr['source'];
|
|
|
|
}
|
|
|
|
|
2018-06-19 17:33:07 -04:00
|
|
|
$fields = ['item-uri', 'reply-to-uri', 'conversation-uri', 'conversation-href', 'protocol', 'source'];
|
2018-07-20 08:19:26 -04:00
|
|
|
$old_conv = DBA::selectFirst('conversation', $fields, ['item-uri' => $conversation['item-uri']]);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($old_conv)) {
|
2018-01-20 18:52:54 -05:00
|
|
|
// Don't update when only the source has changed.
|
|
|
|
// Only do this when there had been no source before.
|
|
|
|
if ($old_conv['source'] != '') {
|
|
|
|
unset($old_conv['source']);
|
|
|
|
}
|
|
|
|
// Update structure data all the time but the source only when its from a better protocol.
|
2018-07-01 04:03:57 -04:00
|
|
|
if (isset($conversation['protocol']) && isset($conversation['source']) && ($old_conv['protocol'] < $conversation['protocol']) && ($old_conv['protocol'] != 0)) {
|
2018-01-20 18:52:54 -05:00
|
|
|
unset($conversation['protocol']);
|
|
|
|
unset($conversation['source']);
|
|
|
|
}
|
2018-07-20 08:19:26 -04:00
|
|
|
if (!DBA::update('conversation', $conversation, ['item-uri' => $conversation['item-uri']], $old_conv)) {
|
2018-08-05 06:34:33 -04:00
|
|
|
logger('Conversation: update for ' . $conversation['item-uri'] . ' from ' . $old_conv['protocol'] . ' to ' . $conversation['protocol'] . ' failed',
|
|
|
|
LOGGER_DEBUG);
|
2018-01-20 18:52:54 -05:00
|
|
|
}
|
|
|
|
} else {
|
2018-07-20 08:19:26 -04:00
|
|
|
if (!DBA::insert('conversation', $conversation, true)) {
|
2018-08-05 06:34:33 -04:00
|
|
|
logger('Conversation: insert for ' . $conversation['item-uri'] . ' (protocol ' . $conversation['protocol'] . ') failed',
|
|
|
|
LOGGER_DEBUG);
|
2018-01-20 18:52:54 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unset($arr['conversation-uri']);
|
|
|
|
unset($arr['conversation-href']);
|
|
|
|
unset($arr['protocol']);
|
|
|
|
unset($arr['source']);
|
|
|
|
|
|
|
|
return $arr;
|
|
|
|
}
|
|
|
|
}
|