MediaWiki REL1_31
UserRightsProxy.php
Go to the documentation of this file.
1<?php
24
30
39 private function __construct( $db, $database, $name, $id ) {
40 $this->db = $db;
41 $this->database = $database;
42 $this->name = $name;
43 $this->id = intval( $id );
44 $this->newOptions = [];
45 }
46
52 public function getDBName() {
53 return $this->database;
54 }
55
62 public static function validDatabase( $database ) {
63 global $wgLocalDatabases;
64 return in_array( $database, $wgLocalDatabases );
65 }
66
75 public static function whoIs( $database, $id, $ignoreInvalidDB = false ) {
76 $user = self::newFromId( $database, $id, $ignoreInvalidDB );
77 if ( $user ) {
78 return $user->name;
79 } else {
80 return false;
81 }
82 }
83
92 public static function newFromId( $database, $id, $ignoreInvalidDB = false ) {
93 return self::newFromLookup( $database, 'user_id', intval( $id ), $ignoreInvalidDB );
94 }
95
104 public static function newFromName( $database, $name, $ignoreInvalidDB = false ) {
105 return self::newFromLookup( $database, 'user_name', $name, $ignoreInvalidDB );
106 }
107
115 private static function newFromLookup( $database, $field, $value, $ignoreInvalidDB = false ) {
117 // If the user table is shared, perform the user query on it,
118 // but don't pass it to the UserRightsProxy,
119 // as user rights are normally not shared.
120 if ( $wgSharedDB && in_array( 'user', $wgSharedTables ) ) {
121 $userdb = self::getDB( $wgSharedDB, $ignoreInvalidDB );
122 } else {
123 $userdb = self::getDB( $database, $ignoreInvalidDB );
124 }
125
126 $db = self::getDB( $database, $ignoreInvalidDB );
127
128 if ( $db && $userdb ) {
129 $row = $userdb->selectRow( 'user',
130 [ 'user_id', 'user_name' ],
131 [ $field => $value ],
132 __METHOD__ );
133
134 if ( $row !== false ) {
135 return new UserRightsProxy( $db, $database,
136 $row->user_name,
137 intval( $row->user_id ) );
138 }
139 }
140 return null;
141 }
142
151 public static function getDB( $database, $ignoreInvalidDB = false ) {
152 global $wgDBname;
153 if ( $ignoreInvalidDB || self::validDatabase( $database ) ) {
154 if ( $database == $wgDBname ) {
155 // Hmm... this shouldn't happen though. :)
156 return wfGetDB( DB_MASTER );
157 } else {
158 return wfGetDB( DB_MASTER, [], $database );
159 }
160 }
161 return null;
162 }
163
167 public function getId() {
168 return $this->id;
169 }
170
174 public function isAnon() {
175 return $this->getId() == 0;
176 }
177
183 public function getName() {
184 return $this->name . '@' . $this->database;
185 }
186
192 public function getUserPage() {
193 return Title::makeTitle( NS_USER, $this->getName() );
194 }
195
200 function getGroups() {
201 return array_keys( self::getGroupMemberships() );
202 }
203
211 return UserGroupMembership::getMembershipsForUser( $this->id, $this->db );
212 }
213
221 function addGroup( $group, $expiry = null ) {
222 if ( $expiry ) {
223 $expiry = wfTimestamp( TS_MW, $expiry );
224 }
225
226 $ugm = new UserGroupMembership( $this->id, $group, $expiry );
227 return $ugm->insert( true, $this->db );
228 }
229
236 function removeGroup( $group ) {
237 $ugm = UserGroupMembership::getMembership( $this->id, $group, $this->db );
238 if ( !$ugm ) {
239 return false;
240 }
241 return $ugm->delete( $this->db );
242 }
243
249 public function setOption( $option, $value ) {
250 $this->newOptions[$option] = $value;
251 }
252
253 public function saveSettings() {
254 $rows = [];
255 foreach ( $this->newOptions as $option => $value ) {
256 $rows[] = [
257 'up_user' => $this->id,
258 'up_property' => $option,
259 'up_value' => $value,
260 ];
261 }
262 $this->db->replace( 'user_properties',
263 [ [ 'up_user', 'up_property' ] ],
264 $rows, __METHOD__
265 );
266 $this->invalidateCache();
267 }
268
272 function invalidateCache() {
273 $this->db->update(
274 'user',
275 [ 'user_touched' => $this->db->timestamp() ],
276 [ 'user_id' => $this->id ],
277 __METHOD__
278 );
279
280 $domainId = $this->db->getDomainID();
281 $userId = $this->id;
282 $this->db->onTransactionPreCommitOrIdle(
283 function () use ( $domainId, $userId ) {
284 User::purge( $domainId, $userId );
285 },
286 __METHOD__
287 );
288 }
289}
$wgLocalDatabases
Other wikis on this site, can be administered from a single developer account.
$wgSharedTables
$wgSharedDB
Shared database for multiple wikis.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
Represents a "user group membership" – a specific instance of a user belonging to a group.
Cut-down copy of User interface for local-interwiki-database user rights manipulation.
static newFromLookup( $database, $field, $value, $ignoreInvalidDB=false)
getName()
Same as User::getName()
__construct( $db, $database, $name, $id)
static validDatabase( $database)
Confirm the selected database name is a valid local interwiki database name.
getGroupMemberships()
Replaces User::getGroupMemberships()
static newFromName( $database, $name, $ignoreInvalidDB=false)
Factory function; get a remote user entry by name.
removeGroup( $group)
Replaces User::removeGroup()
static getDB( $database, $ignoreInvalidDB=false)
Open a database connection to work on for the requested user.
getGroups()
Replaces User::getUserGroups()
setOption( $option, $value)
Replaces User::setOption()
invalidateCache()
Replaces User::touchUser()
getDBName()
Accessor for $this->database.
static newFromId( $database, $id, $ignoreInvalidDB=false)
Factory function; get a remote user entry by ID number.
static whoIs( $database, $id, $ignoreInvalidDB=false)
Same as User::whoIs()
addGroup( $group, $expiry=null)
Replaces User::addGroup()
getUserPage()
Same as User::getUserPage()
static purge( $wikiId, $userId)
Definition User.php:496
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction $rows
Definition hooks.txt:2783
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:302
> value, names are case insensitive). Two headers get special handling:If-Modified-Since(value must be a valid HTTP date) and Range(must be of the form "bytes=(\d*-\d*)") will be honored when streaming the file. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) name
Definition hooks.txt:1840
Basic database interface for live and lazy-loaded relation database handles.
Definition IDatabase.php:38
controlled by $wgMainCacheType controlled by $wgParserCacheType controlled by $wgMessageCacheType If you set CACHE_NONE to one of the three control default value for MediaWiki still create a but requests to it are no ops and we always fall through to the database If the cache daemon can t be it should also disable itself fairly smoothly By $wgMemc is used but when it is $parserMemc or $messageMemc this is mentioned $wgDBname
const DB_MASTER
Definition defines.php:29