MediaWiki REL1_28
WatchedItem.php
Go to the documentation of this file.
1<?php
23
33
37 const IGNORE_USER_RIGHTS = User::IGNORE_USER_RIGHTS;
38
42 const CHECK_USER_RIGHTS = User::CHECK_USER_RIGHTS;
43
48
53 public $checkRights = User::CHECK_USER_RIGHTS;
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
154 public static function fromUserTitle( $user, $title, $checkRights = User::CHECK_USER_RIGHTS ) {
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}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
MediaWikiServices is the service locator for the application scope of MediaWiki.
Represents a title within MediaWiki.
Definition Title.php:36
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:48
Representation of a pair of user and title for watchlist entries.
static duplicateEntries(Title $oldTitle, Title $newTitle)
getTitle()
Back compat pre 1.27 with the WatchedItemStore introduction.
bool $checkRights
LinkTarget $linkTarget
__construct(User $user, LinkTarget $linkTarget, $notificationTimestamp, $checkRights=null)
static fromUserTitle( $user, $title, $checkRights=User::CHECK_USER_RIGHTS)
const DEPRECATED_USAGE_TIMESTAMP
const CHECK_USER_RIGHTS
const IGNORE_USER_RIGHTS
getNotificationTimestamp()
Get the notification timestamp of this entry.
null string $notificationTimestamp
the value of the wl_notificationtimestamp field
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.
versus $oldTitle
Definition globals.txt:16
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:37
title