Go to the documentation of this file.
57 $config = $this->context->getConfig();
59 if ( !
$request->checkUrlExtension() ) {
63 if ( $this->
getOutput()->checkLastModified( $this->
page->getTouched() ) ) {
69 $maxage =
$request->getInt(
'maxage', $config->get(
'SquidMaxage' ) );
70 $smaxage =
$request->getIntOrNull(
'smaxage' );
71 if ( $smaxage ===
null ) {
73 $contentType ==
'text/css' ||
74 $contentType ==
'application/json' ||
75 $contentType ==
'text/javascript'
80 $smaxage = intval( $config->get(
'ForcedRawSMaxage' ) );
89 if ( $config->get(
'UseKeyHeader' ) ) {
98 $privateCache = $privateCache || $this->
getUser()->isLoggedIn();
99 $mode = $privateCache ?
'private' :
'public';
101 'Cache-Control: ' . $mode .
', s-maxage=' . $smaxage .
', max-age=' . $maxage
109 if (
$title->isUserConfigPage() && $contentType !==
'text/x-wiki' ) {
112 $rootPage = strtok(
$title->getText(),
'/' );
114 if ( !$userFromTitle || $userFromTitle->getId() === 0 ) {
115 $elevated = $this->
getUser()->isAllowed(
'editinterface' );
116 $elevatedText = $elevated ?
'by elevated ' :
'';
117 $log = LoggerFactory::getInstance(
"security" );
119 "Unsafe JS/CSS/Json $elevatedText" .
"load - {user} loaded {title} with {ctype}",
122 'title' =>
$title->getPrefixedDBKey(),
123 'ctype' => $contentType,
124 'elevated' => $elevated
127 $msg =
wfMessage(
'unregistered-user-config' );
139 $contentType ===
'text/javascript' &&
140 !
$title->isUserJsConfigPage() &&
142 !in_array(
'sysop',
$title->getRestrictions(
'edit' ) ) &&
143 !in_array(
'editprotected',
$title->getRestrictions(
'edit' ) )
146 $log = LoggerFactory::getInstance(
"security" );
147 $log->info(
"Blocked loading unprotected JS {title} for {user}",
150 'title' =>
$title->getPrefixedDBKey(),
156 $response->header(
'Content-type: ' . $contentType .
'; charset=UTF-8' );
164 if ( $text ===
false && $contentType ==
'text/x-wiki' ) {
170 if ( !
Hooks::run(
'RawPageViewBeforeOutput', [ &$rawAction, &$text ] ) ) {
171 wfDebug( __METHOD__ .
": RawPageViewBeforeOutput hook broke raw page output.\n" );
194 $request->response()->header(
"Last-modified: $lastmod" );
204 wfHttpError( 415,
"Unsupported Media Type",
"The requested page uses the content model `"
205 .
$content->getModel() .
"` which is not supported via this interface." );
223 if ( $text !==
false && $text !==
'' &&
$request->getRawVal(
'templates' ) ===
'expand' ) {
240 $oldid = $this->
getRequest()->getInt(
'oldid' );
241 switch ( $this->
getRequest()->getText(
'direction' ) ) {
243 # output next revision, or nothing if there isn't one
246 $nextid = $this->
getTitle()->getNextRevisionID( $oldid );
248 $oldid = $nextid ?: -1;
251 # output previous revision, or nothing if there isn't one
253 # get the current revision so we can get the penultimate one
254 $oldid = $this->
page->getLatest();
256 $previd = $this->
getTitle()->getPreviousRevisionID( $oldid );
257 $oldid = $previd ?: -1;
276 $ctype = $this->
getRequest()->getRawVal(
'ctype' );
278 if ( $ctype ==
'' ) {
280 $gen = $this->
getRequest()->getRawVal(
'gen' );
281 if ( $gen ==
'js' ) {
282 $ctype =
'text/javascript';
283 } elseif ( $gen ==
'css' ) {
293 'application/x-zope-edit',
296 if ( $ctype ==
'' || !in_array( $ctype, $allowedCTypes ) ) {
297 $ctype =
'text/x-wiki';
A simple method to retrieve the plain source of an article, using "action=raw" in the GET request str...
getOldId()
Get the ID of the revision that should used to get the text.
getName()
Return the name of the action this object responds to.
getRequest()
Get the WebRequest being used for this instance.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
getRawText()
Get the text that should be returned, or false if the page or revision was not found.
Show an error that looks like an HTTP server error.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
static newFromTitle(LinkTarget $linkTarget, $id=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given link target.
getContext()
Get the IContextSource in use here.
getContentType()
Get the content type to use for the response.
namespace and then decline to actually register it file or subcat img or subcat $title
requiresUnblock()
Whether this action can still be executed by a blocked user.
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
onView()
@suppress SecurityCheck-XSS Non html mime type
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
getUser()
Shortcut to get the User being used for this instance.
static newFromContext(IContextSource $context)
Get a ParserOptions object from a IContextSource object.
getTitle()
Shortcut to get the Title object from the page.
Content object implementation for representing flat text.
this hook is for auditing only $response
static isEveryoneAllowed( $right)
Check if all users may be assumed to have the given permission.
wfHttpError( $code, $label, $desc)
Provide a simple HTTP error.
usually copyright or history_copyright This message must be in HTML not wikitext if the section is included from a template $section
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
MediaWiki Logger LoggerFactory implements a PSR[0] compatible message logging system Named Psr Log LoggerInterface instances can be obtained from the MediaWiki Logger LoggerFactory::getInstance() static method. MediaWiki\Logger\LoggerFactory expects a class implementing the MediaWiki\Logger\Spi interface to act as a factory for new Psr\Log\LoggerInterface instances. The "Spi" in MediaWiki\Logger\Spi stands for "service provider interface". An SPI is an API intended to be implemented or extended by a third party. This software design pattern is intended to enable framework extension and replaceable components. It is specifically used in the MediaWiki\Logger\LoggerFactory service to allow alternate PSR-3 logging implementations to be easily integrated with MediaWiki. The service provider interface allows the backend logging library to be implemented in multiple ways. The $wgMWLoggerDefaultSpi global provides the classname of the default MediaWiki\Logger\Spi implementation to be loaded at runtime. This can either be the name of a class implementing the MediaWiki\Logger\Spi with a zero argument const ructor or a callable that will return an MediaWiki\Logger\Spi instance. Alternately the MediaWiki\Logger\LoggerFactory MediaWiki Logger LoggerFactory
getOutput()
Get the OutputPage being used for this instance.
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
requiresWrite()
Whether this action requires the wiki not to be locked.