MediaWiki master
ApiMessage.php
Go to the documentation of this file.
1<?php
23
30class ApiMessage extends Message implements IApiMessage {
32
46 public static function create( $msg, $code = null, array $data = null ) {
47 if ( is_array( $msg ) ) {
48 // From StatusValue
49 if ( isset( $msg['message'] ) ) {
50 $msg = [ $msg['message'], ...$msg['params'] ?? [] ];
51 }
52
53 // Weirdness that comes in sometimes, including the above
54 if ( $msg[0] instanceof MessageSpecifier ) {
55 $msg = $msg[0];
56 }
57 }
58
59 if ( $msg instanceof IApiMessage ) {
60 return $msg;
61 } elseif ( $msg instanceof RawMessage ) {
62 return new ApiRawMessage( $msg, $code, $data );
63 } else {
64 return new ApiMessage( $msg, $code, $data );
65 }
66 }
67
76 public function __construct( $msg, $code = null, array $data = null ) {
77 if ( $msg instanceof Message ) {
78 foreach ( get_class_vars( get_class( $this ) ) as $key => $value ) {
79 if ( isset( $msg->$key ) ) {
80 $this->$key = $msg->$key;
81 }
82 }
83 } elseif ( is_array( $msg ) ) {
84 $key = array_shift( $msg );
85 parent::__construct( $key, $msg );
86 } else {
87 parent::__construct( $msg );
88 }
89 $this->setApiCode( $code, $data );
90 }
91}
setApiCode( $code, array $data=null)
Extension of Message implementing IApiMessage.
static create( $msg, $code=null, array $data=null)
Create an IApiMessage for the message.
__construct( $msg, $code=null, array $data=null)
Extension of RawMessage implementing IApiMessage.
Variant of the Message class.
The Message class deals with fetching and processing of interface message into a variety of formats.
Definition Message.php:158
string $key
The message key.
Definition Message.php:206
trait ApiMessageTrait
Trait to implement the IApiMessage interface for Message subclasses.
Interface for messages with machine-readable data for use by the API.