MediaWiki REL1_39
|
Interface for objects which can provide a MediaWiki context on request. More...
Public Member Functions | |
canUseWikiPage () | |
Check whether a WikiPage object can be get with getWikiPage(). | |
exportSession () | |
Export the resolved user IP, HTTP headers, user ID, and session ID. | |
getActionName () | |
Get the action name for the current web request. | |
getAuthority () | |
getConfig () | |
Get the site configuration. | |
getLanguage () | |
getOutput () | |
getRequest () | |
getSkin () | |
getStats () | |
getTiming () | |
getTitle () | |
getUser () | |
getWikiPage () | |
Get the WikiPage object. | |
Public Member Functions inherited from MessageLocalizer | |
msg ( $key,... $params) | |
This is the method for getting translated interface messages. | |
Public Member Functions inherited from MediaWiki\Session\CsrfTokenSetProvider | |
getCsrfTokenSet () | |
Get a set of CSRF tokens to obtain and match specific tokens. | |
Interface for objects which can provide a MediaWiki context on request.
Context objects contain request-dependent objects that manage the core web request/response logic for essentially all requests to MediaWiki. The contained objects include: a) Key objects that depend (for construction/loading) on the HTTP request b) Key objects used for response building and PHP session state control c) Performance metric deltas accumulated from request execution d) The site configuration object All of the objects are useful for the vast majority of MediaWiki requests. The site configuration object is included on grounds of extreme utility, even though it should not actually depend on the web request.
More specifically, the scope of the context includes: a) Objects that represent the HTTP request/response and PHP session state b) Object representing the MediaWiki user (as determined by the HTTP request) c) Primary MediaWiki output builder objects (OutputPage, user skin object) d) The language object for the user/request e) The title and wiki page objects requested via URL (if any) f) Performance metric deltas accumulated from request execution g) The site configuration object
This class is not intended as a service-locator nor a service singleton. Objects that only depend on site configuration do not belong here (aside from Config itself). Objects that represent persistent data stores do not belong here either. Session state changes should only be propagated on shutdown by separate persistence handler objects, for example.
Definition at line 58 of file IContextSource.php.
IContextSource::canUseWikiPage | ( | ) |
Check whether a WikiPage object can be get with getWikiPage().
Callers should expect that an exception is thrown from getWikiPage() if this method returns false.
Implemented in ContextSource, DerivativeContext, and RequestContext.
IContextSource::exportSession | ( | ) |
Export the resolved user IP, HTTP headers, user ID, and session ID.
The result will be reasonably sized to allow for serialization.
Implemented in ContextSource, and RequestContext.
IContextSource::getActionName | ( | ) |
Get the action name for the current web request.
Implemented in ContextSource, DerivativeContext, and RequestContext.
IContextSource::getAuthority | ( | ) |
Implemented in ContextSource, DerivativeContext, and RequestContext.
Referenced by SpecialBlock\processForm(), and DeleteAction\tempDelete().
IContextSource::getConfig | ( | ) |
Get the site configuration.
Implemented in ContextSource, DerivativeContext, and RequestContext.
Referenced by OutputPage\__construct(), CategoryViewer\__construct(), SpecialPageLanguage\changePageLanguage(), MediaWiki\SpecialPage\SpecialPageFactory\executePath(), ApiHelp\getHelp(), MediaWiki\preOutputCommit(), and SpecialEmailUser\submit().
IContextSource::getLanguage | ( | ) |
Implemented in ContextSource, DerivativeContext, and RequestContext.
Referenced by MediaWiki\SpecialPage\SpecialPageFactory\capturePath(), MediaWiki\Preferences\DefaultPreferencesFactory\datetimePreferences(), MediaWiki\Preferences\DefaultPreferencesFactory\generateSkinOptions(), MediaWiki\Preferences\DefaultPreferencesFactory\getDateOptions(), MWDebug\getDebugInfo(), MWDebug\getFilesIncluded(), MediaWiki\Preferences\DefaultPreferencesFactory\getFormDescriptor(), ApiHelp\getHelp(), UserGroupMembership\getLink(), MediaWiki\Block\AbstractBlock\getPermissionsError(), MediaWiki\Preferences\DefaultPreferencesFactory\getTimezoneOptions(), ParserOptions\newFromContext(), MediaWiki\Preferences\DefaultPreferencesFactory\profilePreferences(), Message\setContext(), MediaWiki\Preferences\DefaultPreferencesFactory\skinPreferences(), DeleteAction\tempDelete(), and HTMLFileCache\useFileCache().
IContextSource::getOutput | ( | ) |
Implemented in ContextSource, DerivativeContext, and RequestContext.
Referenced by MediaWiki\SpecialPage\SpecialPageFactory\capturePath(), MediaWiki\SpecialPage\SpecialPageFactory\executePath(), MWDebug\getDebugHTML(), MediaWiki\Preferences\DefaultPreferencesFactory\getForm(), ApiHelp\getHelp(), HTMLFileCache\loadFromFileCache(), MediaWiki\preOutputCommit(), MediaWiki\Preferences\DefaultPreferencesFactory\profilePreferences(), MediaWiki\Preferences\DefaultPreferencesFactory\submitForm(), and DeleteAction\tempDelete().
IContextSource::getRequest | ( | ) |
Implemented in ContextSource, DerivativeContext, and RequestContext.
Referenced by OutputPage\__construct(), MediaWiki\SpecialPage\SpecialPageFactory\capturePath(), MediaWiki\SpecialPage\SpecialPageFactory\executePath(), MediaWiki\Preferences\DefaultPreferencesFactory\generateSkinOptions(), MWDebug\getDebugInfo(), MediaWiki\Preferences\DefaultPreferencesFactory\getForm(), MediaWiki\Block\AbstractBlock\getPermissionsError(), ChangesList\newFromContext(), MediaWiki\preOutputCommit(), MediaWiki\Preferences\DefaultPreferencesFactory\profilePreferences(), MediaWiki\run(), MediaWiki\Preferences\DefaultPreferencesFactory\submitForm(), DeleteAction\tempDelete(), and HTMLFileCache\useFileCache().
IContextSource::getSkin | ( | ) |
Implemented in ContextSource, DerivativeContext, and RequestContext.
Referenced by MediaWiki\Preferences\DefaultPreferencesFactory\getFormDescriptor(), and ChangesList\newFromContext().
IContextSource::getStats | ( | ) |
Implemented in ContextSource, DerivativeContext, and RequestContext.
IContextSource::getTiming | ( | ) |
IContextSource::getTitle | ( | ) |
Implemented in ContextSource, DerivativeContext, RequestContext, DifferenceEngine, HTMLForm, ImageHistoryPseudoPager, AllMessagesTablePager, ImageListPager, and ProtectedTitlesPager.
Referenced by MediaWiki\Preferences\DefaultPreferencesFactory\getForm(), HTMLFileCache\loadFromFileCache(), MediaWiki\Preferences\DefaultPreferencesFactory\profilePreferences(), MediaWiki\run(), and Message\setContext().
IContextSource::getUser | ( | ) |
Implemented in ContextSource, DerivativeContext, and RequestContext.
Referenced by MediaWiki\SpecialPage\SpecialPageFactory\capturePath(), SpecialPageLanguage\changePageLanguage(), UserGroupMembership\getLink(), MediaWiki\Block\AbstractBlock\getPermissionsError(), ParserOptions\newFromContext(), ChangesList\newFromContext(), MediaWiki\preOutputCommit(), MediaWiki\Preferences\DefaultPreferencesFactory\profilePreferences(), SpecialEmailUser\submit(), DeleteAction\tempDelete(), and HTMLFileCache\useFileCache().
IContextSource::getWikiPage | ( | ) |
Get the WikiPage object.
May throw an exception if there's no Title object set or the Title object belongs to a special namespace that doesn't have WikiPage, so use first canUseWikiPage() to check whether this method can be called safely.
Implemented in ContextSource, DerivativeContext, and RequestContext.