2013-02-25 11:19:49 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\DB;
|
|
|
|
|
2013-07-23 20:09:38 +04:00
|
|
|
/**
|
|
|
|
* This handles the way we use to write queries, into something that can be
|
|
|
|
* handled by the database abstraction layer.
|
|
|
|
*/
|
2013-02-25 11:19:49 +04:00
|
|
|
class Adapter {
|
2013-08-02 21:53:04 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \OC\DB\Connection $conn
|
|
|
|
*/
|
2013-02-25 11:19:49 +04:00
|
|
|
protected $conn;
|
|
|
|
|
|
|
|
public function __construct($conn) {
|
|
|
|
$this->conn = $conn;
|
|
|
|
}
|
2013-03-22 21:36:40 +04:00
|
|
|
|
2013-07-23 20:09:38 +04:00
|
|
|
/**
|
|
|
|
* @param string $table name
|
|
|
|
* @return int id of last insert statement
|
|
|
|
*/
|
2013-03-22 21:36:40 +04:00
|
|
|
public function lastInsertId($table) {
|
|
|
|
return $this->conn->realLastInsertId($table);
|
|
|
|
}
|
2013-02-26 01:49:55 +04:00
|
|
|
|
2013-07-23 20:09:38 +04:00
|
|
|
/**
|
2013-08-02 21:53:04 +04:00
|
|
|
* @param string $statement that needs to be changed so the db can handle it
|
2013-07-23 20:09:38 +04:00
|
|
|
* @return string changed statement
|
|
|
|
*/
|
2013-02-26 01:49:55 +04:00
|
|
|
public function fixupStatement($statement) {
|
|
|
|
return $statement;
|
|
|
|
}
|
2013-02-26 11:30:42 +04:00
|
|
|
|
2013-07-23 20:09:38 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* insert the @input values when they do not exist yet
|
2013-07-23 20:09:38 +04:00
|
|
|
* @param string $table name
|
2014-10-17 13:06:49 +04:00
|
|
|
* @param array $input key->value pair, key has to be sanitized properly
|
2013-08-02 21:53:04 +04:00
|
|
|
* @return int count of inserted rows
|
2013-07-23 20:09:38 +04:00
|
|
|
*/
|
2013-02-26 11:30:42 +04:00
|
|
|
public function insertIfNotExist($table, $input) {
|
|
|
|
$query = 'INSERT INTO `' .$table . '` (`'
|
|
|
|
. implode('`,`', array_keys($input)) . '`) SELECT '
|
|
|
|
. str_repeat('?,', count($input)-1).'? ' // Is there a prettier alternative?
|
|
|
|
. 'FROM `' . $table . '` WHERE ';
|
|
|
|
|
2013-08-23 18:30:41 +04:00
|
|
|
$inserts = array_values($input);
|
2013-02-26 11:30:42 +04:00
|
|
|
foreach($input as $key => $value) {
|
2013-08-23 18:30:41 +04:00
|
|
|
$query .= '`' . $key . '`';
|
|
|
|
if (is_null($value)) {
|
|
|
|
$query .= ' IS NULL AND ';
|
|
|
|
} else {
|
|
|
|
$inserts[] = $value;
|
|
|
|
$query .= ' = ? AND ';
|
|
|
|
}
|
2013-02-26 11:30:42 +04:00
|
|
|
}
|
|
|
|
$query = substr($query, 0, strlen($query) - 5);
|
|
|
|
$query .= ' HAVING COUNT(*) = 0';
|
|
|
|
|
|
|
|
try {
|
2013-08-02 21:53:04 +04:00
|
|
|
return $this->conn->executeUpdate($query, $inserts);
|
2013-02-26 11:30:42 +04:00
|
|
|
} catch(\Doctrine\DBAL\DBALException $e) {
|
|
|
|
$entry = 'DB Error: "'.$e->getMessage() . '"<br />';
|
|
|
|
$entry .= 'Offending command was: ' . $query.'<br />';
|
2013-07-19 01:57:15 +04:00
|
|
|
\OC_Log::write('core', $entry, \OC_Log::FATAL);
|
2013-02-26 11:30:42 +04:00
|
|
|
error_log('DB error: ' . $entry);
|
2013-07-19 01:57:15 +04:00
|
|
|
\OC_Template::printErrorPage( $entry );
|
2013-02-26 11:30:42 +04:00
|
|
|
}
|
|
|
|
}
|
2013-02-25 11:19:49 +04:00
|
|
|
}
|