mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-14 19:35:38 +00:00
0024a94ba7
Depends-On: I90656cc74bb1cb1f2f3c82ad51cfb164cb8a4a4b Bug: T296801 Change-Id: I84187b303aa10a242c872088403f808df3d1f940
127 lines
2.3 KiB
PHP
127 lines
2.3 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\DiscussionTools\ThreadItem;
|
|
|
|
use JsonSerializable;
|
|
use MediaWiki\Page\ProperPageIdentity;
|
|
use MediaWiki\Revision\RevisionRecord;
|
|
|
|
class DatabaseThreadItem implements JsonSerializable, ThreadItem {
|
|
use ThreadItemTrait;
|
|
|
|
/** @var ProperPageIdentity */
|
|
private $page;
|
|
/** @var RevisionRecord */
|
|
private $rev;
|
|
/** @var string */
|
|
private $type;
|
|
/** @var string */
|
|
private $name;
|
|
/** @var string */
|
|
private $id;
|
|
/** @var DatabaseThreadItem|null */
|
|
private $parent;
|
|
/** @var DatabaseThreadItem[] */
|
|
private $replies = [];
|
|
/** @var string|bool */
|
|
private $transcludedFrom;
|
|
/** @var int */
|
|
private $level;
|
|
|
|
/**
|
|
* @param ProperPageIdentity $page
|
|
* @param RevisionRecord $rev
|
|
* @param string $type
|
|
* @param string $name
|
|
* @param string $id
|
|
* @param DatabaseThreadItem|null $parent
|
|
* @param bool|string $transcludedFrom
|
|
* @param int $level
|
|
*/
|
|
public function __construct(
|
|
ProperPageIdentity $page, RevisionRecord $rev,
|
|
string $type, string $name, string $id, ?DatabaseThreadItem $parent, $transcludedFrom, int $level
|
|
) {
|
|
$this->page = $page;
|
|
$this->rev = $rev;
|
|
$this->name = $name;
|
|
$this->id = $id;
|
|
$this->type = $type;
|
|
$this->parent = $parent;
|
|
$this->transcludedFrom = $transcludedFrom;
|
|
$this->level = $level;
|
|
}
|
|
|
|
/**
|
|
* @return ProperPageIdentity
|
|
*/
|
|
public function getPage(): ProperPageIdentity {
|
|
return $this->page;
|
|
}
|
|
|
|
/**
|
|
* @return RevisionRecord
|
|
*/
|
|
public function getRevision(): RevisionRecord {
|
|
return $this->rev;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getName(): string {
|
|
return $this->name;
|
|
}
|
|
|
|
/**
|
|
* @param DatabaseThreadItem $reply Reply comment
|
|
*/
|
|
public function addReply( DatabaseThreadItem $reply ): void {
|
|
$this->replies[] = $reply;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getId(): string {
|
|
return $this->id;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getType(): string {
|
|
return $this->type;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
* @return DatabaseThreadItem|null
|
|
*/
|
|
public function getParent(): ?ThreadItem {
|
|
return $this->parent;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
* @return DatabaseThreadItem[]
|
|
*/
|
|
public function getReplies(): array {
|
|
return $this->replies;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getTranscludedFrom() {
|
|
return $this->transcludedFrom;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getLevel(): int {
|
|
return $this->level;
|
|
}
|
|
}
|