MediaWiki  1.27.2
LocalIdLookup.php
Go to the documentation of this file.
1 <?php
34 
35  public function isAttached( User $user, $wikiId = null ) {
37 
38  // If the user has no ID, it can't be attached
39  if ( !$user->getId() ) {
40  return false;
41  }
42 
43  // Easy case, we're checking locally
44  if ( $wikiId === null || $wikiId === wfWikiID() ) {
45  return true;
46  }
47 
48  // Assume that shared user tables are set up as described above, if
49  // they're being used at all.
50  return $wgSharedDB !== null &&
51  in_array( 'user', $wgSharedTables, true ) &&
52  in_array( $wikiId, $wgLocalDatabases, true );
53  }
54 
55  public function lookupCentralIds(
56  array $idToName, $audience = self::AUDIENCE_PUBLIC, $flags = self::READ_NORMAL
57  ) {
58  if ( !$idToName ) {
59  return [];
60  }
61 
62  $audience = $this->checkAudience( $audience );
63  $db = wfGetDB( ( $flags & self::READ_LATEST ) ? DB_MASTER : DB_SLAVE );
64  $options = ( ( $flags & self::READ_LOCKING ) == self::READ_LOCKING )
65  ? [ 'LOCK IN SHARE MODE' ]
66  : [];
67 
68  $tables = [ 'user' ];
69  $fields = [ 'user_id', 'user_name' ];
70  $where = [
71  'user_id' => array_map( 'intval', array_keys( $idToName ) ),
72  ];
73  $join = [];
74  if ( $audience && !$audience->isAllowed( 'hideuser' ) ) {
75  $tables[] = 'ipblocks';
76  $join['ipblocks'] = [ 'LEFT JOIN', 'ipb_user=user_id' ];
77  $fields[] = 'ipb_deleted';
78  }
79 
80  $res = $db->select( $tables, $fields, $where, __METHOD__, $options, $join );
81  foreach ( $res as $row ) {
82  $idToName[$row->user_id] = empty( $row->ipb_deleted ) ? $row->user_name : '';
83  }
84 
85  return $idToName;
86  }
87 
88  public function lookupUserNames(
89  array $nameToId, $audience = self::AUDIENCE_PUBLIC, $flags = self::READ_NORMAL
90  ) {
91  if ( !$nameToId ) {
92  return [];
93  }
94 
95  $audience = $this->checkAudience( $audience );
96  $db = wfGetDB( ( $flags & self::READ_LATEST ) ? DB_MASTER : DB_SLAVE );
97  $options = ( ( $flags & self::READ_LOCKING ) == self::READ_LOCKING )
98  ? [ 'LOCK IN SHARE MODE' ]
99  : [];
100 
101  $tables = [ 'user' ];
102  $fields = [ 'user_id', 'user_name' ];
103  $where = [
104  'user_name' => array_map( 'strval', array_keys( $nameToId ) ),
105  ];
106  $join = [];
107  if ( $audience && !$audience->isAllowed( 'hideuser' ) ) {
108  $tables[] = 'ipblocks';
109  $join['ipblocks'] = [ 'LEFT JOIN', 'ipb_user=user_id' ];
110  $where[] = 'ipb_deleted = 0 OR ipb_deleted IS NULL';
111  }
112 
113  $res = $db->select( $tables, $fields, $where, __METHOD__, $options, $join );
114  foreach ( $res as $row ) {
115  $nameToId[$row->user_name] = (int)$row->user_id;
116  }
117 
118  return $nameToId;
119  }
120 }
wfGetDB($db, $groups=[], $wiki=false)
Get a Database object.
the array() calling protocol came about after MediaWiki 1.4rc1.
lookupUserNames(array $nameToId, $audience=self::AUDIENCE_PUBLIC, $flags=self::READ_NORMAL)
$wgSharedTables
it s the revision text itself In either if gzip is the revision text is gzipped $flags
Definition: hooks.txt:2548
lookupCentralIds(array $idToName, $audience=self::AUDIENCE_PUBLIC, $flags=self::READ_NORMAL)
when a variable name is used in a it is silently declared as a new local masking the global
Definition: design.txt:93
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist & $tables
Definition: hooks.txt:965
checkAudience($audience)
Check that the "audience" parameter is valid.
isAttached(User $user, $wikiId=null)
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
Definition: hooks.txt:1004
$res
Definition: database.txt:21
$wgSharedDB
Shared database for multiple wikis.
const DB_SLAVE
Definition: Defines.php:46
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
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 as
Definition: distributors.txt:9
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition: hooks.txt:242
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
getId()
Get the user's ID.
Definition: User.php:2061
$wgLocalDatabases
Other wikis on this site, can be administered from a single developer account.
const DB_MASTER
Definition: Defines.php:47
A CentralIdLookup provider that just uses local IDs.
The CentralIdLookup service allows for connecting local users with cluster-wide IDs.