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