r9499 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r9498‎ | r9499 | r9500 >
Date:08:03, 19 June 2005
Author:vibber
Status:old
Tags:
Comment:
* Special:Upload now uses 'upload' permission instead of hardcoding login check
* Add 'importupload' permission to disable direct uploads to Special:Import
Modified paths:
  • /trunk/phase3/RELEASE-NOTES (modified) (history)
  • /trunk/phase3/includes/DefaultSettings.php (modified) (history)
  • /trunk/phase3/includes/SpecialImport.php (modified) (history)
  • /trunk/phase3/includes/SpecialUpload.php (modified) (history)
  • /trunk/phase3/languages/Language.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/SpecialImport.php
@@ -29,7 +29,7 @@
3030 * Constructor
3131 */
3232 function wfSpecialImport( $page = '' ) {
33 - global $wgOut, $wgLang, $wgRequest, $wgTitle;
 33+ global $wgUser, $wgOut, $wgLang, $wgRequest, $wgTitle;
3434 global $wgImportSources;
3535
3636 ###
@@ -42,7 +42,11 @@
4343
4444 switch( $wgRequest->getVal( "source" ) ) {
4545 case "upload":
46 - $result = $importer->setupFromUpload( "xmlimport" );
 46+ if( $wgUser->isAllowed( 'importupload' ) ) {
 47+ $result = $importer->setupFromUpload( "xmlimport" );
 48+ } else {
 49+ return $wgOut->permissionRequired( 'importupload' );
 50+ }
4751 break;
4852 case "interwiki":
4953 $result = $importer->setupFromInterwiki(
@@ -68,9 +72,11 @@
6973 }
7074 }
7175
72 - $wgOut->addWikiText( "<p>" . wfMsg( "importtext" ) . "</p>" );
7376 $action = $wgTitle->escapeLocalUrl( 'action=submit' );
74 - $wgOut->addHTML( "
 77+
 78+ if( $wgUser->isAllowed( 'importupload' ) ) {
 79+ $wgOut->addWikiText( "<p>" . wfMsg( "importtext" ) . "</p>" );
 80+ $wgOut->addHTML( "
7581 <fieldset>
7682 <legend>Upload XML</legend>
7783 <form enctype='multipart/form-data' method='post' action=\"$action\">
@@ -82,7 +88,12 @@
8389 </form>
8490 </fieldset>
8591 " );
86 -
 92+ } else {
 93+ if( empty( $wgImportSources ) ) {
 94+ $wgOut->addWikiText( wfMsg( 'importnosources' ) );
 95+ }
 96+ }
 97+
8798 if( !empty( $wgImportSources ) ) {
8899 $wgOut->addHTML( "
89100 <fieldset>
Index: trunk/phase3/includes/SpecialUpload.php
@@ -99,8 +99,7 @@
100100 }
101101
102102 /** Various rights checks */
103 - if( ( $wgUser->isAnon() )
104 - OR $wgUser->isBlocked() ) {
 103+ if( !$wgUser->isAllowed( 'upload' ) || $wgUser->isBlocked() ) {
105104 $wgOut->errorpage( 'uploadnologin', 'uploadnologintext' );
106105 return;
107106 }
Index: trunk/phase3/includes/DefaultSettings.php
@@ -686,6 +686,7 @@
687687
688688 $wgGroupPermissions['user' ]['move'] = true;
689689 $wgGroupPermissions['user' ]['read'] = true;
 690+$wgGroupPermissions['user' ]['upload'] = true;
690691
691692 $wgGroupPermissions['bot' ]['bot'] = true;
692693
@@ -694,10 +695,12 @@
695696 $wgGroupPermissions['sysop']['delete'] = true;
696697 $wgGroupPermissions['sysop']['editinterface'] = true;
697698 $wgGroupPermissions['sysop']['import'] = true;
698 -$wgGroupPermissions['sysop']['importraw'] = true;
 699+$wgGroupPermissions['sysop']['importupload'] = true;
 700+$wgGroupPermissions['user' ]['move'] = true;
699701 $wgGroupPermissions['sysop']['patrol'] = true;
700702 $wgGroupPermissions['sysop']['protect'] = true;
701703 $wgGroupPermissions['sysop']['rollback'] = true;
 704+$wgGroupPermissions['user' ]['upload'] = true;
702705
703706 $wgGroupPermissions['bureaucrat']['userrights'] = true;
704707
@@ -1130,8 +1133,11 @@
11311134
11321135 /**
11331136 * List of interwiki prefixes for wikis we'll accept as sources for
1134 - * Special:Import (for sysops). Since complete page history# can be imported,
 1137+ * Special:Import (for sysops). Since complete page history can be imported,
11351138 * these should be 'trusted'.
 1139+ *
 1140+ * If a user has the 'import' permission but not the 'importupload' permission,
 1141+ * they will only be able to run imports through this transwiki interface.
11361142 */
11371143 $wgImportSources = array();
11381144
Index: trunk/phase3/RELEASE-NOTES
@@ -300,6 +300,8 @@
301301 * badaccess/badaccesstext to supercede sysop*, developer* messages
302302 * Changed $wgGroupPermissions to more cut-n-paste-friendly format
303303 * 'developer' group deprecated by default
 304+* Special:Upload now uses 'upload' permission instead of hardcoding login check
 305+* Add 'importupload' permission to disable direct uploads to Special:Import
304306
305307
306308 === Caveats ===
Index: trunk/phase3/languages/Language.php
@@ -1656,6 +1656,7 @@
16571657 'importnotext' => 'Empty or no text',
16581658 'importsuccess' => 'Import succeeded!',
16591659 'importhistoryconflict' => 'Conflicting history revision exists (may have imported this page before)',
 1660+'importnosources' => 'No transwiki import sources have been defined and direct history uploads are disabled.',
16601661
16611662 # Keyboard access keys for power users
16621663 'accesskey-search' => 'f',

Status & tagging log

Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant