mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-12 01:16:19 +00:00
8e4f08182e
Change-Id: Ia25c5bea1834a3fdd26f32a9d5ed097789329824
101 lines
2.1 KiB
PHP
101 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\DiscussionTools;
|
|
|
|
use MediaWiki\Linker\LinkTarget;
|
|
use MediaWiki\User\UserIdentity;
|
|
|
|
/**
|
|
* Representation of a subscription to a given topic.
|
|
*/
|
|
class SubscriptionItem {
|
|
private $itemName;
|
|
private $linkTarget;
|
|
private $user;
|
|
private $state;
|
|
private $createdTimestamp;
|
|
private $notifiedTimestamp;
|
|
|
|
/**
|
|
* @param UserIdentity $user
|
|
* @param string $itemName
|
|
* @param LinkTarget $linkTarget
|
|
* @param int $state One of SubscriptionStore::STATE_* constants
|
|
* @param string|null $createdTimestamp When the subscription was created
|
|
* @param string|null $notifiedTimestamp When the item subscribed to last tried to trigger
|
|
* a notification (even if muted).
|
|
*/
|
|
public function __construct(
|
|
UserIdentity $user,
|
|
string $itemName,
|
|
linkTarget $linkTarget,
|
|
int $state,
|
|
?string $createdTimestamp,
|
|
?string $notifiedTimestamp
|
|
) {
|
|
$this->user = $user;
|
|
$this->itemName = $itemName;
|
|
$this->linkTarget = $linkTarget;
|
|
$this->state = $state;
|
|
$this->createdTimestamp = $createdTimestamp;
|
|
$this->notifiedTimestamp = $notifiedTimestamp;
|
|
}
|
|
|
|
/**
|
|
* @return UserIdentity
|
|
*/
|
|
public function getUserIdentity(): UserIdentity {
|
|
return $this->user;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getItemName(): string {
|
|
return $this->itemName;
|
|
}
|
|
|
|
/**
|
|
* @return LinkTarget
|
|
*/
|
|
public function getLinkTarget(): LinkTarget {
|
|
return $this->linkTarget;
|
|
}
|
|
|
|
/**
|
|
* Get the creation timestamp of this entry.
|
|
*
|
|
* @return string|null
|
|
*/
|
|
public function getCreatedTimestamp(): ?string {
|
|
return $this->createdTimestamp;
|
|
}
|
|
|
|
/**
|
|
* Get the notification timestamp of this entry.
|
|
*
|
|
* @return string|null
|
|
*/
|
|
public function getNotificationTimestamp(): ?string {
|
|
return $this->notifiedTimestamp;
|
|
}
|
|
|
|
/**
|
|
* Get the subscription status of this entry.
|
|
*
|
|
* @return int One of SubscriptionStore::STATE_* constants
|
|
*/
|
|
public function getState(): int {
|
|
return $this->state;
|
|
}
|
|
|
|
/**
|
|
* Check if the notification is muted
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function isMuted(): bool {
|
|
return $this->state === SubscriptionStore::STATE_UNSUBSCRIBED;
|
|
}
|
|
}
|