MediaWiki REL1_33
SpecialUserrights.php
Go to the documentation of this file.
1<?php
36 protected $mTarget;
37 /*
38 * @var null|User $mFetchedUser The user object of the target username or null.
39 */
40 protected $mFetchedUser = null;
41 protected $isself = false;
42
43 public function __construct() {
44 parent::__construct( 'Userrights' );
45 }
46
47 public function doesWrites() {
48 return true;
49 }
50
60 public function userCanChangeRights( $targetUser, $checkIfSelf = true ) {
61 $isself = $this->getUser()->equals( $targetUser );
62
63 $available = $this->changeableGroups();
64 if ( $targetUser->getId() == 0 ) {
65 return false;
66 }
67
68 return !empty( $available['add'] )
69 || !empty( $available['remove'] )
70 || ( ( $isself || !$checkIfSelf ) &&
71 ( !empty( $available['add-self'] )
72 || !empty( $available['remove-self'] ) ) );
73 }
74
82 public function execute( $par ) {
83 $user = $this->getUser();
84 $request = $this->getRequest();
85 $session = $request->getSession();
86 $out = $this->getOutput();
87
88 $out->addModules( [ 'mediawiki.special.userrights' ] );
89
90 $this->mTarget = $par ?? $request->getVal( 'user' );
91
92 if ( is_string( $this->mTarget ) ) {
93 $this->mTarget = trim( $this->mTarget );
94 }
95
96 if ( $this->mTarget !== null && User::getCanonicalName( $this->mTarget ) === $user->getName() ) {
97 $this->isself = true;
98 }
99
100 $fetchedStatus = $this->fetchUser( $this->mTarget, true );
101 if ( $fetchedStatus->isOK() ) {
102 $this->mFetchedUser = $fetchedStatus->value;
103 if ( $this->mFetchedUser instanceof User ) {
104 // Set the 'relevant user' in the skin, so it displays links like Contributions,
105 // User logs, UserRights, etc.
106 $this->getSkin()->setRelevantUser( $this->mFetchedUser );
107 }
108 }
109
110 // show a successbox, if the user rights was saved successfully
111 if (
112 $session->get( 'specialUserrightsSaveSuccess' ) &&
113 $this->mFetchedUser !== null
114 ) {
115 // Remove session data for the success message
116 $session->remove( 'specialUserrightsSaveSuccess' );
117
118 $out->addModuleStyles( 'mediawiki.notification.convertmessagebox.styles' );
119 $out->addHTML(
120 Html::rawElement(
121 'div',
122 [
123 'class' => 'mw-notify-success successbox',
124 'id' => 'mw-preferences-success',
125 'data-mw-autohide' => 'false',
126 ],
127 Html::element(
128 'p',
129 [],
130 $this->msg( 'savedrights', $this->mFetchedUser->getName() )->text()
131 )
132 )
133 );
134 }
135
136 $this->setHeaders();
137 $this->outputHeader();
138
139 $out->addModuleStyles( 'mediawiki.special' );
140 $this->addHelpLink( 'Help:Assigning permissions' );
141
142 $this->switchForm();
143
144 if (
145 $request->wasPosted() &&
146 $request->getCheck( 'saveusergroups' ) &&
147 $this->mTarget !== null &&
148 $user->matchEditToken( $request->getVal( 'wpEditToken' ), $this->mTarget )
149 ) {
150 /*
151 * If the user is blocked and they only have "partial" access
152 * (e.g. they don't have the userrights permission), then don't
153 * allow them to change any user rights.
154 */
155 if ( $user->isBlocked() && !$user->isAllowed( 'userrights' ) ) {
156 throw new UserBlockedError( $user->getBlock() );
157 }
158
159 $this->checkReadOnly();
160
161 // save settings
162 if ( !$fetchedStatus->isOK() ) {
163 $this->getOutput()->addWikiTextAsInterface( $fetchedStatus->getWikiText() );
164
165 return;
166 }
167
168 $targetUser = $this->mFetchedUser;
169 if ( $targetUser instanceof User ) { // UserRightsProxy doesn't have this method (T63252)
170 $targetUser->clearInstanceCache(); // T40989
171 }
172
173 $conflictCheck = $request->getVal( 'conflictcheck-originalgroups' );
174 $conflictCheck = ( $conflictCheck === '' ) ? [] : explode( ',', $conflictCheck );
175 $userGroups = $targetUser->getGroups();
176
177 if ( $userGroups !== $conflictCheck ) {
178 $out->wrapWikiMsg( '<span class="error">$1</span>', 'userrights-conflict' );
179 } else {
180 $status = $this->saveUserGroups(
181 $this->mTarget,
182 $request->getVal( 'user-reason' ),
183 $targetUser
184 );
185
186 if ( $status->isOK() ) {
187 // Set session data for the success message
188 $session->set( 'specialUserrightsSaveSuccess', 1 );
189
190 $out->redirect( $this->getSuccessURL() );
191 return;
192 } else {
193 // Print an error message and redisplay the form
194 $out->wrapWikiTextAsInterface( 'error', $status->getWikiText() );
195 }
196 }
197 }
198
199 // show some more forms
200 if ( $this->mTarget !== null ) {
201 $this->editUserGroupsForm( $this->mTarget );
202 }
203 }
204
205 function getSuccessURL() {
206 return $this->getPageTitle( $this->mTarget )->getFullURL();
207 }
208
215 public function canProcessExpiries() {
216 return true;
217 }
218
228 public static function expiryToTimestamp( $expiry ) {
229 if ( wfIsInfinity( $expiry ) ) {
230 return null;
231 }
232
233 $unix = strtotime( $expiry );
234
235 if ( !$unix || $unix === -1 ) {
236 return false;
237 }
238
239 // @todo FIXME: Non-qualified absolute times are not in users specified timezone
240 // and there isn't notice about it in the ui (see ProtectionForm::getExpiry)
241 return wfTimestamp( TS_MW, $unix );
242 }
243
253 protected function saveUserGroups( $username, $reason, $user ) {
254 $allgroups = $this->getAllGroups();
255 $addgroup = [];
256 $groupExpiries = []; // associative array of (group name => expiry)
257 $removegroup = [];
258 $existingUGMs = $user->getGroupMemberships();
259
260 // This could possibly create a highly unlikely race condition if permissions are changed between
261 // when the form is loaded and when the form is saved. Ignoring it for the moment.
262 foreach ( $allgroups as $group ) {
263 // We'll tell it to remove all unchecked groups, and add all checked groups.
264 // Later on, this gets filtered for what can actually be removed
265 if ( $this->getRequest()->getCheck( "wpGroup-$group" ) ) {
266 $addgroup[] = $group;
267
268 if ( $this->canProcessExpiries() ) {
269 // read the expiry information from the request
270 $expiryDropdown = $this->getRequest()->getVal( "wpExpiry-$group" );
271 if ( $expiryDropdown === 'existing' ) {
272 continue;
273 }
274
275 if ( $expiryDropdown === 'other' ) {
276 $expiryValue = $this->getRequest()->getVal( "wpExpiry-$group-other" );
277 } else {
278 $expiryValue = $expiryDropdown;
279 }
280
281 // validate the expiry
282 $groupExpiries[$group] = self::expiryToTimestamp( $expiryValue );
283
284 if ( $groupExpiries[$group] === false ) {
285 return Status::newFatal( 'userrights-invalid-expiry', $group );
286 }
287
288 // not allowed to have things expiring in the past
289 if ( $groupExpiries[$group] && $groupExpiries[$group] < wfTimestampNow() ) {
290 return Status::newFatal( 'userrights-expiry-in-past', $group );
291 }
292
293 // if the user can only add this group (not remove it), the expiry time
294 // cannot be brought forward (T156784)
295 if ( !$this->canRemove( $group ) &&
296 isset( $existingUGMs[$group] ) &&
297 ( $existingUGMs[$group]->getExpiry() ?: 'infinity' ) >
298 ( $groupExpiries[$group] ?: 'infinity' )
299 ) {
300 return Status::newFatal( 'userrights-cannot-shorten-expiry', $group );
301 }
302 }
303 } else {
304 $removegroup[] = $group;
305 }
306 }
307
308 $this->doSaveUserGroups( $user, $addgroup, $removegroup, $reason, [], $groupExpiries );
309
310 return Status::newGood();
311 }
312
326 function doSaveUserGroups( $user, array $add, array $remove, $reason = '',
327 array $tags = [], array $groupExpiries = []
328 ) {
329 // Validate input set...
330 $isself = $user->getName() == $this->getUser()->getName();
331 $groups = $user->getGroups();
332 $ugms = $user->getGroupMemberships();
333 $changeable = $this->changeableGroups();
334 $addable = array_merge( $changeable['add'], $isself ? $changeable['add-self'] : [] );
335 $removable = array_merge( $changeable['remove'], $isself ? $changeable['remove-self'] : [] );
336
337 $remove = array_unique(
338 array_intersect( (array)$remove, $removable, $groups ) );
339 $add = array_intersect( (array)$add, $addable );
340
341 // add only groups that are not already present or that need their expiry updated,
342 // UNLESS the user can only add this group (not remove it) and the expiry time
343 // is being brought forward (T156784)
344 $add = array_filter( $add,
345 function ( $group ) use ( $groups, $groupExpiries, $removable, $ugms ) {
346 if ( isset( $groupExpiries[$group] ) &&
347 !in_array( $group, $removable ) &&
348 isset( $ugms[$group] ) &&
349 ( $ugms[$group]->getExpiry() ?: 'infinity' ) >
350 ( $groupExpiries[$group] ?: 'infinity' )
351 ) {
352 return false;
353 }
354 return !in_array( $group, $groups ) || array_key_exists( $group, $groupExpiries );
355 } );
356
357 Hooks::run( 'ChangeUserGroups', [ $this->getUser(), $user, &$add, &$remove ] );
358
359 $oldGroups = $groups;
360 $oldUGMs = $user->getGroupMemberships();
361 $newGroups = $oldGroups;
362
363 // Remove groups, then add new ones/update expiries of existing ones
364 if ( $remove ) {
365 foreach ( $remove as $index => $group ) {
366 if ( !$user->removeGroup( $group ) ) {
367 unset( $remove[$index] );
368 }
369 }
370 $newGroups = array_diff( $newGroups, $remove );
371 }
372 if ( $add ) {
373 foreach ( $add as $index => $group ) {
374 $expiry = $groupExpiries[$group] ?? null;
375 if ( !$user->addGroup( $group, $expiry ) ) {
376 unset( $add[$index] );
377 }
378 }
379 $newGroups = array_merge( $newGroups, $add );
380 }
381 $newGroups = array_unique( $newGroups );
382 $newUGMs = $user->getGroupMemberships();
383
384 // Ensure that caches are cleared
385 $user->invalidateCache();
386
387 // update groups in external authentication database
388 Hooks::run( 'UserGroupsChanged', [ $user, $add, $remove, $this->getUser(),
389 $reason, $oldUGMs, $newUGMs ] );
390
391 wfDebug( 'oldGroups: ' . print_r( $oldGroups, true ) . "\n" );
392 wfDebug( 'newGroups: ' . print_r( $newGroups, true ) . "\n" );
393 wfDebug( 'oldUGMs: ' . print_r( $oldUGMs, true ) . "\n" );
394 wfDebug( 'newUGMs: ' . print_r( $newUGMs, true ) . "\n" );
395 // Deprecated in favor of UserGroupsChanged hook
396 Hooks::run( 'UserRights', [ &$user, $add, $remove ], '1.26' );
397
398 // Only add a log entry if something actually changed
399 if ( $newGroups != $oldGroups || $newUGMs != $oldUGMs ) {
400 $this->addLogEntry( $user, $oldGroups, $newGroups, $reason, $tags, $oldUGMs, $newUGMs );
401 }
402
403 return [ $add, $remove ];
404 }
405
413 protected static function serialiseUgmForLog( $ugm ) {
414 if ( !$ugm instanceof UserGroupMembership ) {
415 return null;
416 }
417 return [ 'expiry' => $ugm->getExpiry() ];
418 }
419
430 protected function addLogEntry( $user, array $oldGroups, array $newGroups, $reason,
431 array $tags, array $oldUGMs, array $newUGMs
432 ) {
433 // make sure $oldUGMs and $newUGMs are in the same order, and serialise
434 // each UGM object to a simplified array
435 $oldUGMs = array_map( function ( $group ) use ( $oldUGMs ) {
436 return isset( $oldUGMs[$group] ) ?
437 self::serialiseUgmForLog( $oldUGMs[$group] ) :
438 null;
439 }, $oldGroups );
440 $newUGMs = array_map( function ( $group ) use ( $newUGMs ) {
441 return isset( $newUGMs[$group] ) ?
442 self::serialiseUgmForLog( $newUGMs[$group] ) :
443 null;
444 }, $newGroups );
445
446 $logEntry = new ManualLogEntry( 'rights', 'rights' );
447 $logEntry->setPerformer( $this->getUser() );
448 $logEntry->setTarget( $user->getUserPage() );
449 $logEntry->setComment( $reason );
450 $logEntry->setParameters( [
451 '4::oldgroups' => $oldGroups,
452 '5::newgroups' => $newGroups,
453 'oldmetadata' => $oldUGMs,
454 'newmetadata' => $newUGMs,
455 ] );
456 $logid = $logEntry->insert();
457 if ( count( $tags ) ) {
458 $logEntry->setTags( $tags );
459 }
460 $logEntry->publish( $logid );
461 }
462
468 $status = $this->fetchUser( $username, true );
469 if ( !$status->isOK() ) {
470 $this->getOutput()->addWikiTextAsInterface( $status->getWikiText() );
471
472 return;
473 } else {
474 $user = $status->value;
475 }
476
477 $groups = $user->getGroups();
478 $groupMemberships = $user->getGroupMemberships();
479 $this->showEditUserGroupsForm( $user, $groups, $groupMemberships );
480
481 // This isn't really ideal logging behavior, but let's not hide the
482 // interwiki logs if we're using them as is.
483 $this->showLogFragment( $user, $this->getOutput() );
484 }
485
495 public function fetchUser( $username, $writing = true ) {
496 $parts = explode( $this->getConfig()->get( 'UserrightsInterwikiDelimiter' ), $username );
497 if ( count( $parts ) < 2 ) {
498 $name = trim( $username );
499 $wikiId = '';
500 } else {
501 list( $name, $wikiId ) = array_map( 'trim', $parts );
502
503 if ( WikiMap::isCurrentWikiId( $wikiId ) ) {
504 $wikiId = '';
505 } else {
506 if ( $writing && !$this->getUser()->isAllowed( 'userrights-interwiki' ) ) {
507 return Status::newFatal( 'userrights-no-interwiki' );
508 }
509 if ( !UserRightsProxy::validDatabase( $wikiId ) ) {
510 return Status::newFatal( 'userrights-nodatabase', $wikiId );
511 }
512 }
513 }
514
515 if ( $name === '' ) {
516 return Status::newFatal( 'nouserspecified' );
517 }
518
519 if ( $name[0] == '#' ) {
520 // Numeric ID can be specified...
521 // We'll do a lookup for the name internally.
522 $id = intval( substr( $name, 1 ) );
523
524 if ( $wikiId == '' ) {
525 $name = User::whoIs( $id );
526 } else {
527 $name = UserRightsProxy::whoIs( $wikiId, $id );
528 }
529
530 if ( !$name ) {
531 return Status::newFatal( 'noname' );
532 }
533 } else {
535 if ( $name === false ) {
536 // invalid name
537 return Status::newFatal( 'nosuchusershort', $username );
538 }
539 }
540
541 if ( $wikiId == '' ) {
543 } else {
545 }
546
547 if ( !$user || $user->isAnon() ) {
548 return Status::newFatal( 'nosuchusershort', $username );
549 }
550
551 return Status::newGood( $user );
552 }
553
561 public function makeGroupNameList( $ids ) {
562 if ( empty( $ids ) ) {
563 return $this->msg( 'rightsnone' )->inContentLanguage()->text();
564 } else {
565 return implode( ', ', $ids );
566 }
567 }
568
572 function switchForm() {
573 $this->getOutput()->addModules( 'mediawiki.userSuggest' );
574
575 $this->getOutput()->addHTML(
576 Html::openElement(
577 'form',
578 [
579 'method' => 'get',
580 'action' => wfScript(),
581 'name' => 'uluser',
582 'id' => 'mw-userrights-form1'
583 ]
584 ) .
585 Html::hidden( 'title', $this->getPageTitle()->getPrefixedText() ) .
586 Xml::fieldset( $this->msg( 'userrights-lookup-user' )->text() ) .
587 Xml::inputLabel(
588 $this->msg( 'userrights-user-editname' )->text(),
589 'user',
590 'username',
591 30,
592 str_replace( '_', ' ', $this->mTarget ),
593 [
594 'class' => 'mw-autocomplete-user', // used by mediawiki.userSuggest
595 ] + (
596 // Set autofocus on blank input and error input
597 $this->mFetchedUser === null ? [ 'autofocus' => '' ] : []
598 )
599 ) . ' ' .
600 Xml::submitButton(
601 $this->msg( 'editusergroup' )->text()
602 ) .
603 Html::closeElement( 'fieldset' ) .
604 Html::closeElement( 'form' ) . "\n"
605 );
606 }
607
617 protected function showEditUserGroupsForm( $user, $groups, $groupMemberships ) {
618 $list = $membersList = $tempList = $tempMembersList = [];
619 foreach ( $groupMemberships as $ugm ) {
620 $linkG = UserGroupMembership::getLink( $ugm, $this->getContext(), 'html' );
621 $linkM = UserGroupMembership::getLink( $ugm, $this->getContext(), 'html',
622 $user->getName() );
623 if ( $ugm->getExpiry() ) {
624 $tempList[] = $linkG;
625 $tempMembersList[] = $linkM;
626 } else {
627 $list[] = $linkG;
628 $membersList[] = $linkM;
629
630 }
631 }
632
633 $autoList = [];
634 $autoMembersList = [];
635 if ( $user instanceof User ) {
636 foreach ( Autopromote::getAutopromoteGroups( $user ) as $group ) {
637 $autoList[] = UserGroupMembership::getLink( $group, $this->getContext(), 'html' );
638 $autoMembersList[] = UserGroupMembership::getLink( $group, $this->getContext(),
639 'html', $user->getName() );
640 }
641 }
642
643 $language = $this->getLanguage();
644 $displayedList = $this->msg( 'userrights-groupsmember-type' )
645 ->rawParams(
646 $language->commaList( array_merge( $tempList, $list ) ),
647 $language->commaList( array_merge( $tempMembersList, $membersList ) )
648 )->escaped();
649 $displayedAutolist = $this->msg( 'userrights-groupsmember-type' )
650 ->rawParams(
651 $language->commaList( $autoList ),
652 $language->commaList( $autoMembersList )
653 )->escaped();
654
655 $grouplist = '';
656 $count = count( $list ) + count( $tempList );
657 if ( $count > 0 ) {
658 $grouplist = $this->msg( 'userrights-groupsmember' )
659 ->numParams( $count )
660 ->params( $user->getName() )
661 ->parse();
662 $grouplist = '<p>' . $grouplist . ' ' . $displayedList . "</p>\n";
663 }
664
665 $count = count( $autoList );
666 if ( $count > 0 ) {
667 $autogrouplistintro = $this->msg( 'userrights-groupsmember-auto' )
668 ->numParams( $count )
669 ->params( $user->getName() )
670 ->parse();
671 $grouplist .= '<p>' . $autogrouplistintro . ' ' . $displayedAutolist . "</p>\n";
672 }
673
674 $userToolLinks = Linker::userToolLinks(
675 $user->getId(),
676 $user->getName(),
677 false, /* default for redContribsWhenNoEdits */
678 Linker::TOOL_LINKS_EMAIL /* Add "send e-mail" link */
679 );
680
681 list( $groupCheckboxes, $canChangeAny ) =
682 $this->groupCheckboxes( $groupMemberships, $user );
683 $this->getOutput()->addHTML(
684 Xml::openElement(
685 'form',
686 [
687 'method' => 'post',
688 'action' => $this->getPageTitle()->getLocalURL(),
689 'name' => 'editGroup',
690 'id' => 'mw-userrights-form2'
691 ]
692 ) .
693 Html::hidden( 'user', $this->mTarget ) .
694 Html::hidden( 'wpEditToken', $this->getUser()->getEditToken( $this->mTarget ) ) .
695 Html::hidden(
696 'conflictcheck-originalgroups',
697 implode( ',', $user->getGroups() )
698 ) . // Conflict detection
699 Xml::openElement( 'fieldset' ) .
700 Xml::element(
701 'legend',
702 [],
703 $this->msg(
704 $canChangeAny ? 'userrights-editusergroup' : 'userrights-viewusergroup',
705 $user->getName()
706 )->text()
707 ) .
708 $this->msg(
709 $canChangeAny ? 'editinguser' : 'viewinguserrights'
710 )->params( wfEscapeWikiText( $user->getName() ) )
711 ->rawParams( $userToolLinks )->parse()
712 );
713 if ( $canChangeAny ) {
714 $this->getOutput()->addHTML(
715 $this->msg( 'userrights-groups-help', $user->getName() )->parse() .
716 $grouplist .
717 $groupCheckboxes .
718 Xml::openElement( 'table', [ 'id' => 'mw-userrights-table-outer' ] ) .
719 "<tr>
720 <td class='mw-label'>" .
721 Xml::label( $this->msg( 'userrights-reason' )->text(), 'wpReason' ) .
722 "</td>
723 <td class='mw-input'>" .
724 Xml::input( 'user-reason', 60, $this->getRequest()->getVal( 'user-reason', false ), [
725 'id' => 'wpReason',
726 // HTML maxlength uses "UTF-16 code units", which means that characters outside BMP
727 // (e.g. emojis) count for two each. This limit is overridden in JS to instead count
728 // Unicode codepoints.
729 'maxlength' => CommentStore::COMMENT_CHARACTER_LIMIT,
730 ] ) .
731 "</td>
732 </tr>
733 <tr>
734 <td></td>
735 <td class='mw-submit'>" .
736 Xml::submitButton( $this->msg( 'saveusergroups', $user->getName() )->text(),
737 [ 'name' => 'saveusergroups' ] +
738 Linker::tooltipAndAccesskeyAttribs( 'userrights-set' )
739 ) .
740 "</td>
741 </tr>" .
742 Xml::closeElement( 'table' ) . "\n"
743 );
744 } else {
745 $this->getOutput()->addHTML( $grouplist );
746 }
747 $this->getOutput()->addHTML(
748 Xml::closeElement( 'fieldset' ) .
749 Xml::closeElement( 'form' ) . "\n"
750 );
751 }
752
757 protected static function getAllGroups() {
758 return User::getAllGroups();
759 }
760
770 private function groupCheckboxes( $usergroups, $user ) {
771 $allgroups = $this->getAllGroups();
772 $ret = '';
773
774 // Get the list of preset expiry times from the system message
775 $expiryOptionsMsg = $this->msg( 'userrights-expiry-options' )->inContentLanguage();
776 $expiryOptions = $expiryOptionsMsg->isDisabled() ?
777 [] :
778 explode( ',', $expiryOptionsMsg->text() );
779
780 // Put all column info into an associative array so that extensions can
781 // more easily manage it.
782 $columns = [ 'unchangeable' => [], 'changeable' => [] ];
783
784 foreach ( $allgroups as $group ) {
785 $set = isset( $usergroups[$group] );
786 // Users who can add the group, but not remove it, can only lengthen
787 // expiries, not shorten them. So they should only see the expiry
788 // dropdown if the group currently has a finite expiry
789 $canOnlyLengthenExpiry = ( $set && $this->canAdd( $group ) &&
790 !$this->canRemove( $group ) && $usergroups[$group]->getExpiry() );
791 // Should the checkbox be disabled?
792 $disabledCheckbox = !(
793 ( $set && $this->canRemove( $group ) ) ||
794 ( !$set && $this->canAdd( $group ) ) );
795 // Should the expiry elements be disabled?
796 $disabledExpiry = $disabledCheckbox && !$canOnlyLengthenExpiry;
797 // Do we need to point out that this action is irreversible?
798 $irreversible = !$disabledCheckbox && (
799 ( $set && !$this->canAdd( $group ) ) ||
800 ( !$set && !$this->canRemove( $group ) ) );
801
802 $checkbox = [
803 'set' => $set,
804 'disabled' => $disabledCheckbox,
805 'disabled-expiry' => $disabledExpiry,
806 'irreversible' => $irreversible
807 ];
808
809 if ( $disabledCheckbox && $disabledExpiry ) {
810 $columns['unchangeable'][$group] = $checkbox;
811 } else {
812 $columns['changeable'][$group] = $checkbox;
813 }
814 }
815
816 // Build the HTML table
817 $ret .= Xml::openElement( 'table', [ 'class' => 'mw-userrights-groups' ] ) .
818 "<tr>\n";
819 foreach ( $columns as $name => $column ) {
820 if ( $column === [] ) {
821 continue;
822 }
823 // Messages: userrights-changeable-col, userrights-unchangeable-col
824 $ret .= Xml::element(
825 'th',
826 null,
827 $this->msg( 'userrights-' . $name . '-col', count( $column ) )->text()
828 );
829 }
830
831 $ret .= "</tr>\n<tr>\n";
832 foreach ( $columns as $column ) {
833 if ( $column === [] ) {
834 continue;
835 }
836 $ret .= "\t<td style='vertical-align:top;'>\n";
837 foreach ( $column as $group => $checkbox ) {
838 $attr = [ 'class' => 'mw-userrights-groupcheckbox' ];
839 if ( $checkbox['disabled'] ) {
840 $attr['disabled'] = 'disabled';
841 }
842
843 $member = UserGroupMembership::getGroupMemberName( $group, $user->getName() );
844 if ( $checkbox['irreversible'] ) {
845 $text = $this->msg( 'userrights-irreversible-marker', $member )->text();
846 } elseif ( $checkbox['disabled'] && !$checkbox['disabled-expiry'] ) {
847 $text = $this->msg( 'userrights-no-shorten-expiry-marker', $member )->text();
848 } else {
849 $text = $member;
850 }
851 $checkboxHtml = Xml::checkLabel( $text, "wpGroup-" . $group,
852 "wpGroup-" . $group, $checkbox['set'], $attr );
853
854 if ( $this->canProcessExpiries() ) {
855 $uiUser = $this->getUser();
856 $uiLanguage = $this->getLanguage();
857
858 $currentExpiry = isset( $usergroups[$group] ) ?
859 $usergroups[$group]->getExpiry() :
860 null;
861
862 // If the user can't modify the expiry, print the current expiry below
863 // it in plain text. Otherwise provide UI to set/change the expiry
864 if ( $checkbox['set'] &&
865 ( $checkbox['irreversible'] || $checkbox['disabled-expiry'] )
866 ) {
867 if ( $currentExpiry ) {
868 $expiryFormatted = $uiLanguage->userTimeAndDate( $currentExpiry, $uiUser );
869 $expiryFormattedD = $uiLanguage->userDate( $currentExpiry, $uiUser );
870 $expiryFormattedT = $uiLanguage->userTime( $currentExpiry, $uiUser );
871 $expiryHtml = $this->msg( 'userrights-expiry-current' )->params(
872 $expiryFormatted, $expiryFormattedD, $expiryFormattedT )->text();
873 } else {
874 $expiryHtml = $this->msg( 'userrights-expiry-none' )->text();
875 }
876 // T171345: Add a hidden form element so that other groups can still be manipulated,
877 // otherwise saving errors out with an invalid expiry time for this group.
878 $expiryHtml .= Html::hidden( "wpExpiry-$group",
879 $currentExpiry ? 'existing' : 'infinite' );
880 $expiryHtml .= "<br />\n";
881 } else {
882 $expiryHtml = Xml::element( 'span', null,
883 $this->msg( 'userrights-expiry' )->text() );
884 $expiryHtml .= Xml::openElement( 'span' );
885
886 // add a form element to set the expiry date
887 $expiryFormOptions = new XmlSelect(
888 "wpExpiry-$group",
889 "mw-input-wpExpiry-$group", // forward compatibility with HTMLForm
890 $currentExpiry ? 'existing' : 'infinite'
891 );
892 if ( $checkbox['disabled-expiry'] ) {
893 $expiryFormOptions->setAttribute( 'disabled', 'disabled' );
894 }
895
896 if ( $currentExpiry ) {
897 $timestamp = $uiLanguage->userTimeAndDate( $currentExpiry, $uiUser );
898 $d = $uiLanguage->userDate( $currentExpiry, $uiUser );
899 $t = $uiLanguage->userTime( $currentExpiry, $uiUser );
900 $existingExpiryMessage = $this->msg( 'userrights-expiry-existing',
901 $timestamp, $d, $t );
902 $expiryFormOptions->addOption( $existingExpiryMessage->text(), 'existing' );
903 }
904
905 $expiryFormOptions->addOption(
906 $this->msg( 'userrights-expiry-none' )->text(),
907 'infinite'
908 );
909 $expiryFormOptions->addOption(
910 $this->msg( 'userrights-expiry-othertime' )->text(),
911 'other'
912 );
913 foreach ( $expiryOptions as $option ) {
914 if ( strpos( $option, ":" ) === false ) {
915 $displayText = $value = $option;
916 } else {
917 list( $displayText, $value ) = explode( ":", $option );
918 }
919 $expiryFormOptions->addOption( $displayText, htmlspecialchars( $value ) );
920 }
921
922 // Add expiry dropdown
923 $expiryHtml .= $expiryFormOptions->getHTML() . '<br />';
924
925 // Add custom expiry field
926 $attribs = [
927 'id' => "mw-input-wpExpiry-$group-other",
928 'class' => 'mw-userrights-expiryfield',
929 ];
930 if ( $checkbox['disabled-expiry'] ) {
931 $attribs['disabled'] = 'disabled';
932 }
933 $expiryHtml .= Xml::input( "wpExpiry-$group-other", 30, '', $attribs );
934
935 // If the user group is set but the checkbox is disabled, mimic a
936 // checked checkbox in the form submission
937 if ( $checkbox['set'] && $checkbox['disabled'] ) {
938 $expiryHtml .= Html::hidden( "wpGroup-$group", 1 );
939 }
940
941 $expiryHtml .= Xml::closeElement( 'span' );
942 }
943
944 $divAttribs = [
945 'id' => "mw-userrights-nested-wpGroup-$group",
946 'class' => 'mw-userrights-nested',
947 ];
948 $checkboxHtml .= "\t\t\t" . Xml::tags( 'div', $divAttribs, $expiryHtml ) . "\n";
949 }
950 $ret .= "\t\t" . ( ( $checkbox['disabled'] && $checkbox['disabled-expiry'] )
951 ? Xml::tags( 'div', [ 'class' => 'mw-userrights-disabled' ], $checkboxHtml )
952 : Xml::tags( 'div', [], $checkboxHtml )
953 ) . "\n";
954 }
955 $ret .= "\t</td>\n";
956 }
957 $ret .= Xml::closeElement( 'tr' ) . Xml::closeElement( 'table' );
958
959 return [ $ret, (bool)$columns['changeable'] ];
960 }
961
966 private function canRemove( $group ) {
967 $groups = $this->changeableGroups();
968
969 return in_array(
970 $group,
971 $groups['remove'] ) || ( $this->isself && in_array( $group, $groups['remove-self'] )
972 );
973 }
974
979 private function canAdd( $group ) {
980 $groups = $this->changeableGroups();
981
982 return in_array(
983 $group,
984 $groups['add'] ) || ( $this->isself && in_array( $group, $groups['add-self'] )
985 );
986 }
987
998 function changeableGroups() {
999 return $this->getUser()->changeableGroups();
1000 }
1001
1008 protected function showLogFragment( $user, $output ) {
1009 $rightsLogPage = new LogPage( 'rights' );
1010 $output->addHTML( Xml::element( 'h2', null, $rightsLogPage->getName()->text() ) );
1011 LogEventsList::showLogExtract( $output, 'rights', $user->getUserPage() );
1012 }
1013
1022 public function prefixSearchSubpages( $search, $limit, $offset ) {
1023 $user = User::newFromName( $search );
1024 if ( !$user ) {
1025 // No prefix suggestion for invalid user
1026 return [];
1027 }
1028 // Autocomplete subpage as user list - public to allow caching
1029 return UserNamePrefixSearch::search( 'public', $search, $limit, $offset );
1030 }
1031
1032 protected function getGroupName() {
1033 return 'users';
1034 }
1035}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second as well as the first line of the second redirect text
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
wfScript( $script='index')
Get the path to a specified script file, respecting file extensions; this is a wrapper around $wgScri...
wfIsInfinity( $str)
Determine input string is represents as infinity.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
static getAutopromoteGroups(User $user)
Get the groups for the given user based on $wgAutopromote.
const TOOL_LINKS_EMAIL
Definition Linker.php:39
static userToolLinks( $userId, $userText, $redContribsWhenNoEdits=false, $flags=0, $edits=null, $useParentheses=true)
Generate standard user tool links (talk, contributions, block link, etc.)
Definition Linker.php:931
static tooltipAndAccesskeyAttribs( $name, array $msgParams=[], $options=null)
Returns the attributes for the tooltip and access key.
Definition Linker.php:2130
static showLogExtract(&$out, $types=[], $page='', $user='', $param=[])
Show log extract.
Class to simplify the use of log pages.
Definition LogPage.php:33
Class for creating new log entries and inserting them into the database.
Definition LogEntry.php:441
Parent class for all special pages.
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
getOutput()
Get the OutputPage being used for this instance.
getUser()
Shortcut to get the User executing this instance.
getSkin()
Shortcut to get the skin being used for this instance.
getContext()
Gets the context this SpecialPage is executed in.
msg( $key)
Wrapper around wfMessage that sets the current context.
getConfig()
Shortcut to get main config object.
getRequest()
Get the WebRequest being used for this instance.
checkReadOnly()
If the wiki is currently in readonly mode, throws a ReadOnlyError.
getPageTitle( $subpage=false)
Get a self-referential title object.
getLanguage()
Shortcut to get user's language.
addHelpLink( $to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
Show an error when the user tries to do something whilst blocked.
Represents a "user group membership" – a specific instance of a user belonging to a group.
static search( $audience, $search, $limit, $offset=0)
Do a prefix search of user names and return a list of matching user names.
static newFromName( $wikiId, $name, $ignoreInvalidDB=false)
Factory function; get a remote user entry by name.
static validDatabase( $wikiId)
Confirm the selected database name is a valid local interwiki database name.
static whoIs( $wikiId, $id, $ignoreInvalidDB=false)
Same as User::whoIs()
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:48
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition User.php:585
static getAllGroups()
Return the set of defined explicit groups.
Definition User.php:5131
static getCanonicalName( $name, $validate='valid')
Given unvalidated user input, return a canonical username, or false if the username is invalid.
Definition User.php:1244
static whoIs( $id)
Get the username corresponding to a given user ID.
Definition User.php:885
Special page to allow managing user group membership.
doSaveUserGroups( $user, array $add, array $remove, $reason='', array $tags=[], array $groupExpiries=[])
Save user groups changes in the database.
static expiryToTimestamp( $expiry)
Converts a user group membership expiry string into a timestamp.
showEditUserGroupsForm( $user, $groups, $groupMemberships)
Show the form to edit group memberships.
static getAllGroups()
Returns an array of all groups that may be edited.
switchForm()
Output a form to allow searching for a user.
$mTarget
The target of the local right-adjuster's interest.
prefixSearchSubpages( $search, $limit, $offset)
Return an array of subpages beginning with $search that this special page will accept.
userCanChangeRights( $targetUser, $checkIfSelf=true)
Check whether the current user (from context) can change the target user's rights.
editUserGroupsForm( $username)
Edit user groups membership.
groupCheckboxes( $usergroups, $user)
Adds a table with checkboxes where you can select what groups to add/remove.
canProcessExpiries()
Returns true if this user rights form can set and change user group expiries.
fetchUser( $username, $writing=true)
Normalize the input username, which may be local or remote, and return a user (or proxy) object for m...
showLogFragment( $user, $output)
Show a rights log fragment for the specified user.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
execute( $par)
Manage forms to be shown according to posted data.
saveUserGroups( $username, $reason, $user)
Save user groups changes in the database.
static serialiseUgmForLog( $ugm)
Serialise a UserGroupMembership object for storage in the log_params section of the logging table.
doesWrites()
Indicates whether this special page may perform database writes.
addLogEntry( $user, array $oldGroups, array $newGroups, $reason, array $tags, array $oldUGMs, array $newUGMs)
Add a rights log entry for an action.
changeableGroups()
Returns $this->getUser()->changeableGroups()
Class for generating HTML <select> or <datalist> elements.
Definition XmlSelect.php:26
setAttribute( $name, $value)
Definition XmlSelect.php:64
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition deferred.txt:11
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
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 you ll probably need to make sure the header is varied on $request
Definition hooks.txt:2843
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition hooks.txt:855
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action, or null $user:User who performed the tagging when the tagging is subsequent to the action, or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy:boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'ContentSecurityPolicyDefaultSource':Modify the allowed CSP load sources. This affects all directives except for the script directive. If you want to add a script source, see ContentSecurityPolicyScriptSource hook. & $defaultSrc:Array of Content-Security-Policy allowed sources $policyConfig:Current configuration for the Content-Security-Policy header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyDirectives':Modify the content security policy directives. Use this only if ContentSecurityPolicyDefaultSource and ContentSecurityPolicyScriptSource do not meet your needs. & $directives:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyScriptSource':Modify the allowed CSP script sources. Note that you also have to use ContentSecurityPolicyDefaultSource if you want non-script sources to be loaded from whatever you add. & $scriptSrc:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
Definition hooks.txt:1266
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition hooks.txt:2003
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:271
this hook is for auditing only or null if authentication failed before getting that far $username
Definition hooks.txt:782
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing & $attribs
Definition hooks.txt:2012
return true to allow those checks to and false if checking is done & $user
Definition hooks.txt:1510
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response after the basic globals have been set but before ordinary actions take place $output
Definition hooks.txt:2272
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
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))