2014-04-19 16:56:16 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2014-04-19 16:56:16 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2014-04-19 16:56:16 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
2014-04-19 16:56:16 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2014-04-19 16:56:16 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2014-04-19 16:56:16 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2014-04-19 16:56:16 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
|
|
|
|
2014-04-19 16:56:16 +04:00
|
|
|
namespace OCP\AppFramework\Db;
|
|
|
|
|
2015-03-18 11:25:22 +03:00
|
|
|
use OCP\IDBConnection;
|
2014-04-19 21:30:12 +04:00
|
|
|
|
2014-04-19 16:56:16 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Simple parent class for inheriting your data access layer from. This class
|
|
|
|
* may be subject to change in the future
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 7.0.0
|
2014-04-19 16:56:16 +04:00
|
|
|
*/
|
|
|
|
abstract class Mapper {
|
|
|
|
|
|
|
|
protected $tableName;
|
|
|
|
protected $entityClass;
|
2014-05-11 14:54:44 +04:00
|
|
|
protected $db;
|
2014-04-19 16:56:16 +04:00
|
|
|
|
|
|
|
/**
|
2015-02-24 18:39:25 +03:00
|
|
|
* @param IDBConnection $db Instance of the Db abstraction layer
|
2015-01-29 21:16:28 +03:00
|
|
|
* @param string $tableName the name of the table. set this to allow entity
|
2014-04-19 16:56:16 +04:00
|
|
|
* @param string $entityClass the name of the entity that the sql should be
|
|
|
|
* mapped to queries without using sql
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 7.0.0
|
2014-04-19 16:56:16 +04:00
|
|
|
*/
|
2015-02-24 18:39:25 +03:00
|
|
|
public function __construct(IDBConnection $db, $tableName, $entityClass=null){
|
2014-04-19 16:56:16 +04:00
|
|
|
$this->db = $db;
|
|
|
|
$this->tableName = '*PREFIX*' . $tableName;
|
|
|
|
|
|
|
|
// if not given set the entity name to the class without the mapper part
|
|
|
|
// cache it here for later use since reflection is slow
|
|
|
|
if($entityClass === null) {
|
|
|
|
$this->entityClass = str_replace('Mapper', '', get_class($this));
|
|
|
|
} else {
|
|
|
|
$this->entityClass = $entityClass;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string the table name
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 7.0.0
|
2014-04-19 16:56:16 +04:00
|
|
|
*/
|
|
|
|
public function getTableName(){
|
|
|
|
return $this->tableName;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deletes an entity from the table
|
|
|
|
* @param Entity $entity the entity that should be deleted
|
2015-01-29 21:16:28 +03:00
|
|
|
* @return Entity the deleted entity
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 7.0.0 - return value added in 8.1.0
|
2014-04-19 16:56:16 +04:00
|
|
|
*/
|
|
|
|
public function delete(Entity $entity){
|
|
|
|
$sql = 'DELETE FROM `' . $this->tableName . '` WHERE `id` = ?';
|
2015-02-24 18:47:38 +03:00
|
|
|
$stmt = $this->execute($sql, [$entity->getId()]);
|
|
|
|
$stmt->closeCursor();
|
2015-01-29 21:16:28 +03:00
|
|
|
return $entity;
|
2014-04-19 16:56:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new entry in the db from an entity
|
2014-04-20 03:09:25 +04:00
|
|
|
* @param Entity $entity the entity that should be created
|
|
|
|
* @return Entity the saved entity with the set id
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 7.0.0
|
2014-04-19 16:56:16 +04:00
|
|
|
*/
|
|
|
|
public function insert(Entity $entity){
|
|
|
|
// get updated fields to save, fields have to be set using a setter to
|
|
|
|
// be saved
|
|
|
|
$properties = $entity->getUpdatedFields();
|
|
|
|
$values = '';
|
|
|
|
$columns = '';
|
2015-01-29 21:16:28 +03:00
|
|
|
$params = [];
|
2014-04-19 16:56:16 +04:00
|
|
|
|
|
|
|
// build the fields
|
|
|
|
$i = 0;
|
|
|
|
foreach($properties as $property => $updated) {
|
|
|
|
$column = $entity->propertyToColumn($property);
|
|
|
|
$getter = 'get' . ucfirst($property);
|
2015-01-29 21:16:28 +03:00
|
|
|
|
2014-04-19 16:56:16 +04:00
|
|
|
$columns .= '`' . $column . '`';
|
|
|
|
$values .= '?';
|
|
|
|
|
|
|
|
// only append colon if there are more entries
|
|
|
|
if($i < count($properties)-1){
|
|
|
|
$columns .= ',';
|
|
|
|
$values .= ',';
|
|
|
|
}
|
|
|
|
|
2015-02-24 18:47:38 +03:00
|
|
|
$params[] = $entity->$getter();
|
2014-04-19 16:56:16 +04:00
|
|
|
$i++;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$sql = 'INSERT INTO `' . $this->tableName . '`(' .
|
|
|
|
$columns . ') VALUES(' . $values . ')';
|
2015-01-29 21:16:28 +03:00
|
|
|
|
2015-02-24 18:47:38 +03:00
|
|
|
$stmt = $this->execute($sql, $params);
|
2014-04-19 16:56:16 +04:00
|
|
|
|
2015-02-24 18:39:25 +03:00
|
|
|
$entity->setId((int) $this->db->lastInsertId($this->tableName));
|
2015-01-29 21:16:28 +03:00
|
|
|
|
2015-02-24 18:47:38 +03:00
|
|
|
$stmt->closeCursor();
|
|
|
|
|
2014-04-19 16:56:16 +04:00
|
|
|
return $entity;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates an entry in the db from an entity
|
|
|
|
* @throws \InvalidArgumentException if entity has no id
|
2014-04-20 03:09:25 +04:00
|
|
|
* @param Entity $entity the entity that should be created
|
2014-08-18 00:07:23 +04:00
|
|
|
* @return Entity the saved entity with the set id
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 7.0.0 - return value was added in 8.0.0
|
2014-04-19 16:56:16 +04:00
|
|
|
*/
|
|
|
|
public function update(Entity $entity){
|
2014-04-23 15:43:17 +04:00
|
|
|
// if entity wasn't changed it makes no sense to run a db query
|
|
|
|
$properties = $entity->getUpdatedFields();
|
|
|
|
if(count($properties) === 0) {
|
|
|
|
return $entity;
|
|
|
|
}
|
|
|
|
|
2014-04-19 16:56:16 +04:00
|
|
|
// entity needs an id
|
|
|
|
$id = $entity->getId();
|
|
|
|
if($id === null){
|
|
|
|
throw new \InvalidArgumentException(
|
|
|
|
'Entity which should be updated has no id');
|
|
|
|
}
|
|
|
|
|
|
|
|
// get updated fields to save, fields have to be set using a setter to
|
|
|
|
// be saved
|
2014-08-18 00:07:23 +04:00
|
|
|
// do not update the id field
|
2014-04-19 16:56:16 +04:00
|
|
|
unset($properties['id']);
|
|
|
|
|
|
|
|
$columns = '';
|
2015-01-29 21:16:28 +03:00
|
|
|
$params = [];
|
2014-04-19 16:56:16 +04:00
|
|
|
|
|
|
|
// build the fields
|
|
|
|
$i = 0;
|
|
|
|
foreach($properties as $property => $updated) {
|
|
|
|
|
|
|
|
$column = $entity->propertyToColumn($property);
|
|
|
|
$getter = 'get' . ucfirst($property);
|
2015-01-29 21:16:28 +03:00
|
|
|
|
2014-04-19 16:56:16 +04:00
|
|
|
$columns .= '`' . $column . '` = ?';
|
|
|
|
|
|
|
|
// only append colon if there are more entries
|
|
|
|
if($i < count($properties)-1){
|
|
|
|
$columns .= ',';
|
|
|
|
}
|
|
|
|
|
2015-02-24 18:47:38 +03:00
|
|
|
$params[] = $entity->$getter();
|
2014-04-19 16:56:16 +04:00
|
|
|
$i++;
|
|
|
|
}
|
|
|
|
|
2015-01-29 21:16:28 +03:00
|
|
|
$sql = 'UPDATE `' . $this->tableName . '` SET ' .
|
2014-04-19 16:56:16 +04:00
|
|
|
$columns . ' WHERE `id` = ?';
|
2015-02-24 18:47:38 +03:00
|
|
|
$params[] = $id;
|
2014-04-19 16:56:16 +04:00
|
|
|
|
2015-02-24 18:47:38 +03:00
|
|
|
$stmt = $this->execute($sql, $params);
|
|
|
|
$stmt->closeCursor();
|
2014-08-18 00:07:23 +04:00
|
|
|
|
|
|
|
return $entity;
|
2014-04-19 16:56:16 +04:00
|
|
|
}
|
|
|
|
|
2015-03-19 16:55:21 +03:00
|
|
|
/**
|
|
|
|
* Checks if an array is associative
|
|
|
|
* @param array $array
|
|
|
|
* @return bool true if associative
|
2015-06-19 11:51:36 +03:00
|
|
|
* @since 8.1.0
|
2015-03-19 16:55:21 +03:00
|
|
|
*/
|
|
|
|
private function isAssocArray(array $array) {
|
|
|
|
return array_values($array) !== $array;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the correct PDO constant based on the value type
|
|
|
|
* @param $value
|
2016-02-29 11:44:40 +03:00
|
|
|
* @return int PDO constant
|
2015-06-19 11:51:36 +03:00
|
|
|
* @since 8.1.0
|
2015-03-19 16:55:21 +03:00
|
|
|
*/
|
|
|
|
private function getPDOType($value) {
|
|
|
|
switch (gettype($value)) {
|
|
|
|
case 'integer':
|
|
|
|
return \PDO::PARAM_INT;
|
|
|
|
case 'boolean':
|
|
|
|
return \PDO::PARAM_BOOL;
|
|
|
|
default:
|
|
|
|
return \PDO::PARAM_STR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-19 16:56:16 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Runs an sql query
|
|
|
|
* @param string $sql the prepare string
|
|
|
|
* @param array $params the params which should replace the ? in the sql query
|
|
|
|
* @param int $limit the maximum number of rows
|
|
|
|
* @param int $offset from which row we want to start
|
|
|
|
* @return \PDOStatement the database query result
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 7.0.0
|
2014-04-19 16:56:16 +04:00
|
|
|
*/
|
2015-01-29 21:16:28 +03:00
|
|
|
protected function execute($sql, array $params=[], $limit=null, $offset=null){
|
2016-12-14 13:42:16 +03:00
|
|
|
$query = $this->db->prepare($sql, $limit, $offset);
|
2014-04-19 16:56:16 +04:00
|
|
|
|
2015-03-19 16:55:21 +03:00
|
|
|
if ($this->isAssocArray($params)) {
|
|
|
|
foreach ($params as $key => $param) {
|
|
|
|
$pdoConstant = $this->getPDOType($param);
|
|
|
|
$query->bindValue($key, $param, $pdoConstant);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$index = 1; // bindParam is 1 indexed
|
|
|
|
foreach ($params as $param) {
|
|
|
|
$pdoConstant = $this->getPDOType($param);
|
|
|
|
$query->bindValue($index, $param, $pdoConstant);
|
|
|
|
$index++;
|
2014-04-19 16:56:16 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-06 11:43:45 +03:00
|
|
|
$query->execute();
|
2015-03-18 11:25:22 +03:00
|
|
|
|
2015-02-24 18:39:25 +03:00
|
|
|
return $query;
|
2014-04-19 16:56:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an db result and throws exceptions when there are more or less
|
|
|
|
* results
|
|
|
|
* @see findEntity
|
|
|
|
* @param string $sql the sql query
|
|
|
|
* @param array $params the parameters of the sql query
|
|
|
|
* @param int $limit the maximum number of rows
|
|
|
|
* @param int $offset from which row we want to start
|
|
|
|
* @throws DoesNotExistException if the item does not exist
|
|
|
|
* @throws MultipleObjectsReturnedException if more than one item exist
|
|
|
|
* @return array the result as row
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 7.0.0
|
2014-04-19 16:56:16 +04:00
|
|
|
*/
|
2015-01-29 21:16:28 +03:00
|
|
|
protected function findOneQuery($sql, array $params=[], $limit=null, $offset=null){
|
|
|
|
$stmt = $this->execute($sql, $params, $limit, $offset);
|
|
|
|
$row = $stmt->fetch();
|
2014-04-19 16:56:16 +04:00
|
|
|
|
|
|
|
if($row === false || $row === null){
|
2015-01-29 21:16:28 +03:00
|
|
|
$stmt->closeCursor();
|
2016-04-04 11:55:46 +03:00
|
|
|
$msg = $this->buildDebugMessage(
|
|
|
|
'Did expect one result but found none when executing', $sql, $params, $limit, $offset
|
|
|
|
);
|
|
|
|
throw new DoesNotExistException($msg);
|
2014-04-19 16:56:16 +04:00
|
|
|
}
|
2015-01-29 21:16:28 +03:00
|
|
|
$row2 = $stmt->fetch();
|
|
|
|
$stmt->closeCursor();
|
2014-04-19 16:56:16 +04:00
|
|
|
//MDB2 returns null, PDO and doctrine false when no row is available
|
|
|
|
if( ! ($row2 === false || $row2 === null )) {
|
2016-04-04 11:55:46 +03:00
|
|
|
$msg = $this->buildDebugMessage(
|
|
|
|
'Did not expect more than one result when executing', $sql, $params, $limit, $offset
|
|
|
|
);
|
|
|
|
throw new MultipleObjectsReturnedException($msg);
|
2014-04-19 16:56:16 +04:00
|
|
|
} else {
|
|
|
|
return $row;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-04 11:55:46 +03:00
|
|
|
/**
|
|
|
|
* Builds an error message by prepending the $msg to an error message which
|
|
|
|
* has the parameters
|
|
|
|
* @see findEntity
|
|
|
|
* @param string $sql the sql query
|
|
|
|
* @param array $params the parameters of the sql query
|
|
|
|
* @param int $limit the maximum number of rows
|
|
|
|
* @param int $offset from which row we want to start
|
|
|
|
* @return string formatted error message string
|
|
|
|
* @since 9.1.0
|
|
|
|
*/
|
|
|
|
private function buildDebugMessage($msg, $sql, array $params=[], $limit=null, $offset=null) {
|
|
|
|
return $msg .
|
|
|
|
': query "' . $sql . '"; ' .
|
|
|
|
'parameters ' . print_r($params, true) . '; ' .
|
|
|
|
'limit "' . $limit . '"; '.
|
|
|
|
'offset "' . $offset . '"';
|
|
|
|
}
|
|
|
|
|
2014-04-19 16:56:16 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an entity from a row. Automatically determines the entity class
|
|
|
|
* from the current mapper name (MyEntityMapper -> MyEntity)
|
|
|
|
* @param array $row the row which should be converted to an entity
|
|
|
|
* @return Entity the entity
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 7.0.0
|
2014-04-19 16:56:16 +04:00
|
|
|
*/
|
|
|
|
protected function mapRowToEntity($row) {
|
|
|
|
return call_user_func($this->entityClass .'::fromRow', $row);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Runs a sql query and returns an array of entities
|
|
|
|
* @param string $sql the prepare string
|
|
|
|
* @param array $params the params which should replace the ? in the sql query
|
|
|
|
* @param int $limit the maximum number of rows
|
|
|
|
* @param int $offset from which row we want to start
|
|
|
|
* @return array all fetched entities
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 7.0.0
|
2014-04-19 16:56:16 +04:00
|
|
|
*/
|
2015-01-29 21:16:28 +03:00
|
|
|
protected function findEntities($sql, array $params=[], $limit=null, $offset=null) {
|
|
|
|
$stmt = $this->execute($sql, $params, $limit, $offset);
|
2014-04-19 16:56:16 +04:00
|
|
|
|
2015-01-29 21:16:28 +03:00
|
|
|
$entities = [];
|
|
|
|
|
|
|
|
while($row = $stmt->fetch()){
|
2014-04-19 16:56:16 +04:00
|
|
|
$entities[] = $this->mapRowToEntity($row);
|
|
|
|
}
|
|
|
|
|
2015-01-29 21:16:28 +03:00
|
|
|
$stmt->closeCursor();
|
|
|
|
|
2014-04-19 16:56:16 +04:00
|
|
|
return $entities;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an db result and throws exceptions when there are more or less
|
|
|
|
* results
|
|
|
|
* @param string $sql the sql query
|
|
|
|
* @param array $params the parameters of the sql query
|
|
|
|
* @param int $limit the maximum number of rows
|
|
|
|
* @param int $offset from which row we want to start
|
|
|
|
* @throws DoesNotExistException if the item does not exist
|
|
|
|
* @throws MultipleObjectsReturnedException if more than one item exist
|
|
|
|
* @return Entity the entity
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 7.0.0
|
2014-04-19 16:56:16 +04:00
|
|
|
*/
|
2015-01-29 21:16:28 +03:00
|
|
|
protected function findEntity($sql, array $params=[], $limit=null, $offset=null){
|
2014-04-19 16:56:16 +04:00
|
|
|
return $this->mapRowToEntity($this->findOneQuery($sql, $params, $limit, $offset));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|