Fix up my name.
[mediawiki.git] / includes / UserRightsProxy.php
blob8a65a01a66eda045afcf7c55e058faebac499efb
1 <?php
4 /**
5 * Cut-down copy of User interface for local-interwiki-database
6 * user rights manipulation.
7 */
8 class UserRightsProxy {
9 private function __construct( $db, $database, $name, $id ) {
10 $this->db = $db;
11 $this->database = $database;
12 $this->name = $name;
13 $this->id = intval( $id );
16 /**
17 * Confirm the selected database name is a valid local interwiki database name.
18 * @return bool
20 public static function validDatabase( $database ) {
21 global $wgLocalDatabases;
22 return in_array( $database, $wgLocalDatabases );
25 public static function whoIs( $database, $id ) {
26 $user = self::newFromId( $database, $id );
27 if( $user ) {
28 return $user->name;
29 } else {
30 return false;
34 /**
35 * Factory function; get a remote user entry by ID number.
36 * @return UserRightsProxy or null if doesn't exist
38 public static function newFromId( $database, $id ) {
39 return self::newFromLookup( $database, 'user_id', intval( $id ) );
42 public static function newFromName( $database, $name ) {
43 return self::newFromLookup( $database, 'user_name', $name );
46 private static function newFromLookup( $database, $field, $value ) {
47 $db = self::getDB( $database );
48 if( $db ) {
49 $row = $db->selectRow( 'user',
50 array( 'user_id', 'user_name' ),
51 array( $field => $value ),
52 __METHOD__ );
53 if( $row !== false ) {
54 return new UserRightsProxy( $db, $database,
55 $row->user_name,
56 intval( $row->user_id ) );
59 return null;
62 /**
63 * Open a database connection to work on for the requested user.
64 * This may be a new connection to another database for remote users.
65 * @param $database string
66 * @return Database or null if invalid selection
68 public static function getDB( $database ) {
69 global $wgLocalDatabases, $wgDBname;
70 if( self::validDatabase( $database ) ) {
71 if( $database == $wgDBname ) {
72 // Hmm... this shouldn't happen though. :)
73 return wfGetDB( DB_MASTER );
74 } else {
75 return wfGetDB( DB_MASTER, array(), $database );
78 return null;
81 public function getId() {
82 return $this->id;
85 public function isAnon() {
86 return $this->getId() == 0;
89 public function getName() {
90 return $this->name . '@' . $this->database;
93 public function getUserPage() {
94 return Title::makeTitle( NS_USER, $this->getName() );
97 // Replaces getUserGroups()
98 function getGroups() {
99 $res = $this->db->select( 'user_groups',
100 array( 'ug_group' ),
101 array( 'ug_user' => $this->id ),
102 __METHOD__ );
103 $groups = array();
104 while( $row = $this->db->fetchObject( $res ) ) {
105 $groups[] = $row->ug_group;
107 return $groups;
110 // replaces addUserGroup
111 function addGroup( $group ) {
112 $this->db->insert( 'user_groups',
113 array(
114 'ug_user' => $this->id,
115 'ug_group' => $group,
117 __METHOD__,
118 array( 'IGNORE' ) );
121 // replaces removeUserGroup
122 function removeGroup( $group ) {
123 $this->db->delete( 'user_groups',
124 array(
125 'ug_user' => $this->id,
126 'ug_group' => $group,
128 __METHOD__ );
131 // replaces touchUser
132 function invalidateCache() {
133 $this->db->update( 'user',
134 array( 'user_touched' => $this->db->timestamp() ),
135 array( 'user_id' => $this->id ),
136 __METHOD__ );
138 global $wgMemc;
139 if ( function_exists( 'wfForeignMemcKey' ) ) {
140 $key = wfForeignMemcKey( $this->database, false, 'user', 'id', $this->id );
141 } else {
142 $key = "$this->database:user:id:" . $this->id;
144 $wgMemc->delete( $key );