Localisation updates from https://translatewiki.net.
[mediawiki.git] / includes / db / ORMRow.php
blobb0bade3328aa2f2a45271d39117a151dc6050ecd
1 <?php
2 /**
3 * Abstract base class for representing objects that are stored in some DB table.
4 * This is basically an ORM-like wrapper around rows in database tables that
5 * aims to be both simple and very flexible. It is centered around an associative
6 * array of fields and various methods to do common interaction with the database.
8 * Documentation inline and at https://www.mediawiki.org/wiki/Manual:ORMTable
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 * http://www.gnu.org/copyleft/gpl.html
25 * @since 1.20
27 * @file ORMRow.php
28 * @ingroup ORM
30 * @license GNU GPL v2 or later
31 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
34 class ORMRow implements IORMRow {
35 /**
36 * The fields of the object.
37 * field name (w/o prefix) => value
39 * @since 1.20
40 * @var array
42 protected $fields = array( 'id' => null );
44 /**
45 * If the object should update summaries of linked items when changed.
46 * For example, update the course_count field in universities when a course in courses is deleted.
47 * Settings this to false can prevent needless updating work in situations
48 * such as deleting a university, which will then delete all it's courses.
50 * @deprecated since 1.22
51 * @since 1.20
52 * @var bool
54 protected $updateSummaries = true;
56 /**
57 * Indicates if the object is in summary mode.
58 * This mode indicates that only summary fields got updated,
59 * which allows for optimizations.
61 * @deprecated since 1.22
62 * @since 1.20
63 * @var bool
65 protected $inSummaryMode = false;
67 /**
68 * @deprecated since 1.22
69 * @since 1.20
70 * @var ORMTable|null
72 protected $table;
74 /**
75 * Constructor.
77 * @since 1.20
79 * @param IORMTable|null $table Deprecated since 1.22
80 * @param array|null $fields
81 * @param bool $loadDefaults Deprecated since 1.22
83 public function __construct( IORMTable $table = null, $fields = null, $loadDefaults = false ) {
84 $this->table = $table;
86 if ( !is_array( $fields ) ) {
87 $fields = array();
90 if ( $loadDefaults ) {
91 $fields = array_merge( $this->table->getDefaults(), $fields );
94 $this->setFields( $fields );
97 /**
98 * Load the specified fields from the database.
100 * @since 1.20
101 * @deprecated since 1.22
103 * @param array|null $fields
104 * @param bool $override
105 * @param bool $skipLoaded
107 * @return bool Success indicator
109 public function loadFields( $fields = null, $override = true, $skipLoaded = false ) {
110 if ( is_null( $this->getId() ) ) {
111 return false;
114 if ( is_null( $fields ) ) {
115 $fields = array_keys( $this->table->getFields() );
118 if ( $skipLoaded ) {
119 $fields = array_diff( $fields, array_keys( $this->fields ) );
122 if ( !empty( $fields ) ) {
123 $result = $this->table->rawSelectRow(
124 $this->table->getPrefixedFields( $fields ),
125 array( $this->table->getPrefixedField( 'id' ) => $this->getId() ),
126 array( 'LIMIT' => 1 ),
127 __METHOD__
130 if ( $result !== false ) {
131 $this->setFields( $this->table->getFieldsFromDBResult( $result ), $override );
133 return true;
136 return false;
139 return true;
143 * Gets the value of a field.
145 * @since 1.20
147 * @param string $name Field name
148 * @param mixed $default Default value to return when none is found
149 * (default: null)
151 * @throws MWException
152 * @return mixed
154 public function getField( $name, $default = null ) {
155 if ( $this->hasField( $name ) ) {
156 return $this->fields[$name];
157 } elseif ( !is_null( $default ) ) {
158 return $default;
159 } else {
160 throw new MWException( 'Attempted to get not-set field ' . $name );
165 * Gets the value of a field but first loads it if not done so already.
167 * @since 1.20
168 * @deprecated since 1.22
170 * @param string $name
172 * @return mixed
174 public function loadAndGetField( $name ) {
175 if ( !$this->hasField( $name ) ) {
176 $this->loadFields( array( $name ) );
179 return $this->getField( $name );
183 * Remove a field.
185 * @since 1.20
187 * @param string $name
189 public function removeField( $name ) {
190 unset( $this->fields[$name] );
194 * Returns the objects database id.
196 * @since 1.20
198 * @return int|null
200 public function getId() {
201 return $this->getField( 'id' );
205 * Sets the objects database id.
207 * @since 1.20
209 * @param int|null $id
211 public function setId( $id ) {
212 $this->setField( 'id', $id );
216 * Gets if a certain field is set.
218 * @since 1.20
220 * @param string $name
222 * @return bool
224 public function hasField( $name ) {
225 return array_key_exists( $name, $this->fields );
229 * Gets if the id field is set.
231 * @since 1.20
233 * @return bool
235 public function hasIdField() {
236 return $this->hasField( 'id' ) && !is_null( $this->getField( 'id' ) );
240 * Gets the fields => values to write to the table.
242 * @since 1.20
243 * @deprecated since 1.22
245 * @return array
247 protected function getWriteValues() {
248 $values = array();
250 foreach ( $this->table->getFields() as $name => $type ) {
251 if ( array_key_exists( $name, $this->fields ) ) {
252 $value = $this->fields[$name];
254 // Skip null id fields so that the DBMS can set the default.
255 if ( $name === 'id' && is_null( $value ) ) {
256 continue;
259 switch ( $type ) {
260 case 'array':
261 $value = (array)$value;
262 // fall-through!
263 case 'blob':
264 $value = serialize( $value );
265 // fall-through!
268 $values[$this->table->getPrefixedField( $name )] = $value;
272 return $values;
276 * Sets multiple fields.
278 * @since 1.20
280 * @param array $fields The fields to set
281 * @param bool $override Override already set fields with the provided values?
283 public function setFields( array $fields, $override = true ) {
284 foreach ( $fields as $name => $value ) {
285 if ( $override || !$this->hasField( $name ) ) {
286 $this->setField( $name, $value );
292 * Serializes the object to an associative array which
293 * can then easily be converted into JSON or similar.
295 * @since 1.20
297 * @param null|array $fields
298 * @param bool $incNullId
300 * @return array
302 public function toArray( $fields = null, $incNullId = false ) {
303 $data = array();
304 $setFields = array();
306 if ( !is_array( $fields ) ) {
307 $setFields = $this->getSetFieldNames();
308 } else {
309 foreach ( $fields as $field ) {
310 if ( $this->hasField( $field ) ) {
311 $setFields[] = $field;
316 foreach ( $setFields as $field ) {
317 if ( $incNullId || $field != 'id' || $this->hasIdField() ) {
318 $data[$field] = $this->getField( $field );
322 return $data;
326 * Load the default values, via getDefaults.
328 * @since 1.20
329 * @deprecated since 1.22
331 * @param bool $override
333 public function loadDefaults( $override = true ) {
334 $this->setFields( $this->table->getDefaults(), $override );
338 * Writes the answer to the database, either updating it
339 * when it already exists, or inserting it when it doesn't.
341 * @since 1.20
342 * @deprecated since 1.22 Use IORMTable->updateRow or ->insertRow
344 * @param string|null $functionName
346 * @return bool Success indicator
348 public function save( $functionName = null ) {
349 if ( $this->hasIdField() ) {
350 return $this->table->updateRow( $this, $functionName );
351 } else {
352 return $this->table->insertRow( $this, $functionName );
357 * Updates the object in the database.
359 * @since 1.20
360 * @deprecated since 1.22
362 * @param string|null $functionName
364 * @return bool Success indicator
366 protected function saveExisting( $functionName = null ) {
367 $dbw = $this->table->getWriteDbConnection();
369 $success = $dbw->update(
370 $this->table->getName(),
371 $this->getWriteValues(),
372 $this->table->getPrefixedValues( $this->getUpdateConditions() ),
373 is_null( $functionName ) ? __METHOD__ : $functionName
376 $this->table->releaseConnection( $dbw );
378 // DatabaseBase::update does not always return true for success as documented...
379 return $success !== false;
383 * Returns the WHERE considtions needed to identify this object so
384 * it can be updated.
386 * @since 1.20
388 * @return array
390 protected function getUpdateConditions() {
391 return array( 'id' => $this->getId() );
395 * Inserts the object into the database.
397 * @since 1.20
398 * @deprecated since 1.22
400 * @param string|null $functionName
401 * @param array|null $options
403 * @return bool Success indicator
405 protected function insert( $functionName = null, array $options = null ) {
406 $dbw = $this->table->getWriteDbConnection();
408 $success = $dbw->insert(
409 $this->table->getName(),
410 $this->getWriteValues(),
411 is_null( $functionName ) ? __METHOD__ : $functionName,
412 $options
415 // DatabaseBase::insert does not always return true for success as documented...
416 $success = $success !== false;
418 if ( $success ) {
419 $this->setField( 'id', $dbw->insertId() );
422 $this->table->releaseConnection( $dbw );
424 return $success;
428 * Removes the object from the database.
430 * @since 1.20
431 * @deprecated since 1.22, use IORMTable->removeRow
433 * @return bool Success indicator
435 public function remove() {
436 $this->beforeRemove();
438 $success = $this->table->removeRow( $this, __METHOD__ );
440 if ( $success ) {
441 $this->onRemoved();
444 return $success;
448 * Gets called before an object is removed from the database.
450 * @since 1.20
451 * @deprecated since 1.22
453 protected function beforeRemove() {
454 $this->loadFields( $this->getBeforeRemoveFields(), false, true );
458 * Before removal of an object happens, @see beforeRemove gets called.
459 * This method loads the fields of which the names have been returned by
460 * this one (or all fields if null is returned). This allows for loading
461 * info needed after removal to get rid of linked data and the like.
463 * @since 1.20
465 * @return array|null
467 protected function getBeforeRemoveFields() {
468 return array();
472 * Gets called after successful removal.
473 * Can be overridden to get rid of linked data.
475 * @since 1.20
476 * @deprecated since 1.22
478 protected function onRemoved() {
479 $this->setField( 'id', null );
483 * Return the names and values of the fields.
485 * @since 1.20
487 * @return array
489 public function getFields() {
490 return $this->fields;
494 * Return the names of the fields.
496 * @since 1.20
498 * @return array
500 public function getSetFieldNames() {
501 return array_keys( $this->fields );
505 * Sets the value of a field.
506 * Strings can be provided for other types,
507 * so this method can be called from unserialization handlers.
509 * @since 1.20
511 * @param string $name
512 * @param mixed $value
514 * @throws MWException
516 public function setField( $name, $value ) {
517 $this->fields[$name] = $value;
521 * Add an amount (can be negative) to the specified field (needs to be numeric).
523 * @since 1.20
524 * @deprecated since 1.22, use IORMTable->addToField
526 * @param string $field
527 * @param int $amount
529 * @return bool Success indicator
531 public function addToField( $field, $amount ) {
532 return $this->table->addToField( $this->getUpdateConditions(), $field, $amount );
536 * Return the names of the fields.
538 * @since 1.20
539 * @deprecated since 1.22
541 * @return array
543 public function getFieldNames() {
544 return array_keys( $this->table->getFields() );
548 * Computes and updates the values of the summary fields.
550 * @since 1.20
551 * @deprecated since 1.22
553 * @param array|string|null $summaryFields
555 public function loadSummaryFields( $summaryFields = null ) {
559 * Sets the value for the @see $updateSummaries field.
561 * @since 1.20
562 * @deprecated since 1.22
564 * @param bool $update
566 public function setUpdateSummaries( $update ) {
567 $this->updateSummaries = $update;
571 * Sets the value for the @see $inSummaryMode field.
573 * @since 1.20
574 * @deprecated since 1.22
576 * @param bool $summaryMode
578 public function setSummaryMode( $summaryMode ) {
579 $this->inSummaryMode = $summaryMode;
583 * Returns the table this IORMRow is a row in.
585 * @since 1.20
586 * @deprecated since 1.22
588 * @return IORMTable
590 public function getTable() {
591 return $this->table;