nextcloud/lib/db/adapter.php

53 lines
1.3 KiB
PHP
Raw Normal View History

<?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;
class Adapter {
protected $conn;
public function __construct($conn) {
$this->conn = $conn;
}
2013-03-22 21:36:40 +04:00
public function lastInsertId($table) {
return $this->conn->realLastInsertId($table);
}
public function fixupStatement($statement) {
return $statement;
}
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 ';
foreach($input as $key => $value) {
$query .= '`' . $key . '` = ? AND ';
}
$query = substr($query, 0, strlen($query) - 5);
$query .= ' HAVING COUNT(*) = 0';
$inserts = array_values($input);
$inserts = array_merge($inserts, $inserts);
try {
2013-07-19 13:07:17 +04:00
$result = $this->conn->executeUpdate($query, $inserts);
} 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);
error_log('DB error: ' . $entry);
2013-07-19 01:57:15 +04:00
\OC_Template::printErrorPage( $entry );
}
return $result;
}
}