48 parent::__construct(
'ChangeContentModel',
'editcontentmodel' );
50 $this->contentHandlerFactory = $contentHandlerFactory;
51 $this->contentModelChangeFactory = $contentModelChangeFactory;
52 $this->spamChecker = $spamChecker;
53 $this->revisionLookup = $revisionLookup;
54 $this->wikiPageFactory = $wikiPageFactory;
55 $this->searchEngineFactory = $searchEngineFactory;
56 $this->collationFactory = $collationFactory;
79 $title = Title::newFromText(
$par );
81 $this->title = $title;
92 $contentModelLogPage =
new LogPage(
'contentmodel' );
93 $text =
Html::element(
'h2', [], $contentModelLogPage->getName()->text() );
95 LogEventsList::showLogExtract( $out,
'contentmodel', $this->title );
109 if ( $this->title ) {
118 if ( $this->title ) {
119 $this->
getOutput()->addBacklinkSubtitle( $this->title );
127 private function validateTitle( $title ) {
130 $titleObj = Title::newFromTextThrow( $title );
132 $this->oldRevision = $this->revisionLookup->getRevisionByTitle( $titleObj ) ?:
false;
134 if ( $this->oldRevision ) {
135 $oldContent = $this->oldRevision->getContent( SlotRecord::MAIN );
136 if ( !$oldContent->getContentHandler()->supportsDirectEditing() ) {
137 return $this->
msg(
'changecontentmodel-nodirectediting' )
138 ->params( ContentHandler::getLocalizedName( $oldContent->getModel() ) )
152 'name' =>
'pagetitle',
154 'label-message' =>
'changecontentmodel-title-label',
155 'validation-callback' => $this->validateTitle( ... ),
158 if ( $this->title ) {
159 $options = $this->getOptionsForTitle( $this->title );
162 'changecontentmodel-emptymodels-title',
163 'changecontentmodel-emptymodels-text',
164 [ $this->title->getPrefixedText() ]
167 $fields[
'pagetitle'][
'readonly'] =
true;
172 'default' => $this->title->getContentModel(),
173 'options' => $options,
174 'label-message' =>
'changecontentmodel-model-label'
178 'maxlength' => CommentStore::COMMENT_CHARACTER_LIMIT,
180 'validation-callback' =>
function ( $reason ) {
181 if ( $reason ===
null || $reason ===
'' ) {
186 $match = $this->spamChecker->checkSummary( $reason );
189 return $this->
msg(
'spamprotectionmatch', $match )->parse();
194 'label-message' =>
'changecontentmodel-reason-label',
207 private function getOptionsForTitle( ?
Title $title =
null ) {
208 $models = $this->contentHandlerFactory->getContentModels();
210 foreach ( $models as $model ) {
211 $handler = $this->contentHandlerFactory->getContentHandler( $model );
212 if ( !$handler->supportsDirectEditing() ) {
216 if ( !$handler->canBeUsedOn( $title ) ) {
220 $options[ContentHandler::getLocalizedName( $model )] = $model;
225 $collation = $this->collationFactory->getCategoryCollation();
226 uksort( $options,
static function ( $a, $b ) use ( $collation ) {
227 $a = $collation->getSortKey( $a );
228 $b = $collation->getSortKey( $b );
229 return strcmp( $a, $b );
237 $this->title = Title::newFromText( $data[
'pagetitle'] );
238 $page = $this->wikiPageFactory->newFromTitle( $this->title );
240 $changer = $this->contentModelChangeFactory->newContentModelChange(
246 $permissionStatus = $changer->authorizeChange();
247 if ( !$permissionStatus->isGood() ) {
249 $wikitext = $out->formatPermissionStatus( $permissionStatus );
251 return Status::newFatal(
new RawMessage(
'$1', [ $wikitext ] ) );
254 $status = $changer->doContentModelChange(
265 $out->setPageTitleMsg( $this->
msg(
'changecontentmodel-success-title' ) );
266 $out->addWikiMsg(
'changecontentmodel-success-text', $this->title->getPrefixedText() );
278 return $this->
prefixSearchString( $search, $limit, $offset, $this->searchEngineFactory );
288class_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.
__construct(IContentHandlerFactory $contentHandlerFactory, ContentModelChangeFactory $contentModelChangeFactory, SpamChecker $spamChecker, RevisionLookup $revisionLookup, WikiPageFactory $wikiPageFactory, SearchEngineFactory $searchEngineFactory, CollationFactory $collationFactory)
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.
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...
Factory class for SearchEngine.
Service for changing the content model of wiki pages.