40 parent::__construct(
'ChangeContentModel',
'editcontentmodel' );
63 $title = Title::newFromText(
$par );
65 $this->title = $title;
76 $contentModelLogPage =
new LogPage(
'contentmodel' );
77 $text =
Html::element(
'h2', [], $contentModelLogPage->getName()->text() );
79 LogEventsList::showLogExtract( $out,
'contentmodel', $this->title );
102 if ( $this->title ) {
103 $this->
getOutput()->addBacklinkSubtitle( $this->title );
111 private function validateTitle( $title ) {
114 $titleObj = Title::newFromTextThrow( $title );
116 $this->oldRevision = $this->revisionLookup->getRevisionByTitle( $titleObj ) ?:
false;
118 if ( $this->oldRevision ) {
119 $oldContent = $this->oldRevision->getContent( SlotRecord::MAIN );
120 if ( !$oldContent->getContentHandler()->supportsDirectEditing() ) {
121 return $this->
msg(
'changecontentmodel-nodirectediting' )
122 ->params( ContentHandler::getLocalizedName( $oldContent->getModel() ) )
136 'name' =>
'pagetitle',
138 'label-message' =>
'changecontentmodel-title-label',
139 'validation-callback' => $this->validateTitle( ... ),
142 if ( $this->title ) {
143 $options = $this->getOptionsForTitle( $this->title );
146 'changecontentmodel-emptymodels-title',
147 'changecontentmodel-emptymodels-text',
148 [ $this->title->getPrefixedText() ]
151 $fields[
'pagetitle'][
'readonly'] =
true;
156 'default' => $this->title->getContentModel(),
157 'options' => $options,
158 'label-message' =>
'changecontentmodel-model-label'
162 'maxlength' => CommentStore::COMMENT_CHARACTER_LIMIT,
164 'validation-callback' =>
function ( $reason ) {
165 if ( $reason ===
null || $reason ===
'' ) {
170 $match = $this->spamChecker->checkSummary( $reason );
173 return $this->
msg(
'spamprotectionmatch', $match )->parse();
178 'label-message' =>
'changecontentmodel-reason-label',
191 private function getOptionsForTitle( ?
Title $title =
null ) {
192 $models = $this->contentHandlerFactory->getContentModels();
194 foreach ( $models as $model ) {
195 $handler = $this->contentHandlerFactory->getContentHandler( $model );
196 if ( !$handler->supportsDirectEditing() ) {
200 if ( !$handler->canBeUsedOn( $title ) ) {
204 $options[ContentHandler::getLocalizedName( $model )] = $model;
209 $collation = $this->collationFactory->getCategoryCollation();
210 uksort( $options,
static function ( $a, $b ) use ( $collation ) {
211 $a = $collation->getSortKey( $a );
212 $b = $collation->getSortKey( $b );
213 return strcmp( $a, $b );
221 $this->title = Title::newFromText( $data[
'pagetitle'] );
222 $page = $this->wikiPageFactory->newFromTitle( $this->title );
224 $changer = $this->contentModelChangeFactory->newContentModelChange(
230 $permissionStatus = $changer->authorizeChange();
231 if ( !$permissionStatus->isGood() ) {
233 $wikitext = $out->formatPermissionStatus( $permissionStatus );
235 return Status::newFatal(
new RawMessage(
'$1', [ $wikitext ] ) );
238 $status = $changer->doContentModelChange(
249 $out->setPageTitleMsg( $this->
msg(
'changecontentmodel-success-title' ) );
250 $out->addWikiMsg(
'changecontentmodel-success-text', $this->title->getPrefixedText() );
262 return $this->
prefixSearchString( $search, $limit, $offset, $this->searchEngineFactory );
272class_alias( SpecialChangeContentModel::class,
'SpecialChangeContentModel' );
Base class for content handling.
Service to check if text (either content or a summary) qualifies as spam.
An error page which can definitely be safely rendered using the OutputPage.
Class to simplify the use of log pages.
Service for creating WikiPage objects.
Special page which uses an HTMLForm to handle processing.
string null $par
The subpage of the special page.
getContext()
Gets the context this SpecialPage is executed in.
getRequest()
Get the WebRequest being used for this instance.
msg( $key,... $params)
Wrapper around wfMessage that sets the current context.
getOutput()
Get the OutputPage being used for this instance.
prefixSearchString( $search, $limit, $offset, ?SearchEngineFactory $searchEngineFactory=null)
Perform a regular substring search for prefixSearchSubpages.
getAuthority()
Shortcut to get the Authority executing this instance.
addHelpLink( $to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
postHtml()
Add post-HTML to the form.string HTML which will be sent to $form->addPostHtml() 1....
setParameter( $par)
Maybe do something interesting with the subpage parameter.
getDisplayFormat()
Get display format for the form.See HTMLForm documentation for available values.1....
alterForm(HTMLForm $form)
Play with the HTMLForm if you need to more substantially.
__construct(private readonly IContentHandlerFactory $contentHandlerFactory, private readonly ContentModelChangeFactory $contentModelChangeFactory, private readonly SpamChecker $spamChecker, private readonly RevisionLookup $revisionLookup, private readonly WikiPageFactory $wikiPageFactory, private readonly SearchEngineFactory $searchEngineFactory, private readonly CollationFactory $collationFactory)
onSubmit(array $data)
Process the form on submission.bool|string|array|Status As documented for HTMLForm::trySubmit.
getFormFields()
Get an HTMLForm descriptor array.array
prefixSearchSubpages( $search, $limit, $offset)
Return an array of subpages beginning with $search that this special page will accept.
doesWrites()
Indicates whether POST requests to this special page require write access to the wiki....
onSuccess()
Do something exciting on successful processing of the form, most likely to show a confirmation messag...
Service for changing the content model of wiki pages.