ApiImportReporter.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. /**
  3. * Copyright © 2009 Roan Kattouw "<Firstname>.<Lastname>@gmail.com"
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along
  16. * with this program; if not, write to the Free Software Foundation, Inc.,
  17. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  18. * http://www.gnu.org/copyleft/gpl.html
  19. *
  20. * @file
  21. */
  22. /**
  23. * Import reporter for the API
  24. * @ingroup API
  25. */
  26. class ApiImportReporter extends ImportReporter {
  27. private $mResultArr = [];
  28. /**
  29. * @param Title $title
  30. * @param ForeignTitle $foreignTitle
  31. * @param int $revisionCount
  32. * @param int $successCount
  33. * @param array $pageInfo
  34. * @return void
  35. * @suppress PhanParamSignatureMismatch
  36. */
  37. public function reportPage( $title, $foreignTitle, $revisionCount, $successCount, $pageInfo ) {
  38. // Add a result entry
  39. $r = [];
  40. if ( $title === null ) {
  41. # Invalid or non-importable title
  42. $r['title'] = $pageInfo['title'];
  43. $r['invalid'] = true;
  44. } else {
  45. ApiQueryBase::addTitleInfo( $r, $title );
  46. $r['revisions'] = (int)$successCount;
  47. }
  48. $this->mResultArr[] = $r;
  49. // Piggyback on the parent to do the logging
  50. parent::reportPage( $title, $foreignTitle, $revisionCount, $successCount, $pageInfo );
  51. }
  52. public function getData() {
  53. return $this->mResultArr;
  54. }
  55. }