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 );
168 * Get the error list as a wikitext formatted list
170 * @param $shortContext String: a short enclosing context message name, to
171 * be used when there is a single error
172 * @param $longContext String: a long enclosing context message name, for a list
175 function getWikiText( $shortContext = false, $longContext = false ) {
176 if ( count( $this->errors
) == 0 ) {
178 $this->fatal( 'internalerror_info',
179 __METHOD__
." called for a good result, this is incorrect\n" );
181 $this->fatal( 'internalerror_info',
182 __METHOD__
.": Invalid result object: no error text but not OK\n" );
185 if ( count( $this->errors
) == 1 ) {
186 $s = $this->getWikiTextForError( $this->errors
[0], $this->errors
[0] );
187 if ( $shortContext ) {
188 $s = wfMessage( $shortContext, $s )->plain();
189 } elseif ( $longContext ) {
190 $s = wfMessage( $longContext, "* $s\n" )->plain();
193 $s = '* '. implode("\n* ",
194 $this->getWikiTextArray( $this->errors
) ) . "\n";
195 if ( $longContext ) {
196 $s = wfMessage( $longContext, $s )->plain();
197 } elseif ( $shortContext ) {
198 $s = wfMessage( $shortContext, "\n$s\n" )->plain();
205 * Return the wiki text for a single error.
206 * @param $error Mixed With an array & two values keyed by
207 * 'message' and 'params', use those keys-value pairs.
208 * Otherwise, if its an array, just use the first value as the
209 * message and the remaining items as the params.
213 protected function getWikiTextForError( $error ) {
214 if ( is_array( $error ) ) {
215 if ( isset( $error['message'] ) && isset( $error['params'] ) ) {
216 return wfMessage( $error['message'],
217 array_map( 'wfEscapeWikiText', $this->cleanParams( $error['params'] ) ) )->plain();
219 $message = array_shift($error);
220 return wfMessage( $message,
221 array_map( 'wfEscapeWikiText', $this->cleanParams( $error ) ) )->plain();
224 return wfMessage( $error )->plain();
229 * Return an array with the wikitext for each item in the array.
230 * @param $errors Array
233 function getWikiTextArray( $errors ) {
234 return array_map( array( $this, 'getWikiTextForError' ), $errors );
238 * Merge another status object into this one
240 * @param $other Status Other Status object
241 * @param $overwriteValue Boolean: whether to override the "value" member
243 function merge( $other, $overwriteValue = false ) {
244 $this->errors
= array_merge( $this->errors
, $other->errors
);
245 $this->ok
= $this->ok
&& $other->ok
;
246 if ( $overwriteValue ) {
247 $this->value
= $other->value
;
249 $this->successCount +
= $other->successCount
;
250 $this->failCount +
= $other->failCount
;
254 * Get the list of errors (but not warnings)
258 function getErrorsArray() {
259 return $this->getStatusArray( "error" );
263 * Get the list of warnings (but not errors)
267 function getWarningsArray() {
268 return $this->getStatusArray( "warning" );
272 * Returns a list of status messages of the given type
273 * @param $type String
277 protected function getStatusArray( $type ) {
279 foreach ( $this->errors
as $error ) {
280 if ( $error['type'] === $type ) {
281 if( $error['params'] ) {
282 $result[] = array_merge( array( $error['message'] ), $error['params'] );
284 $result[] = array( $error['message'] );
292 * Returns a list of status messages of the given type, with message and
293 * params left untouched, like a sane version of getStatusArray
295 * @param $type String
299 public function getErrorsByType( $type ) {
301 foreach ( $this->errors
as $error ) {
302 if ( $error['type'] === $type ) {
310 * Returns true if the specified message is present as a warning or error
312 * @param $msg String: message name
315 function hasMessage( $msg ) {
316 foreach ( $this->errors
as $error ) {
317 if ( $error['message'] === $msg ) {
325 * If the specified source message exists, replace it with the specified
326 * destination message, but keep the same parameters as in the original error.
328 * Return true if the replacement was done, false otherwise.
332 function replaceMessage( $source, $dest ) {
334 foreach ( $this->errors
as $index => $error ) {
335 if ( $error['message'] === $source ) {
336 $this->errors
[$index]['message'] = $dest;
344 * Backward compatibility function for WikiError -> Status migration
348 public function getMessage() {
349 return $this->getWikiText();
355 public function getValue() {