MediaWiki  1.28.1
WatchedItem.php
Go to the documentation of this file.
1 <?php
23 
32 class WatchedItem {
33 
38 
43 
48 
54 
59  private $title;
60 
64  private $linkTarget;
65 
69  private $user;
70 
75 
82  public function __construct(
83  User $user,
86  $checkRights = null
87  ) {
88  $this->user = $user;
89  $this->linkTarget = $linkTarget;
90  $this->notificationTimestamp = $notificationTimestamp;
91  if ( $checkRights !== null ) {
92  $this->checkRights = $checkRights;
93  }
94  }
95 
99  public function getUser() {
100  return $this->user;
101  }
102 
106  public function getLinkTarget() {
107  return $this->linkTarget;
108  }
109 
115  public function getNotificationTimestamp() {
116  // Back compat for objects constructed using self::fromUserTitle
117  if ( $this->notificationTimestamp === self::DEPRECATED_USAGE_TIMESTAMP ) {
118  // wfDeprecated( __METHOD__, '1.27' );
119  if ( $this->checkRights && !$this->user->isAllowed( 'viewmywatchlist' ) ) {
120  return false;
121  }
122  $item = MediaWikiServices::getInstance()->getWatchedItemStore()
123  ->loadWatchedItem( $this->user, $this->linkTarget );
124  if ( $item ) {
125  $this->notificationTimestamp = $item->getNotificationTimestamp();
126  } else {
127  $this->notificationTimestamp = false;
128  }
129  }
131  }
132 
143  public function getTitle() {
144  if ( !$this->title ) {
145  $this->title = Title::newFromLinkTarget( $this->linkTarget );
146  }
147  return $this->title;
148  }
149 
155  wfDeprecated( __METHOD__, '1.27' );
156  return new self( $user, $title, self::DEPRECATED_USAGE_TIMESTAMP, (bool)$checkRights );
157  }
158 
163  public function addWatch() {
164  wfDeprecated( __METHOD__, '1.27' );
165  $this->user->addWatch( $this->getTitle(), $this->checkRights );
166  return true;
167  }
168 
173  public function removeWatch() {
174  wfDeprecated( __METHOD__, '1.27' );
175  if ( $this->checkRights && !$this->user->isAllowed( 'editmywatchlist' ) ) {
176  return false;
177  }
178  $this->user->removeWatch( $this->getTitle(), $this->checkRights );
179  return true;
180  }
181 
186  public function isWatched() {
187  wfDeprecated( __METHOD__, '1.27' );
188  return $this->user->isWatched( $this->getTitle(), $this->checkRights );
189  }
190 
194  public static function duplicateEntries( Title $oldTitle, Title $newTitle ) {
195  wfDeprecated( __METHOD__, '1.27' );
196  $store = MediaWikiServices::getInstance()->getWatchedItemStore();
197  $store->duplicateAllAssociatedEntries( $oldTitle, $newTitle );
198  }
199 
200 }
getNotificationTimestamp()
Get the notification timestamp of this entry.
LinkTarget $linkTarget
Definition: WatchedItem.php:64
null string $notificationTimestamp
the value of the wl_notificationtimestamp field
Definition: WatchedItem.php:74
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
const DEPRECATED_USAGE_TIMESTAMP
Definition: WatchedItem.php:47
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
Definition: injection.txt:23
Title $title
Definition: WatchedItem.php:59
static newFromLinkTarget(LinkTarget $linkTarget)
Create a new Title from a LinkTarget.
Definition: Title.php:236
title
getTitle()
Back compat pre 1.27 with the WatchedItemStore introduction.
const IGNORE_USER_RIGHTS
Definition: WatchedItem.php:37
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such and we might be restricted by PHP settings such as safe mode or open_basedir We cannot assume that the software even has read access anywhere useful Many shared hosts run all users web applications under the same user
Wikitext formatted, in the key only.
Definition: distributors.txt:9
static duplicateEntries(Title $oldTitle, Title $newTitle)
const IGNORE_USER_RIGHTS
Definition: User.php:85
wfDeprecated($function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
Representation of a pair of user and title for watchlist entries.
Definition: WatchedItem.php:32
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
const CHECK_USER_RIGHTS
Definition: WatchedItem.php:42
versus $oldTitle
Definition: globals.txt:16
bool $checkRights
Definition: WatchedItem.php:53
const CHECK_USER_RIGHTS
Definition: User.php:80
static fromUserTitle($user, $title, $checkRights=User::CHECK_USER_RIGHTS)
__construct(User $user, LinkTarget $linkTarget, $notificationTimestamp, $checkRights=null)
Definition: WatchedItem.php:82