Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/includes/Rest/Handler/Helper/RestStatusTrait.php
Ðазад
<?php namespace MediaWiki\Rest\Handler\Helper; use MediaWiki\Logger\LoggerFactory; use MediaWiki\Message\Converter; use MediaWiki\Rest\LocalizedHttpException; use StatusValue; use Wikimedia\Message\MessageValue; /** * Trait for handling Status objects in REST handlers. */ trait RestStatusTrait { private ?Converter $messageValueConverter = null; private function getMessageValueConverter(): Converter { if ( !$this->messageValueConverter ) { $this->messageValueConverter = new Converter(); } return $this->messageValueConverter; } /** * Extract the error messages from a Status, as MessageValue objects. * @param StatusValue $status * @return MessageValue[] */ private function convertStatusToMessageValues( StatusValue $status ): array { $conv = $this->getMessageValueConverter(); return array_map( static function ( $msg ) use ( $conv ) { // TODO: It should be possible to do this without going through a Message object, // but the internal format of parameters is different in MessageValue (T358779) return $conv->convertMessage( $msg ); }, $status->getMessages() ); } /** * @param StatusValue $status * @param string|MessageValue $msg * @param int $code * @param array $data * * @return never * @throws LocalizedHttpException */ private function throwExceptionForStatus( StatusValue $status, $msg, int $code, array $data = [] ) { $data += [ 'error-keys' => $this->getStatusErrorKeys( $status ) ]; if ( is_string( $msg ) ) { $msg = MessageValue::new( $msg ) ->semicolonListParams( $this->convertStatusToMessageValues( $status ) ); } throw new LocalizedHttpException( $msg, $code, $data ); } private function getStatusErrorKeys( StatusValue $status ) { $keys = []; foreach ( $status->getMessages() as $msg ) { $keys[] = $msg->getKey(); } return array_unique( $keys ); } private function logStatusError( StatusValue $status, string $message, string $channel ) { LoggerFactory::getInstance( $channel )->error( $message, [ 'reason' => $this->getStatusErrorKeys( $status ) ] ); } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка