LocalizedException.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php
  2. /**
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation; either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License along
  14. * with this program; if not, write to the Free Software Foundation, Inc.,
  15. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  16. * http://www.gnu.org/copyleft/gpl.html
  17. *
  18. * @file
  19. */
  20. /**
  21. * Interface for MediaWiki-localized exceptions
  22. *
  23. * @since 1.29
  24. * @ingroup Exception
  25. */
  26. interface ILocalizedException {
  27. /**
  28. * Return a Message object for this exception
  29. * @return Message
  30. */
  31. public function getMessageObject();
  32. }
  33. /**
  34. * Basic localized exception.
  35. *
  36. * @since 1.29
  37. * @ingroup Exception
  38. * @note Don't use this in a situation where MessageCache is not functional.
  39. */
  40. class LocalizedException extends Exception implements ILocalizedException {
  41. /** @var string|array|MessageSpecifier */
  42. protected $messageSpec;
  43. /**
  44. * @param string|array|MessageSpecifier $messageSpec See Message::newFromSpecifier
  45. * @param int $code
  46. * @param Exception|Throwable $previous The previous exception used for the exception chaining.
  47. */
  48. public function __construct( $messageSpec, $code = 0, $previous = null ) {
  49. $this->messageSpec = $messageSpec;
  50. // Exception->getMessage() should be in plain English, not localized.
  51. // So fetch the English version of the message, without local
  52. // customizations, and make a basic attempt to turn markup into text.
  53. $msg = $this->getMessageObject()->inLanguage( 'en' )->useDatabase( false )->text();
  54. $msg = preg_replace( '!</?(var|kbd|samp|code)>!', '"', $msg );
  55. $msg = Sanitizer::stripAllTags( $msg );
  56. parent::__construct( $msg, $code, $previous );
  57. }
  58. public function getMessageObject() {
  59. return Message::newFromSpecifier( $this->messageSpec );
  60. }
  61. }