Merge "Add a simple .editorconfig"
[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
31 /**
32 * A simple method to retrieve the plain source of an article,
33 * using "action=raw" in the GET request string.
34 *
35 * @ingroup Actions
36 */
37 class RawAction extends FormlessAction {
38 public function getName() {
39 return 'raw';
40 }
41
42 public function requiresWrite() {
43 return false;
44 }
45
46 public function requiresUnblock() {
47 return false;
48 }
49
50 function onView() {
51 $this->getOutput()->disable();
52 $request = $this->getRequest();
53 $response = $request->response();
54 $config = $this->context->getConfig();
55
56 if ( !$request->checkUrlExtension() ) {
57 return;
58 }
59
60 if ( $this->getOutput()->checkLastModified( $this->page->getTouched() ) ) {
61 return; // Client cache fresh and headers sent, nothing more to do.
62 }
63
64 $contentType = $this->getContentType();
65
66 $maxage = $request->getInt( 'maxage', $config->get( 'SquidMaxage' ) );
67 $smaxage = $request->getIntOrNull( 'smaxage' );
68 if ( $smaxage === null ) {
69 if (
70 $contentType == 'text/css' ||
71 $contentType == 'application/json' ||
72 $contentType == 'text/javascript'
73 ) {
74 // CSS/JSON/JS raw content has its own CDN max age configuration.
75 // Note: Title::getCdnUrls() includes action=raw for css/json/js
76 // pages, so if using the canonical url, this will get HTCP purges.
77 $smaxage = intval( $config->get( 'ForcedRawSMaxage' ) );
78 } else {
79 // No CDN cache for anything else
80 $smaxage = 0;
81 }
82 }
83
84 // Set standard Vary headers so cache varies on cookies and such (T125283)
85 $response->header( $this->getOutput()->getVaryHeader() );
86 if ( $config->get( 'UseKeyHeader' ) ) {
87 $response->header( $this->getOutput()->getKeyHeader() );
88 }
89
90 // Output may contain user-specific data;
91 // vary generated content for open sessions on private wikis
92 $privateCache = !User::isEveryoneAllowed( 'read' ) &&
93 ( $smaxage == 0 || MediaWiki\Session\SessionManager::getGlobalSession()->isPersistent() );
94 // Don't accidentally cache cookies if user is logged in (T55032)
95 $privateCache = $privateCache || $this->getUser()->isLoggedIn();
96 $mode = $privateCache ? 'private' : 'public';
97 $response->header(
98 'Cache-Control: ' . $mode . ', s-maxage=' . $smaxage . ', max-age=' . $maxage
99 );
100
101 // In the event of user JS, don't allow loading a user JS/CSS/Json
102 // subpage that has no registered user associated with, as
103 // someone could register the account and take control of the
104 // JS/CSS/Json page.
105 $title = $this->getTitle();
106 if ( $title->isUserConfigPage() && $contentType !== 'text/x-wiki' ) {
107 // not using getRootText() as we want this to work
108 // even if subpages are disabled.
109 $rootPage = strtok( $title->getText(), '/' );
110 $userFromTitle = User::newFromName( $rootPage, 'usable' );
111 if ( !$userFromTitle || $userFromTitle->getId() === 0 ) {
112 $elevated = $this->getUser()->isAllowed( 'editinterface' );
113 $elevatedText = $elevated ? 'by elevated ' : '';
114 $log = LoggerFactory::getInstance( "security" );
115 $log->warning(
116 "Unsafe JS/CSS/Json $elevatedText" . "load - {user} loaded {title} with {ctype}",
117 [
118 'user' => $this->getUser()->getName(),
119 'title' => $title->getPrefixedDBKey(),
120 'ctype' => $contentType,
121 'elevated' => $elevated
122 ]
123 );
124 $msg = wfMessage( 'unregistered-user-config' );
125 throw new HttpError( 403, $msg );
126 }
127 }
128
129 $response->header( 'Content-type: ' . $contentType . '; charset=UTF-8' );
130
131 $text = $this->getRawText();
132
133 // Don't return a 404 response for CSS or JavaScript;
134 // 404s aren't generally cached and it would create
135 // extra hits when user CSS/JS are on and the user doesn't
136 // have the pages.
137 if ( $text === false && $contentType == 'text/x-wiki' ) {
138 $response->statusHeader( 404 );
139 }
140
141 // Avoid PHP 7.1 warning of passing $this by reference
142 $rawAction = $this;
143 if ( !Hooks::run( 'RawPageViewBeforeOutput', [ &$rawAction, &$text ] ) ) {
144 wfDebug( __METHOD__ . ": RawPageViewBeforeOutput hook broke raw page output.\n" );
145 }
146
147 echo $text;
148 }
149
150 /**
151 * Get the text that should be returned, or false if the page or revision
152 * was not found.
153 *
154 * @return string|bool
155 */
156 public function getRawText() {
157 global $wgParser;
158
159 $text = false;
160 $title = $this->getTitle();
161 $request = $this->getRequest();
162
163 // If it's a MediaWiki message we can just hit the message cache
164 if ( $request->getBool( 'usemsgcache' ) && $title->getNamespace() == NS_MEDIAWIKI ) {
165 // The first "true" is to use the database, the second is to use
166 // the content langue and the last one is to specify the message
167 // key already contains the language in it ("/de", etc.).
168 $text = MessageCache::singleton()->get( $title->getDBkey(), true, true, true );
169 // If the message doesn't exist, return a blank
170 if ( $text === false ) {
171 $text = '';
172 }
173 } else {
174 // Get it from the DB
175 $rev = Revision::newFromTitle( $title, $this->getOldId() );
176 if ( $rev ) {
177 $lastmod = wfTimestamp( TS_RFC2822, $rev->getTimestamp() );
178 $request->response()->header( "Last-modified: $lastmod" );
179
180 // Public-only due to cache headers
181 $content = $rev->getContent();
182
183 if ( $content === null ) {
184 // revision not found (or suppressed)
185 $text = false;
186 } elseif ( !$content instanceof TextContent ) {
187 // non-text content
188 wfHttpError( 415, "Unsupported Media Type", "The requested page uses the content model `"
189 . $content->getModel() . "` which is not supported via this interface." );
190 die();
191 } else {
192 // want a section?
193 $section = $request->getIntOrNull( 'section' );
194 if ( $section !== null ) {
195 $content = $content->getSection( $section );
196 }
197
198 if ( $content === null || $content === false ) {
199 // section not found (or section not supported, e.g. for JS, JSON, and CSS)
200 $text = false;
201 } else {
202 $text = $content->getNativeData();
203 }
204 }
205 }
206 }
207
208 if ( $text !== false && $text !== '' && $request->getRawVal( 'templates' ) === 'expand' ) {
209 $text = $wgParser->preprocess(
210 $text,
211 $title,
212 ParserOptions::newFromContext( $this->getContext() )
213 );
214 }
215
216 return $text;
217 }
218
219 /**
220 * Get the ID of the revision that should used to get the text.
221 *
222 * @return int
223 */
224 public function getOldId() {
225 $oldid = $this->getRequest()->getInt( 'oldid' );
226 switch ( $this->getRequest()->getText( 'direction' ) ) {
227 case 'next':
228 # output next revision, or nothing if there isn't one
229 $nextid = 0;
230 if ( $oldid ) {
231 $nextid = $this->getTitle()->getNextRevisionID( $oldid );
232 }
233 $oldid = $nextid ?: -1;
234 break;
235 case 'prev':
236 # output previous revision, or nothing if there isn't one
237 if ( !$oldid ) {
238 # get the current revision so we can get the penultimate one
239 $oldid = $this->page->getLatest();
240 }
241 $previd = $this->getTitle()->getPreviousRevisionID( $oldid );
242 $oldid = $previd ?: -1;
243 break;
244 case 'cur':
245 $oldid = 0;
246 break;
247 }
248
249 return $oldid;
250 }
251
252 /**
253 * Get the content type to use for the response
254 *
255 * @return string
256 */
257 public function getContentType() {
258 // Use getRawVal instead of getVal because we only
259 // need to match against known strings, there is no
260 // storing of localised content or other user input.
261 $ctype = $this->getRequest()->getRawVal( 'ctype' );
262
263 if ( $ctype == '' ) {
264 // Legacy compatibilty
265 $gen = $this->getRequest()->getRawVal( 'gen' );
266 if ( $gen == 'js' ) {
267 $ctype = 'text/javascript';
268 } elseif ( $gen == 'css' ) {
269 $ctype = 'text/css';
270 }
271 }
272
273 $allowedCTypes = [
274 'text/x-wiki',
275 'text/javascript',
276 'text/css',
277 // FIXME: Should we still allow Zope editing? External editing feature was dropped
278 'application/x-zope-edit',
279 'application/json'
280 ];
281 if ( $ctype == '' || !in_array( $ctype, $allowedCTypes ) ) {
282 $ctype = 'text/x-wiki';
283 }
284
285 return $ctype;
286 }
287 }