3 * Generic operation result.
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.
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.
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
24 * Generic operation result class
25 * Has warning/error list, boolean status and arbitrary value
27 * "Good" means the operation was completed with no warnings or errors.
29 * "OK" means the operation was partially or wholly completed.
31 * An operation which is not OK should have errors so that the user can be
32 * informed as to what went wrong. Calling the fatal() function sets an error
33 * message and simultaneously switches off the OK flag.
39 /** Counters for batch operations */
40 public $successCount = 0, $failCount = 0;
41 /** Array to indicate which items of the batch operations were successful */
42 public $success = array();
44 /*semi-private*/ var $errors = array();
45 /*semi-private*/ var $cleanCallback = false;
48 * Factory function for fatal errors
50 * @param $message String: message name
53 static function newFatal( $message /*, parameters...*/ ) {
54 $params = func_get_args();
56 call_user_func_array( array( &$result, 'error' ), $params );
62 * Factory function for good results
67 static function newGood( $value = null ) {
69 $result->value
= $value;
74 * Change operation result
76 * @param $ok Boolean: whether the operation completed
79 function setResult( $ok, $value = null ) {
81 $this->value
= $value;
85 * Returns whether the operation completed and didn't have any error or
91 return $this->ok
&& !$this->errors
;
95 * Returns whether the operation completed
106 * @param $message String: message name
108 function warning( $message /*, parameters... */ ) {
109 $params = array_slice( func_get_args(), 1 );
110 $this->errors
[] = array(
112 'message' => $message,
113 'params' => $params );
117 * Add an error, do not set fatal flag
118 * This can be used for non-fatal errors
120 * @param $message String: message name
122 function error( $message /*, parameters... */ ) {
123 $params = array_slice( func_get_args(), 1 );
124 $this->errors
[] = array(
126 'message' => $message,
127 'params' => $params );
131 * Add an error and set OK to false, indicating that the operation
132 * as a whole was fatal
134 * @param $message String: message name
136 function fatal( $message /*, parameters... */ ) {
137 $params = array_slice( func_get_args(), 1 );
138 $this->errors
[] = array(
140 'message' => $message,
141 'params' => $params );
146 * Sanitize the callback parameter on wakeup, to avoid arbitrary execution.
148 function __wakeup() {
149 $this->cleanCallback
= false;
153 * @param $params array
156 protected function cleanParams( $params ) {
157 if ( !$this->cleanCallback
) {
160 $cleanParams = array();
161 foreach ( $params as $i => $param ) {
162 $cleanParams[$i] = call_user_func( $this->cleanCallback
, $param );
171 protected function getItemXML( $item ) {
172 $params = $this->cleanParams( $item['params'] );
173 $xml = "<{$item['type']}>\n" .
174 Xml
::element( 'message', null, $item['message'] ) . "\n" .
175 Xml
::element( 'text', null, wfMsg( $item['message'], $params ) ) ."\n";
176 foreach ( $params as $param ) {
177 $xml .= Xml
::element( 'param', null, $param );
179 $xml .= "</{$item['type']}>\n";
184 * Get the error list as XML
189 foreach ( $this->errors
as $error ) {
190 $xml .= $this->getItemXML( $error );
192 $xml .= "</errors>\n";
197 * Get the error list as a wikitext formatted list
199 * @param $shortContext String: a short enclosing context message name, to
200 * be used when there is a single error
201 * @param $longContext String: a long enclosing context message name, for a list
204 function getWikiText( $shortContext = false, $longContext = false ) {
205 if ( count( $this->errors
) == 0 ) {
207 $this->fatal( 'internalerror_info',
208 __METHOD__
." called for a good result, this is incorrect\n" );
210 $this->fatal( 'internalerror_info',
211 __METHOD__
.": Invalid result object: no error text but not OK\n" );
214 if ( count( $this->errors
) == 1 ) {
215 $s = $this->getWikiTextForError( $this->errors
[0], $this->errors
[0] );
216 if ( $shortContext ) {
217 $s = wfMsgNoTrans( $shortContext, $s );
218 } elseif ( $longContext ) {
219 $s = wfMsgNoTrans( $longContext, "* $s\n" );
222 $s = '* '. implode("\n* ",
223 $this->getWikiTextArray( $this->errors
) ) . "\n";
224 if ( $longContext ) {
225 $s = wfMsgNoTrans( $longContext, $s );
226 } elseif ( $shortContext ) {
227 $s = wfMsgNoTrans( $shortContext, "\n$s\n" );
234 * Return the wiki text for a single error.
235 * @param $error Mixed With an array & two values keyed by
236 * 'message' and 'params', use those keys-value pairs.
237 * Otherwise, if its an array, just use the first value as the
238 * message and the remaining items as the params.
242 protected function getWikiTextForError( $error ) {
243 if ( is_array( $error ) ) {
244 if ( isset( $error['message'] ) && isset( $error['params'] ) ) {
245 return wfMsgNoTrans( $error['message'],
246 array_map( 'wfEscapeWikiText', $this->cleanParams( $error['params'] ) ) );
248 $message = array_shift($error);
249 return wfMsgNoTrans( $message,
250 array_map( 'wfEscapeWikiText', $this->cleanParams( $error ) ) );
253 return wfMsgNoTrans( $error );
258 * Return an array with the wikitext for each item in the array.
259 * @param $errors Array
262 function getWikiTextArray( $errors ) {
263 return array_map( array( $this, 'getWikiTextForError' ), $errors );
267 * Merge another status object into this one
269 * @param $other Status Other Status object
270 * @param $overwriteValue Boolean: whether to override the "value" member
272 function merge( $other, $overwriteValue = false ) {
273 $this->errors
= array_merge( $this->errors
, $other->errors
);
274 $this->ok
= $this->ok
&& $other->ok
;
275 if ( $overwriteValue ) {
276 $this->value
= $other->value
;
278 $this->successCount +
= $other->successCount
;
279 $this->failCount +
= $other->failCount
;
283 * Get the list of errors (but not warnings)
287 function getErrorsArray() {
288 return $this->getStatusArray( "error" );
292 * Get the list of warnings (but not errors)
296 function getWarningsArray() {
297 return $this->getStatusArray( "warning" );
301 * Returns a list of status messages of the given type
302 * @param $type String
306 protected function getStatusArray( $type ) {
308 foreach ( $this->errors
as $error ) {
309 if ( $error['type'] === $type ) {
310 if( $error['params'] ) {
311 $result[] = array_merge( array( $error['message'] ), $error['params'] );
313 $result[] = array( $error['message'] );
321 * Returns a list of status messages of the given type, with message and
322 * params left untouched, like a sane version of getStatusArray
324 * @param $type String
328 public function getErrorsByType( $type ) {
330 foreach ( $this->errors
as $error ) {
331 if ( $error['type'] === $type ) {
339 * Returns true if the specified message is present as a warning or error
341 * @param $msg String: message name
344 function hasMessage( $msg ) {
345 foreach ( $this->errors
as $error ) {
346 if ( $error['message'] === $msg ) {
354 * If the specified source message exists, replace it with the specified
355 * destination message, but keep the same parameters as in the original error.
357 * Return true if the replacement was done, false otherwise.
361 function replaceMessage( $source, $dest ) {
363 foreach ( $this->errors
as $index => $error ) {
364 if ( $error['message'] === $source ) {
365 $this->errors
[$index]['message'] = $dest;
373 * Backward compatibility function for WikiError -> Status migration
377 public function getMessage() {
378 return $this->getWikiText();
384 public function getValue() {