aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/files/cache/cache.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/files/cache/cache.php')
-rw-r--r--lib/private/files/cache/cache.php24
1 files changed, 21 insertions, 3 deletions
diff --git a/lib/private/files/cache/cache.php b/lib/private/files/cache/cache.php
index 48c57e2e439..72af474adf8 100644
--- a/lib/private/files/cache/cache.php
+++ b/lib/private/files/cache/cache.php
@@ -458,9 +458,27 @@ class Cache {
// normalize pattern
$pattern = $this->normalize($pattern);
- $sql = 'SELECT `fileid`, `storage`, `path`, `parent`, `name`, `mimetype`, `mimepart`, `size`, `mtime`, `encrypted`, `unencrypted_size`, `etag`, `permissions`
- FROM `*PREFIX*filecache` WHERE `name` LIKE ? AND `storage` = ?';
- $result = \OC_DB::executeAudited($sql, array($pattern, $this->getNumericStorageId()));
+
+ $sql = '
+ SELECT `fileid`, `storage`, `path`, `parent`, `name`,
+ `mimetype`, `mimepart`, `size`, `mtime`, `encrypted`,
+ `unencrypted_size`, `etag`, `permissions`
+ FROM `*PREFIX*filecache`
+ WHERE `storage` = ? AND ';
+ $dbtype = \OC_Config::getValue( 'dbtype', 'sqlite' );
+ if($dbtype === 'oci') {
+ //remove starting and ending % from the pattern
+ $pattern = '^'.str_replace('%', '.*', $pattern).'$';
+ $sql .= 'REGEXP_LIKE(`name`, ?, \'i\')';
+ } else if($dbtype === 'pgsql') {
+ $sql .= '`name` ILIKE ?';
+ } else {
+ $sql .= '`name` LIKE ?';
+ }
+ $result = \OC_DB::executeAudited($sql,
+ array($this->getNumericStorageId(), $pattern)
+ );
+
$files = array();
while ($row = $result->fetchRow()) {
$row['mimetype'] = $this->getMimetype($row['mimetype']);