mirror of
https://github.com/nextcloud/mail.git
synced 2026-01-13 20:23:59 +00:00
101 lines
2.3 KiB
PHP
101 lines
2.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Mail\IMAP\Threading;
|
|
|
|
use JsonSerializable;
|
|
use ReturnTypeWillChange;
|
|
use function array_map;
|
|
use function array_merge;
|
|
use function json_decode;
|
|
|
|
final class DatabaseMessage extends Message implements JsonSerializable {
|
|
/** @var int */
|
|
private $databaseId;
|
|
|
|
/** @var string|null */
|
|
private $threadRootId;
|
|
|
|
/** @var bool */
|
|
private $dirty = false;
|
|
|
|
public function __construct(int $databaseId,
|
|
string $subject,
|
|
string $id,
|
|
array $references,
|
|
?string $threadRootId) {
|
|
parent::__construct($subject, $id, $references);
|
|
|
|
$this->databaseId = $databaseId;
|
|
$this->threadRootId = $threadRootId;
|
|
}
|
|
|
|
public static function fromRowData(int $id,
|
|
string $subject,
|
|
?string $messageId,
|
|
?string $references,
|
|
?string $inReplyTo,
|
|
?string $threadRootId): self {
|
|
$referencesForThreading = $references !== null ? json_decode($references, true) : [];
|
|
if (!empty($inReplyTo)) {
|
|
$referencesForThreading[] = $inReplyTo;
|
|
}
|
|
|
|
return new self(
|
|
$id,
|
|
$subject,
|
|
$messageId,
|
|
$referencesForThreading,
|
|
$threadRootId
|
|
);
|
|
}
|
|
|
|
public function getDatabaseId(): int {
|
|
return $this->databaseId;
|
|
}
|
|
|
|
public function getThreadRootId(): ?string {
|
|
return $this->threadRootId;
|
|
}
|
|
|
|
public function setThreadRootId(?string $threadRootId): void {
|
|
// Only update the thread ID if it has a value, is different and we haven't set one before
|
|
if ($threadRootId !== null && $this->threadRootId !== $threadRootId && !$this->dirty) {
|
|
$this->dirty = true;
|
|
$this->threadRootId = $threadRootId;
|
|
}
|
|
}
|
|
|
|
public function isDirty(): bool {
|
|
return $this->dirty;
|
|
}
|
|
|
|
public function redact(callable $hash): DatabaseMessage {
|
|
return new self(
|
|
$this->databaseId,
|
|
$this->hasReSubject() ? 'Re: ' . $hash($this->getSubject()) : $hash($this->getSubject()),
|
|
$hash($this->getId()),
|
|
array_map(static fn (string $ref) => $hash($ref), $this->getReferences()),
|
|
$this->threadRootId === null ? null : $hash($this->threadRootId)
|
|
);
|
|
}
|
|
|
|
#[\Override]
|
|
#[ReturnTypeWillChange]
|
|
public function jsonSerialize() {
|
|
return array_merge(
|
|
parent::jsonSerialize(),
|
|
[
|
|
'databaseId' => $this->databaseId,
|
|
'threadRootId' => $this->getThreadRootId(),
|
|
]
|
|
);
|
|
}
|
|
}
|