]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blob - includes/user/UserRightsProxy.php
MediaWiki 1.30.2-scripts
[autoinstalls/mediawiki.git] / includes / user / UserRightsProxy.php
1 <?php
2 /**
3  * Representation of an user on a other locally-hosted wiki.
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  * http://www.gnu.org/copyleft/gpl.html
19  *
20  * @file
21  */
22
23 use Wikimedia\Rdbms\IDatabase;
24
25 /**
26  * Cut-down copy of User interface for local-interwiki-database
27  * user rights manipulation.
28  */
29 class UserRightsProxy {
30
31         /**
32          * @see newFromId()
33          * @see newFromName()
34          * @param IDatabase $db Db connection
35          * @param string $database Database name
36          * @param string $name User name
37          * @param int $id User ID
38          */
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
47         /**
48          * Accessor for $this->database
49          *
50          * @return string Database name
51          */
52         public function getDBName() {
53                 return $this->database;
54         }
55
56         /**
57          * Confirm the selected database name is a valid local interwiki database name.
58          *
59          * @param string $database Database name
60          * @return bool
61          */
62         public static function validDatabase( $database ) {
63                 global $wgLocalDatabases;
64                 return in_array( $database, $wgLocalDatabases );
65         }
66
67         /**
68          * Same as User::whoIs()
69          *
70          * @param string $database Database name
71          * @param int $id User ID
72          * @param bool $ignoreInvalidDB If true, don't check if $database is in $wgLocalDatabases
73          * @return string User name or false if the user doesn't exist
74          */
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
84         /**
85          * Factory function; get a remote user entry by ID number.
86          *
87          * @param string $database Database name
88          * @param int $id User ID
89          * @param bool $ignoreInvalidDB If true, don't check if $database is in $wgLocalDatabases
90          * @return UserRightsProxy|null If doesn't exist
91          */
92         public static function newFromId( $database, $id, $ignoreInvalidDB = false ) {
93                 return self::newFromLookup( $database, 'user_id', intval( $id ), $ignoreInvalidDB );
94         }
95
96         /**
97          * Factory function; get a remote user entry by name.
98          *
99          * @param string $database Database name
100          * @param string $name User name
101          * @param bool $ignoreInvalidDB If true, don't check if $database is in $wgLocalDatabases
102          * @return UserRightsProxy|null If doesn't exist
103          */
104         public static function newFromName( $database, $name, $ignoreInvalidDB = false ) {
105                 return self::newFromLookup( $database, 'user_name', $name, $ignoreInvalidDB );
106         }
107
108         /**
109          * @param string $database
110          * @param string $field
111          * @param string $value
112          * @param bool $ignoreInvalidDB
113          * @return null|UserRightsProxy
114          */
115         private static function newFromLookup( $database, $field, $value, $ignoreInvalidDB = false ) {
116                 global $wgSharedDB, $wgSharedTables;
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
143         /**
144          * Open a database connection to work on for the requested user.
145          * This may be a new connection to another database for remote users.
146          *
147          * @param string $database
148          * @param bool $ignoreInvalidDB If true, don't check if $database is in $wgLocalDatabases
149          * @return IDatabase|null If invalid selection
150          */
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
164         /**
165          * @return int
166          */
167         public function getId() {
168                 return $this->id;
169         }
170
171         /**
172          * @return bool
173          */
174         public function isAnon() {
175                 return $this->getId() == 0;
176         }
177
178         /**
179          * Same as User::getName()
180          *
181          * @return string
182          */
183         public function getName() {
184                 return $this->name . '@' . $this->database;
185         }
186
187         /**
188          * Same as User::getUserPage()
189          *
190          * @return Title
191          */
192         public function getUserPage() {
193                 return Title::makeTitle( NS_USER, $this->getName() );
194         }
195
196         /**
197          * Replaces User::getUserGroups()
198          * @return array
199          */
200         function getGroups() {
201                 return array_keys( self::getGroupMemberships() );
202         }
203
204         /**
205          * Replaces User::getGroupMemberships()
206          *
207          * @return array
208          * @since 1.29
209          */
210         function getGroupMemberships() {
211                 return UserGroupMembership::getMembershipsForUser( $this->id, $this->db );
212         }
213
214         /**
215          * Replaces User::addGroup()
216          *
217          * @param string $group
218          * @param string|null $expiry
219          * @return bool
220          */
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
230         /**
231          * Replaces User::removeGroup()
232          *
233          * @param string $group
234          * @return bool
235          */
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
244         /**
245          * Replaces User::setOption()
246          * @param string $option
247          * @param mixed $value
248          */
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
269         /**
270          * Replaces User::touchUser()
271          */
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 }