2021-02-16 07:51:49 +00:00
|
|
|
<?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
|
2021-08-16 16:13:12 +00:00
|
|
|
* @param int $state One of SubscriptionStore::STATE_* constants
|
2021-02-16 07:51:49 +00:00
|
|
|
* @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
|
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function getUserIdentity(): UserIdentity {
|
2021-02-16 07:51:49 +00:00
|
|
|
return $this->user;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function getItemName(): string {
|
2021-02-16 07:51:49 +00:00
|
|
|
return $this->itemName;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return LinkTarget
|
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function getLinkTarget(): LinkTarget {
|
2021-02-16 07:51:49 +00:00
|
|
|
return $this->linkTarget;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the creation timestamp of this entry.
|
|
|
|
*
|
|
|
|
* @return string|null
|
|
|
|
*/
|
2021-12-01 14:53:20 +00:00
|
|
|
public function getCreatedTimestamp(): ?string {
|
2021-02-16 07:51:49 +00:00
|
|
|
return $this->createdTimestamp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the notification timestamp of this entry.
|
|
|
|
*
|
|
|
|
* @return string|null
|
|
|
|
*/
|
2021-12-01 14:53:20 +00:00
|
|
|
public function getNotificationTimestamp(): ?string {
|
2021-02-16 07:51:49 +00:00
|
|
|
return $this->notifiedTimestamp;
|
|
|
|
}
|
|
|
|
|
2021-08-19 20:35:32 +00:00
|
|
|
/**
|
|
|
|
* Get the subscription status of this entry.
|
|
|
|
*
|
|
|
|
* @return int One of SubscriptionStore::STATE_* constants
|
|
|
|
*/
|
|
|
|
public function getState(): int {
|
|
|
|
return $this->state;
|
|
|
|
}
|
|
|
|
|
2021-02-16 07:51:49 +00:00
|
|
|
/**
|
|
|
|
* Check if the notification is muted
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function isMuted(): bool {
|
2021-08-16 16:13:12 +00:00
|
|
|
return $this->state === SubscriptionStore::STATE_UNSUBSCRIBED;
|
2021-02-16 07:51:49 +00:00
|
|
|
}
|
|
|
|
}
|