Merge "Http::getProxy() method to get proxy configuration"
[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 /**
30 * A simple method to retrieve the plain source of an article,
31 * using "action=raw" in the GET request string.
32 *
33 * @ingroup Actions
34 */
35 class RawAction extends FormlessAction {
36 public function getName() {
37 return 'raw';
38 }
39
40 public function requiresWrite() {
41 return false;
42 }
43
44 public function requiresUnblock() {
45 return false;
46 }
47
48 function onView() {
49 $this->getOutput()->disable();
50 $request = $this->getRequest();
51 $response = $request->response();
52 $config = $this->context->getConfig();
53
54 if ( !$request->checkUrlExtension() ) {
55 return;
56 }
57
58 if ( $this->getOutput()->checkLastModified( $this->page->getTouched() ) ) {
59 return; // Client cache fresh and headers sent, nothing more to do.
60 }
61
62 $gen = $request->getVal( 'gen' );
63 if ( $gen == 'css' || $gen == 'js' ) {
64 $this->gen = true;
65 }
66
67 $contentType = $this->getContentType();
68
69 $maxage = $request->getInt( 'maxage', $config->get( 'SquidMaxage' ) );
70 $smaxage = $request->getIntOrNull( 'smaxage' );
71 if ( $smaxage === null ) {
72 if ( $contentType == 'text/css' || $contentType == 'text/javascript' ) {
73 // CSS/JS raw content has its own CDN max age configuration.
74 // Note: Title::getCdnUrls() includes action=raw for css/js pages,
75 // so if using the canonical url, this will get HTCP purges.
76 $smaxage = intval( $config->get( 'ForcedRawSMaxage' ) );
77 } else {
78 // No CDN cache for anything else
79 $smaxage = 0;
80 }
81 }
82
83 $response->header( 'Content-type: ' . $contentType . '; charset=UTF-8' );
84 // Output may contain user-specific data;
85 // vary generated content for open sessions on private wikis
86 $privateCache = !User::isEveryoneAllowed( 'read' ) &&
87 ( $smaxage == 0 || MediaWiki\Session\SessionManager::getGlobalSession()->isPersistent() );
88 // Don't accidentally cache cookies if user is logged in (T55032)
89 $privateCache = $privateCache || $this->getUser()->isLoggedIn();
90 $mode = $privateCache ? 'private' : 'public';
91 $response->header(
92 'Cache-Control: ' . $mode . ', s-maxage=' . $smaxage . ', max-age=' . $maxage
93 );
94
95 $text = $this->getRawText();
96
97 // Don't return a 404 response for CSS or JavaScript;
98 // 404s aren't generally cached and it would create
99 // extra hits when user CSS/JS are on and the user doesn't
100 // have the pages.
101 if ( $text === false && $contentType == 'text/x-wiki' ) {
102 $response->statusHeader( 404 );
103 }
104
105 if ( !Hooks::run( 'RawPageViewBeforeOutput', [ &$this, &$text ] ) ) {
106 wfDebug( __METHOD__ . ": RawPageViewBeforeOutput hook broke raw page output.\n" );
107 }
108
109 echo $text;
110 }
111
112 /**
113 * Get the text that should be returned, or false if the page or revision
114 * was not found.
115 *
116 * @return string|bool
117 */
118 public function getRawText() {
119 global $wgParser;
120
121 $text = false;
122 $title = $this->getTitle();
123 $request = $this->getRequest();
124
125 // If it's a MediaWiki message we can just hit the message cache
126 if ( $request->getBool( 'usemsgcache' ) && $title->getNamespace() == NS_MEDIAWIKI ) {
127 // The first "true" is to use the database, the second is to use
128 // the content langue and the last one is to specify the message
129 // key already contains the language in it ("/de", etc.).
130 $text = MessageCache::singleton()->get( $title->getDBkey(), true, true, true );
131 // If the message doesn't exist, return a blank
132 if ( $text === false ) {
133 $text = '';
134 }
135 } else {
136 // Get it from the DB
137 $rev = Revision::newFromTitle( $title, $this->getOldId() );
138 if ( $rev ) {
139 $lastmod = wfTimestamp( TS_RFC2822, $rev->getTimestamp() );
140 $request->response()->header( "Last-modified: $lastmod" );
141
142 // Public-only due to cache headers
143 $content = $rev->getContent();
144
145 if ( $content === null ) {
146 // revision not found (or suppressed)
147 $text = false;
148 } elseif ( !$content instanceof TextContent ) {
149 // non-text content
150 wfHttpError( 415, "Unsupported Media Type", "The requested page uses the content model `"
151 . $content->getModel() . "` which is not supported via this interface." );
152 die();
153 } else {
154 // want a section?
155 $section = $request->getIntOrNull( 'section' );
156 if ( $section !== null ) {
157 $content = $content->getSection( $section );
158 }
159
160 if ( $content === null || $content === false ) {
161 // section not found (or section not supported, e.g. for JS and CSS)
162 $text = false;
163 } else {
164 $text = $content->getNativeData();
165 }
166 }
167 }
168 }
169
170 if ( $text !== false && $text !== '' && $request->getVal( 'templates' ) === 'expand' ) {
171 $text = $wgParser->preprocess(
172 $text,
173 $title,
174 ParserOptions::newFromContext( $this->getContext() )
175 );
176 }
177
178 return $text;
179 }
180
181 /**
182 * Get the ID of the revision that should used to get the text.
183 *
184 * @return int
185 */
186 public function getOldId() {
187 $oldid = $this->getRequest()->getInt( 'oldid' );
188 switch ( $this->getRequest()->getText( 'direction' ) ) {
189 case 'next':
190 # output next revision, or nothing if there isn't one
191 $nextid = 0;
192 if ( $oldid ) {
193 $nextid = $this->getTitle()->getNextRevisionID( $oldid );
194 }
195 $oldid = $nextid ?: -1;
196 break;
197 case 'prev':
198 # output previous revision, or nothing if there isn't one
199 if ( !$oldid ) {
200 # get the current revision so we can get the penultimate one
201 $oldid = $this->page->getLatest();
202 }
203 $previd = $this->getTitle()->getPreviousRevisionID( $oldid );
204 $oldid = $previd ?: -1;
205 break;
206 case 'cur':
207 $oldid = 0;
208 break;
209 }
210
211 return $oldid;
212 }
213
214 /**
215 * Get the content type to use for the response
216 *
217 * @return string
218 */
219 public function getContentType() {
220 $ctype = $this->getRequest()->getVal( 'ctype' );
221
222 if ( $ctype == '' ) {
223 $gen = $this->getRequest()->getVal( 'gen' );
224 if ( $gen == 'js' ) {
225 $ctype = 'text/javascript';
226 } elseif ( $gen == 'css' ) {
227 $ctype = 'text/css';
228 }
229 }
230
231 $allowedCTypes = [ 'text/x-wiki', 'text/javascript', 'text/css', 'application/x-zope-edit' ];
232 if ( $ctype == '' || !in_array( $ctype, $allowedCTypes ) ) {
233 $ctype = 'text/x-wiki';
234 }
235
236 return $ctype;
237 }
238 }