Skip to content
Snippets Groups Projects
Commit 1b08b7c7 authored by Thomas Müller's avatar Thomas Müller
Browse files

use insertIfNotExist() in cache put

parent 4e37831d
No related branches found
No related tags found
No related merge requests found
...@@ -243,13 +243,19 @@ class Cache { ...@@ -243,13 +243,19 @@ class Cache {
list($queryParts, $params) = $this->buildParts($data); list($queryParts, $params) = $this->buildParts($data);
$queryParts[] = '`storage`'; $queryParts[] = '`storage`';
$params[] = $this->getNumericStorageId(); $params[] = $this->getNumericStorageId();
$valuesPlaceholder = array_fill(0, count($queryParts), '?');
$sql = 'INSERT INTO `*PREFIX*filecache` (' . implode(', ', $queryParts) . ')' $params = array_map(function($item) {
. ' VALUES (' . implode(', ', $valuesPlaceholder) . ')'; return trim($item, "`");
\OC_DB::executeAudited($sql, $params); }, $params);
$queryParts = array_map(function($item) {
return trim($item, "`");
}, $queryParts);
$values = array_combine($queryParts, $params);
if (\OC::$server->getDatabaseConnection()->insertIfNotExist('*PREFIX*filecache', $values)) {
return (int)\OC_DB::insertid('*PREFIX*filecache');
}
return (int)\OC_DB::insertid('*PREFIX*filecache'); return $this->getId($file);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment