Replace some uses of deprecated wfFindFile() and wfLocalFile()
authorDerick Alangi <alangiderick@gmail.com>
Tue, 14 May 2019 17:00:34 +0000 (18:00 +0100)
committerD3r1ck01 <xsavitar.wiki@aol.com>
Tue, 11 Jun 2019 13:26:37 +0000 (13:26 +0000)
commit21e2d71560cb87191dd80ae0750d0190b45063c1
treea0088f08e76373bc0cd01e78531829e172210d6e
parenta6dce8b8cd0b665ed4a00ad6bdcfabf69f2925c3
Replace some uses of deprecated wfFindFile() and wfLocalFile()

These global functions were deprecated in 1.34 and services made
available to replace them. See services below;

* wfFindFile() - MediaWikiServices::getInstance()->getRepoGroup()->findFile()
* wfLocalFind() - MediaWikiServices::getInstance()->getRepoGroup()->getLocalRepo()->newFile()

NOTES:

* wfFindFile() and wfLocalFind() usages in tests have been ignored
  in this change per @Timo's comments about state of objects.

* includes/upload/UploadBase.php also maintained for now as it causes
  some failures I don't fully understand, will investigate and handle
  it in a follow up patch.

* Also, includes/MovePage.php

Change-Id: I9437494de003f40fbe591321da7b42d16bb732d6
39 files changed:
includes/EditPage.php
includes/GlobalFunctions.php
includes/Linker.php
includes/Title.php
includes/actions/InfoAction.php
includes/api/ApiImageRotate.php
includes/api/ApiMove.php
includes/api/ApiQueryImageInfo.php
includes/content/FileContentHandler.php
includes/deferred/WANCacheReapUpdate.php
includes/export/XmlDumpWriter.php
includes/filerepo/file/File.php
includes/filerepo/file/LocalFile.php
includes/filerepo/file/LocalFileMoveBatch.php
includes/gallery/TraditionalImageGallery.php
includes/import/ImportableUploadRevisionImporter.php
includes/jobqueue/jobs/ThumbnailRenderJob.php
includes/page/ImagePage.php
includes/page/PageArchive.php
includes/page/WikiFilePage.php
includes/parser/CoreParserFunctions.php
includes/parser/Parser.php
includes/revisiondelete/RevDelFileList.php
includes/search/SearchNearMatcher.php
includes/search/SearchResult.php
includes/specials/SpecialFileDuplicateSearch.php
includes/specials/SpecialMovepage.php
includes/specials/SpecialRedirect.php
includes/specials/SpecialUpload.php
includes/specials/SpecialWantedfiles.php
includes/specials/pagers/ImageListPager.php
includes/upload/UploadBase.php
includes/widget/search/FullSearchResultWidget.php
maintenance/deleteBatch.php
maintenance/dumpUploads.php
maintenance/eraseArchivedFile.php
maintenance/importImages.php
maintenance/populateImageSha1.php
maintenance/rebuildImages.php