1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
|
<?php
/**
* Raw page text accessor
*
* Copyright © 2004 Gabriel Wicke <wicke@wikidev.net>
* http://wikidev.net/
*
* Based on HistoryAction and SpecialExport
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @author Gabriel Wicke <wicke@wikidev.net>
* @file
*/
namespace MediaWiki\Actions;
use MediaWiki\Content\TextContent;
use MediaWiki\Context\IContextSource;
use MediaWiki\Exception\HttpError;
use MediaWiki\Logger\LoggerFactory;
use MediaWiki\MainConfigNames;
use MediaWiki\Page\Article;
use MediaWiki\Parser\Parser;
use MediaWiki\Parser\ParserOptions;
use MediaWiki\Permissions\PermissionManager;
use MediaWiki\Permissions\RestrictionStore;
use MediaWiki\Revision\RevisionLookup;
use MediaWiki\Revision\SlotRecord;
use MediaWiki\Session\SessionManager;
use MediaWiki\User\UserFactory;
use MediaWiki\User\UserRigorOptions;
/**
* A simple method to retrieve the plain source of an article,
* using "action=raw" in the GET request string.
*
* @ingroup Actions
*/
class RawAction extends FormlessAction {
private Parser $parser;
private PermissionManager $permissionManager;
private RevisionLookup $revisionLookup;
private RestrictionStore $restrictionStore;
private UserFactory $userFactory;
/**
* @param Article $article
* @param IContextSource $context
* @param Parser $parser
* @param PermissionManager $permissionManager
* @param RevisionLookup $revisionLookup
* @param RestrictionStore $restrictionStore
* @param UserFactory $userFactory
*/
public function __construct(
Article $article,
IContextSource $context,
Parser $parser,
PermissionManager $permissionManager,
RevisionLookup $revisionLookup,
RestrictionStore $restrictionStore,
UserFactory $userFactory
) {
parent::__construct( $article, $context );
$this->parser = $parser;
$this->permissionManager = $permissionManager;
$this->revisionLookup = $revisionLookup;
$this->restrictionStore = $restrictionStore;
$this->userFactory = $userFactory;
}
/** @inheritDoc */
public function getName() {
return 'raw';
}
public function requiresWrite() {
return false;
}
public function requiresUnblock() {
return false;
}
/**
* @suppress SecurityCheck-XSS Non html mime type
* @return string|null
*/
public function onView() {
$this->getOutput()->disable();
$request = $this->getRequest();
$response = $request->response();
$config = $this->context->getConfig();
if ( $this->getOutput()->checkLastModified(
$this->getWikiPage()->getTouched()
) ) {
// Client cache fresh and headers sent, nothing more to do.
return null;
}
$contentType = $this->getContentType();
$maxage = $request->getInt( 'maxage', $config->get( MainConfigNames::CdnMaxAge ) );
$smaxage = $request->getIntOrNull( 'smaxage' );
if ( $smaxage === null ) {
if (
$contentType === 'text/css' ||
$contentType === 'application/json' ||
$contentType === 'text/javascript'
) {
// CSS/JSON/JS raw content has its own CDN max age configuration.
// Note: HTMLCacheUpdater::getUrls() includes action=raw for css/json/js
// pages, so if using the canonical url, this will get HTCP purges.
$smaxage = intval( $config->get( MainConfigNames::ForcedRawSMaxage ) );
} else {
// No CDN cache for anything else
$smaxage = 0;
}
}
// Set standard Vary headers so cache varies on cookies and such (T125283)
$response->header( $this->getOutput()->getVaryHeader() );
// Output may contain user-specific data;
// vary generated content for open sessions on private wikis
$privateCache = !$this->permissionManager->isEveryoneAllowed( 'read' ) &&
( $smaxage === 0 || SessionManager::getGlobalSession()->isPersistent() );
// Don't accidentally cache cookies if the user is registered (T55032)
$privateCache = $privateCache || $this->getUser()->isRegistered();
$mode = $privateCache ? 'private' : 'public';
$response->header(
'Cache-Control: ' . $mode . ', s-maxage=' . $smaxage . ', max-age=' . $maxage
);
// In the event of user JS, don't allow loading a user JS/CSS/Json
// subpage that has no registered user associated with, as
// someone could register the account and take control of the
// JS/CSS/Json page.
$title = $this->getTitle();
if ( $title->isUserConfigPage() && $contentType !== 'text/x-wiki' ) {
// not using getRootText() as we want this to work
// even if subpages are disabled.
$rootPage = strtok( $title->getText(), '/' );
$userFromTitle = $this->userFactory->newFromName( $rootPage, UserRigorOptions::RIGOR_USABLE );
if ( !$userFromTitle || !$userFromTitle->isRegistered() ) {
$elevated = $this->getAuthority()->isAllowed( 'editinterface' );
$elevatedText = $elevated ? 'by elevated ' : '';
$log = LoggerFactory::getInstance( "security" );
$log->warning(
"Unsafe JS/CSS/Json {$elevatedText}load - {user} loaded {title} with {ctype}",
[
'user' => $this->getUser()->getName(),
'title' => $title->getPrefixedDBkey(),
'ctype' => $contentType,
'elevated' => $elevated
]
);
throw new HttpError( 403, wfMessage( 'unregistered-user-config' ) );
}
}
// Don't allow loading non-protected pages as javascript.
// In the future, we may further restrict this to only CONTENT_MODEL_JAVASCRIPT
// in NS_MEDIAWIKI or NS_USER, as well as including other config types,
// but for now be more permissive. Allowing protected pages outside
// NS_USER and NS_MEDIAWIKI in particular should be considered a temporary
// allowance.
$pageRestrictions = $this->restrictionStore->getRestrictions( $title, 'edit' );
if (
$contentType === 'text/javascript' &&
!$title->isUserJsConfigPage() &&
!$title->inNamespace( NS_MEDIAWIKI ) &&
!in_array( 'sysop', $pageRestrictions ) &&
!in_array( 'editprotected', $pageRestrictions )
) {
$log = LoggerFactory::getInstance( "security" );
$log->info( "Blocked loading unprotected JS {title} for {user}",
[
'user' => $this->getUser()->getName(),
'title' => $title->getPrefixedDBkey(),
]
);
throw new HttpError( 403, wfMessage( 'unprotected-js' ) );
}
$response->header( 'Content-type: ' . $contentType . '; charset=UTF-8' );
$text = $this->getRawText();
// Don't return a 404 response for CSS or JavaScript;
// 404s aren't generally cached, and it would create
// extra hits when user CSS/JS are on and the user doesn't
// have the pages.
if ( $text === false && $contentType === 'text/x-wiki' ) {
$response->statusHeader( 404 );
}
if ( !$this->getHookRunner()->onRawPageViewBeforeOutput( $this, $text ) ) {
wfDebug( __METHOD__ . ": RawPageViewBeforeOutput hook broke raw page output." );
}
echo $text;
return null;
}
/**
* Get the text that should be returned, or false if the page or revision
* was not found.
*
* @return string|false
*/
public function getRawText() {
$text = false;
$title = $this->getTitle();
$request = $this->getRequest();
// Get it from the DB
$rev = $this->revisionLookup->getRevisionByTitle( $title, $this->getOldId() );
if ( $rev ) {
$lastMod = wfTimestamp( TS_RFC2822, $rev->getTimestamp() );
$request->response()->header( "Last-modified: $lastMod" );
// Public-only due to cache headers
// Fetch specific slot if defined
$slot = $this->getRequest()->getText( 'slot' );
if ( $slot ) {
if ( $rev->hasSlot( $slot ) ) {
$content = $rev->getContent( $slot );
} else {
$content = null;
}
} else {
$content = $rev->getContent( SlotRecord::MAIN );
}
if ( $content === null ) {
// revision or slot was not found (or suppressed)
} elseif ( !$content instanceof TextContent && !method_exists( $content, 'getText' ) ) {
// non-text content
wfHttpError(
415,
"Unsupported Media Type", "The requested page uses the content model `"
. $content->getModel() . "` which is not supported via this interface."
);
die();
} else {
// want a section?
$section = $request->getIntOrNull( 'section' );
if ( $section !== null ) {
$content = $content->getSection( $section );
}
if ( $content !== null && $content !== false ) {
// section found (and section supported, e.g. not for JS, JSON, and CSS)
$text = $content->getText();
}
}
}
if ( $text !== false && $text !== '' && $request->getRawVal( 'templates' ) === 'expand' ) {
$text = $this->parser->preprocess(
$text,
$title,
ParserOptions::newFromContext( $this->getContext() )
);
}
return $text;
}
/**
* Get the ID of the revision that should be used to get the text.
*
* @return int
*/
public function getOldId() {
$oldId = $this->getRequest()->getInt( 'oldid' );
$rl = $this->revisionLookup;
switch ( $this->getRequest()->getText( 'direction' ) ) {
case 'next':
# output next revision, or nothing if there isn't one
$nextRev = null;
if ( $oldId ) {
$oldRev = $rl->getRevisionById( $oldId );
if ( $oldRev ) {
$nextRev = $rl->getNextRevision( $oldRev );
}
}
$oldId = $nextRev ? $nextRev->getId() : -1;
break;
case 'prev':
# output previous revision, or nothing if there isn't one
$prevRev = null;
if ( !$oldId ) {
# get the current revision so we can get the penultimate one
$oldId = $this->getWikiPage()->getLatest();
}
$oldRev = $rl->getRevisionById( $oldId );
if ( $oldRev ) {
$prevRev = $rl->getPreviousRevision( $oldRev );
}
$oldId = $prevRev ? $prevRev->getId() : -1;
break;
case 'cur':
$oldId = 0;
break;
}
// @phan-suppress-next-line PhanTypeMismatchReturnNullable RevisionRecord::getId does not return null here
return $oldId;
}
/**
* Get the content type to be used for the response
*
* @return string
*/
public function getContentType() {
// Optimisation: Avoid slow getVal(), this isn't user-generated content.
$ctype = $this->getRequest()->getRawVal( 'ctype' );
if ( $ctype == '' ) {
// Legacy compatibility
$gen = $this->getRequest()->getRawVal( 'gen' );
if ( $gen == 'js' ) {
$ctype = 'text/javascript';
} elseif ( $gen == 'css' ) {
$ctype = 'text/css';
}
}
static $allowedCTypes = [
'text/x-wiki',
'text/javascript',
'text/css',
// FIXME: Should we still allow Zope editing? External editing feature was dropped
'application/x-zope-edit',
'application/json'
];
if ( $ctype == '' || !in_array( $ctype, $allowedCTypes ) ) {
$ctype = 'text/x-wiki';
}
return $ctype;
}
}
/** @deprecated class alias since 1.44 */
class_alias( RawAction::class, 'RawAction' );
|