1 <?php declare(strict_types=1);
35 public function findByIds(array $conversationIds) : array
39 $res = $this->db->query(
40 'SELECT * FROM osc_conversation WHERE ' . $this->db->in(
48 while ($row = $this->db->fetchAssoc(
$res)) {
49 $participants = json_decode($row[
'participants'],
true);
50 $participantIds = array_filter(array_map(
function ($value) {
51 if (is_array($value) && isset($value[
'id'])) {
52 return (
int) $value[
'id'];
58 if (!in_array((
int) $this->
user->getId(), $participantIds)) {
63 $conversation->setIsGroup((
bool) $row[
'osc_']);
64 $conversation->setSubscriberUsrIds($participantIds);
66 $this->db->setLimit(1, 0);
70 WHERE osc_messages.conversation_id = %s 72 'osc_messages.user_id', 77 ORDER BY osc_messages.timestamp DESC 79 $msgRes = $this->db->queryF(
$query, [
'text'], [$conversation->getId()]);
85 $message->setCreatedTimestamp((
int) time() * 1000);
86 $conversation->setLastMessage(
$message);
88 while ($msgRow = $this->db->fetchAssoc($msgRes)) {
90 $message->setMessage($msgRow[
'message']);
91 $message->setAuthorUsrId((
int) $msgRow[
'user_id']);
92 $message->setCreatedTimestamp((
int) $msgRow[
'timestamp']);
93 $conversation->setLastMessage(
$message);
97 $conversations[] = $conversation;
100 return $conversations;
foreach($_POST as $key=> $value) $res
__construct(\ilDBInterface $db, \ilObjUser $user)
Conversation constructor.
findByIds(array $conversationIds)