@@ -36,43 +36,43 @@ |
||
36 | 36 | * @package OC\Files\Cache |
37 | 37 | */ |
38 | 38 | class StorageGlobal { |
39 | - /** @var IDBConnection */ |
|
40 | - private $connection; |
|
39 | + /** @var IDBConnection */ |
|
40 | + private $connection; |
|
41 | 41 | |
42 | - /** @var array[] */ |
|
43 | - private $cache = []; |
|
42 | + /** @var array[] */ |
|
43 | + private $cache = []; |
|
44 | 44 | |
45 | - public function __construct(IDBConnection $connection) { |
|
46 | - $this->connection = $connection; |
|
47 | - } |
|
45 | + public function __construct(IDBConnection $connection) { |
|
46 | + $this->connection = $connection; |
|
47 | + } |
|
48 | 48 | |
49 | - /** |
|
50 | - * @param string[] $storageIds |
|
51 | - */ |
|
52 | - public function loadForStorageIds(array $storageIds) { |
|
53 | - $builder = $this->connection->getQueryBuilder(); |
|
54 | - $query = $builder->select(['id', 'numeric_id', 'available', 'last_checked']) |
|
55 | - ->from('storages') |
|
56 | - ->where($builder->expr()->in('id', $builder->createNamedParameter(array_values($storageIds), IQueryBuilder::PARAM_STR_ARRAY))); |
|
49 | + /** |
|
50 | + * @param string[] $storageIds |
|
51 | + */ |
|
52 | + public function loadForStorageIds(array $storageIds) { |
|
53 | + $builder = $this->connection->getQueryBuilder(); |
|
54 | + $query = $builder->select(['id', 'numeric_id', 'available', 'last_checked']) |
|
55 | + ->from('storages') |
|
56 | + ->where($builder->expr()->in('id', $builder->createNamedParameter(array_values($storageIds), IQueryBuilder::PARAM_STR_ARRAY))); |
|
57 | 57 | |
58 | - $result = $query->execute(); |
|
59 | - while ($row = $result->fetch()) { |
|
60 | - $this->cache[$row['id']] = $row; |
|
61 | - } |
|
62 | - } |
|
58 | + $result = $query->execute(); |
|
59 | + while ($row = $result->fetch()) { |
|
60 | + $this->cache[$row['id']] = $row; |
|
61 | + } |
|
62 | + } |
|
63 | 63 | |
64 | - /** |
|
65 | - * @param string $storageId |
|
66 | - * @return array|null |
|
67 | - */ |
|
68 | - public function getStorageInfo($storageId) { |
|
69 | - if (!isset($this->cache[$storageId])) { |
|
70 | - $this->loadForStorageIds([$storageId]); |
|
71 | - } |
|
72 | - return isset($this->cache[$storageId]) ? $this->cache[$storageId] : null; |
|
73 | - } |
|
64 | + /** |
|
65 | + * @param string $storageId |
|
66 | + * @return array|null |
|
67 | + */ |
|
68 | + public function getStorageInfo($storageId) { |
|
69 | + if (!isset($this->cache[$storageId])) { |
|
70 | + $this->loadForStorageIds([$storageId]); |
|
71 | + } |
|
72 | + return isset($this->cache[$storageId]) ? $this->cache[$storageId] : null; |
|
73 | + } |
|
74 | 74 | |
75 | - public function clearCache() { |
|
76 | - $this->cache = []; |
|
77 | - } |
|
75 | + public function clearCache() { |
|
76 | + $this->cache = []; |
|
77 | + } |
|
78 | 78 | } |
@@ -29,60 +29,60 @@ |
||
29 | 29 | * Fallback implementation for moveFromCache |
30 | 30 | */ |
31 | 31 | trait MoveFromCacheTrait { |
32 | - /** |
|
33 | - * store meta data for a file or folder |
|
34 | - * |
|
35 | - * @param string $file |
|
36 | - * @param array $data |
|
37 | - * |
|
38 | - * @return int file id |
|
39 | - * @throws \RuntimeException |
|
40 | - */ |
|
41 | - abstract public function put($file, array $data); |
|
32 | + /** |
|
33 | + * store meta data for a file or folder |
|
34 | + * |
|
35 | + * @param string $file |
|
36 | + * @param array $data |
|
37 | + * |
|
38 | + * @return int file id |
|
39 | + * @throws \RuntimeException |
|
40 | + */ |
|
41 | + abstract public function put($file, array $data); |
|
42 | 42 | |
43 | - /** |
|
44 | - * Move a file or folder in the cache |
|
45 | - * |
|
46 | - * @param \OCP\Files\Cache\ICache $sourceCache |
|
47 | - * @param string $sourcePath |
|
48 | - * @param string $targetPath |
|
49 | - */ |
|
50 | - public function moveFromCache(ICache $sourceCache, $sourcePath, $targetPath) { |
|
51 | - $sourceEntry = $sourceCache->get($sourcePath); |
|
43 | + /** |
|
44 | + * Move a file or folder in the cache |
|
45 | + * |
|
46 | + * @param \OCP\Files\Cache\ICache $sourceCache |
|
47 | + * @param string $sourcePath |
|
48 | + * @param string $targetPath |
|
49 | + */ |
|
50 | + public function moveFromCache(ICache $sourceCache, $sourcePath, $targetPath) { |
|
51 | + $sourceEntry = $sourceCache->get($sourcePath); |
|
52 | 52 | |
53 | - $this->copyFromCache($sourceCache, $sourceEntry, $targetPath); |
|
53 | + $this->copyFromCache($sourceCache, $sourceEntry, $targetPath); |
|
54 | 54 | |
55 | - $sourceCache->remove($sourcePath); |
|
56 | - } |
|
55 | + $sourceCache->remove($sourcePath); |
|
56 | + } |
|
57 | 57 | |
58 | - /** |
|
59 | - * Copy a file or folder in the cache |
|
60 | - * |
|
61 | - * @param \OCP\Files\Cache\ICache $sourceCache |
|
62 | - * @param ICacheEntry $sourceEntry |
|
63 | - * @param string $targetPath |
|
64 | - */ |
|
65 | - public function copyFromCache(ICache $sourceCache, ICacheEntry $sourceEntry, $targetPath) { |
|
66 | - $this->put($targetPath, $this->cacheEntryToArray($sourceEntry)); |
|
67 | - if ($sourceEntry->getMimeType() === ICacheEntry::DIRECTORY_MIMETYPE) { |
|
68 | - $folderContent = $sourceCache->getFolderContentsById($sourceEntry->getId()); |
|
69 | - foreach ($folderContent as $subEntry) { |
|
70 | - $subTargetPath = $targetPath . '/' . $subEntry->getName(); |
|
71 | - $this->copyFromCache($sourceCache, $subEntry, $subTargetPath); |
|
72 | - } |
|
73 | - } |
|
74 | - } |
|
58 | + /** |
|
59 | + * Copy a file or folder in the cache |
|
60 | + * |
|
61 | + * @param \OCP\Files\Cache\ICache $sourceCache |
|
62 | + * @param ICacheEntry $sourceEntry |
|
63 | + * @param string $targetPath |
|
64 | + */ |
|
65 | + public function copyFromCache(ICache $sourceCache, ICacheEntry $sourceEntry, $targetPath) { |
|
66 | + $this->put($targetPath, $this->cacheEntryToArray($sourceEntry)); |
|
67 | + if ($sourceEntry->getMimeType() === ICacheEntry::DIRECTORY_MIMETYPE) { |
|
68 | + $folderContent = $sourceCache->getFolderContentsById($sourceEntry->getId()); |
|
69 | + foreach ($folderContent as $subEntry) { |
|
70 | + $subTargetPath = $targetPath . '/' . $subEntry->getName(); |
|
71 | + $this->copyFromCache($sourceCache, $subEntry, $subTargetPath); |
|
72 | + } |
|
73 | + } |
|
74 | + } |
|
75 | 75 | |
76 | - private function cacheEntryToArray(ICacheEntry $entry) { |
|
77 | - return [ |
|
78 | - 'size' => $entry->getSize(), |
|
79 | - 'mtime' => $entry->getMTime(), |
|
80 | - 'storage_mtime' => $entry->getStorageMTime(), |
|
81 | - 'mimetype' => $entry->getMimeType(), |
|
82 | - 'mimepart' => $entry->getMimePart(), |
|
83 | - 'etag' => $entry->getEtag(), |
|
84 | - 'permissions' => $entry->getPermissions(), |
|
85 | - 'encrypted' => $entry->isEncrypted() |
|
86 | - ]; |
|
87 | - } |
|
76 | + private function cacheEntryToArray(ICacheEntry $entry) { |
|
77 | + return [ |
|
78 | + 'size' => $entry->getSize(), |
|
79 | + 'mtime' => $entry->getMTime(), |
|
80 | + 'storage_mtime' => $entry->getStorageMTime(), |
|
81 | + 'mimetype' => $entry->getMimeType(), |
|
82 | + 'mimepart' => $entry->getMimePart(), |
|
83 | + 'etag' => $entry->getEtag(), |
|
84 | + 'permissions' => $entry->getPermissions(), |
|
85 | + 'encrypted' => $entry->isEncrypted() |
|
86 | + ]; |
|
87 | + } |
|
88 | 88 | } |
@@ -67,7 +67,7 @@ |
||
67 | 67 | if ($sourceEntry->getMimeType() === ICacheEntry::DIRECTORY_MIMETYPE) { |
68 | 68 | $folderContent = $sourceCache->getFolderContentsById($sourceEntry->getId()); |
69 | 69 | foreach ($folderContent as $subEntry) { |
70 | - $subTargetPath = $targetPath . '/' . $subEntry->getName(); |
|
70 | + $subTargetPath = $targetPath.'/'.$subEntry->getName(); |
|
71 | 71 | $this->copyFromCache($sourceCache, $subEntry, $subTargetPath); |
72 | 72 | } |
73 | 73 | } |
@@ -32,113 +32,113 @@ |
||
32 | 32 | */ |
33 | 33 | class Watcher implements IWatcher { |
34 | 34 | |
35 | - protected $watchPolicy = self::CHECK_ONCE; |
|
35 | + protected $watchPolicy = self::CHECK_ONCE; |
|
36 | 36 | |
37 | - protected $checkedPaths = array(); |
|
37 | + protected $checkedPaths = array(); |
|
38 | 38 | |
39 | - /** |
|
40 | - * @var \OC\Files\Storage\Storage $storage |
|
41 | - */ |
|
42 | - protected $storage; |
|
39 | + /** |
|
40 | + * @var \OC\Files\Storage\Storage $storage |
|
41 | + */ |
|
42 | + protected $storage; |
|
43 | 43 | |
44 | - /** |
|
45 | - * @var Cache $cache |
|
46 | - */ |
|
47 | - protected $cache; |
|
44 | + /** |
|
45 | + * @var Cache $cache |
|
46 | + */ |
|
47 | + protected $cache; |
|
48 | 48 | |
49 | - /** |
|
50 | - * @var Scanner $scanner ; |
|
51 | - */ |
|
52 | - protected $scanner; |
|
49 | + /** |
|
50 | + * @var Scanner $scanner ; |
|
51 | + */ |
|
52 | + protected $scanner; |
|
53 | 53 | |
54 | - /** |
|
55 | - * @param \OC\Files\Storage\Storage $storage |
|
56 | - */ |
|
57 | - public function __construct(\OC\Files\Storage\Storage $storage) { |
|
58 | - $this->storage = $storage; |
|
59 | - $this->cache = $storage->getCache(); |
|
60 | - $this->scanner = $storage->getScanner(); |
|
61 | - } |
|
54 | + /** |
|
55 | + * @param \OC\Files\Storage\Storage $storage |
|
56 | + */ |
|
57 | + public function __construct(\OC\Files\Storage\Storage $storage) { |
|
58 | + $this->storage = $storage; |
|
59 | + $this->cache = $storage->getCache(); |
|
60 | + $this->scanner = $storage->getScanner(); |
|
61 | + } |
|
62 | 62 | |
63 | - /** |
|
64 | - * @param int $policy either \OC\Files\Cache\Watcher::CHECK_NEVER, \OC\Files\Cache\Watcher::CHECK_ONCE, \OC\Files\Cache\Watcher::CHECK_ALWAYS |
|
65 | - */ |
|
66 | - public function setPolicy($policy) { |
|
67 | - $this->watchPolicy = $policy; |
|
68 | - } |
|
63 | + /** |
|
64 | + * @param int $policy either \OC\Files\Cache\Watcher::CHECK_NEVER, \OC\Files\Cache\Watcher::CHECK_ONCE, \OC\Files\Cache\Watcher::CHECK_ALWAYS |
|
65 | + */ |
|
66 | + public function setPolicy($policy) { |
|
67 | + $this->watchPolicy = $policy; |
|
68 | + } |
|
69 | 69 | |
70 | - /** |
|
71 | - * @return int either \OC\Files\Cache\Watcher::CHECK_NEVER, \OC\Files\Cache\Watcher::CHECK_ONCE, \OC\Files\Cache\Watcher::CHECK_ALWAYS |
|
72 | - */ |
|
73 | - public function getPolicy() { |
|
74 | - return $this->watchPolicy; |
|
75 | - } |
|
70 | + /** |
|
71 | + * @return int either \OC\Files\Cache\Watcher::CHECK_NEVER, \OC\Files\Cache\Watcher::CHECK_ONCE, \OC\Files\Cache\Watcher::CHECK_ALWAYS |
|
72 | + */ |
|
73 | + public function getPolicy() { |
|
74 | + return $this->watchPolicy; |
|
75 | + } |
|
76 | 76 | |
77 | - /** |
|
78 | - * check $path for updates and update if needed |
|
79 | - * |
|
80 | - * @param string $path |
|
81 | - * @param ICacheEntry|null $cachedEntry |
|
82 | - * @return boolean true if path was updated |
|
83 | - */ |
|
84 | - public function checkUpdate($path, $cachedEntry = null) { |
|
85 | - if (is_null($cachedEntry)) { |
|
86 | - $cachedEntry = $this->cache->get($path); |
|
87 | - } |
|
88 | - if ($this->needsUpdate($path, $cachedEntry)) { |
|
89 | - $this->update($path, $cachedEntry); |
|
90 | - return true; |
|
91 | - } else { |
|
92 | - return false; |
|
93 | - } |
|
94 | - } |
|
77 | + /** |
|
78 | + * check $path for updates and update if needed |
|
79 | + * |
|
80 | + * @param string $path |
|
81 | + * @param ICacheEntry|null $cachedEntry |
|
82 | + * @return boolean true if path was updated |
|
83 | + */ |
|
84 | + public function checkUpdate($path, $cachedEntry = null) { |
|
85 | + if (is_null($cachedEntry)) { |
|
86 | + $cachedEntry = $this->cache->get($path); |
|
87 | + } |
|
88 | + if ($this->needsUpdate($path, $cachedEntry)) { |
|
89 | + $this->update($path, $cachedEntry); |
|
90 | + return true; |
|
91 | + } else { |
|
92 | + return false; |
|
93 | + } |
|
94 | + } |
|
95 | 95 | |
96 | - /** |
|
97 | - * Update the cache for changes to $path |
|
98 | - * |
|
99 | - * @param string $path |
|
100 | - * @param ICacheEntry $cachedData |
|
101 | - */ |
|
102 | - public function update($path, $cachedData) { |
|
103 | - if ($this->storage->is_dir($path)) { |
|
104 | - $this->scanner->scan($path, Scanner::SCAN_SHALLOW); |
|
105 | - } else { |
|
106 | - $this->scanner->scanFile($path); |
|
107 | - } |
|
108 | - if ($cachedData['mimetype'] === 'httpd/unix-directory') { |
|
109 | - $this->cleanFolder($path); |
|
110 | - } |
|
111 | - if ($this->cache instanceof Cache) { |
|
112 | - $this->cache->correctFolderSize($path); |
|
113 | - } |
|
114 | - } |
|
96 | + /** |
|
97 | + * Update the cache for changes to $path |
|
98 | + * |
|
99 | + * @param string $path |
|
100 | + * @param ICacheEntry $cachedData |
|
101 | + */ |
|
102 | + public function update($path, $cachedData) { |
|
103 | + if ($this->storage->is_dir($path)) { |
|
104 | + $this->scanner->scan($path, Scanner::SCAN_SHALLOW); |
|
105 | + } else { |
|
106 | + $this->scanner->scanFile($path); |
|
107 | + } |
|
108 | + if ($cachedData['mimetype'] === 'httpd/unix-directory') { |
|
109 | + $this->cleanFolder($path); |
|
110 | + } |
|
111 | + if ($this->cache instanceof Cache) { |
|
112 | + $this->cache->correctFolderSize($path); |
|
113 | + } |
|
114 | + } |
|
115 | 115 | |
116 | - /** |
|
117 | - * Check if the cache for $path needs to be updated |
|
118 | - * |
|
119 | - * @param string $path |
|
120 | - * @param ICacheEntry $cachedData |
|
121 | - * @return bool |
|
122 | - */ |
|
123 | - public function needsUpdate($path, $cachedData) { |
|
124 | - if ($this->watchPolicy === self::CHECK_ALWAYS or ($this->watchPolicy === self::CHECK_ONCE and array_search($path, $this->checkedPaths) === false)) { |
|
125 | - $this->checkedPaths[] = $path; |
|
126 | - return $this->storage->hasUpdated($path, $cachedData['storage_mtime']); |
|
127 | - } |
|
128 | - return false; |
|
129 | - } |
|
116 | + /** |
|
117 | + * Check if the cache for $path needs to be updated |
|
118 | + * |
|
119 | + * @param string $path |
|
120 | + * @param ICacheEntry $cachedData |
|
121 | + * @return bool |
|
122 | + */ |
|
123 | + public function needsUpdate($path, $cachedData) { |
|
124 | + if ($this->watchPolicy === self::CHECK_ALWAYS or ($this->watchPolicy === self::CHECK_ONCE and array_search($path, $this->checkedPaths) === false)) { |
|
125 | + $this->checkedPaths[] = $path; |
|
126 | + return $this->storage->hasUpdated($path, $cachedData['storage_mtime']); |
|
127 | + } |
|
128 | + return false; |
|
129 | + } |
|
130 | 130 | |
131 | - /** |
|
132 | - * remove deleted files in $path from the cache |
|
133 | - * |
|
134 | - * @param string $path |
|
135 | - */ |
|
136 | - public function cleanFolder($path) { |
|
137 | - $cachedContent = $this->cache->getFolderContents($path); |
|
138 | - foreach ($cachedContent as $entry) { |
|
139 | - if (!$this->storage->file_exists($entry['path'])) { |
|
140 | - $this->cache->remove($entry['path']); |
|
141 | - } |
|
142 | - } |
|
143 | - } |
|
131 | + /** |
|
132 | + * remove deleted files in $path from the cache |
|
133 | + * |
|
134 | + * @param string $path |
|
135 | + */ |
|
136 | + public function cleanFolder($path) { |
|
137 | + $cachedContent = $this->cache->getFolderContents($path); |
|
138 | + foreach ($cachedContent as $entry) { |
|
139 | + if (!$this->storage->file_exists($entry['path'])) { |
|
140 | + $this->cache->remove($entry['path']); |
|
141 | + } |
|
142 | + } |
|
143 | + } |
|
144 | 144 | } |
@@ -51,19 +51,19 @@ |
||
51 | 51 | continue; |
52 | 52 | } |
53 | 53 | // create audio result |
54 | - if($fileData['mimepart'] === 'audio'){ |
|
54 | + if ($fileData['mimepart'] === 'audio') { |
|
55 | 55 | $result = new \OC\Search\Result\Audio($fileData); |
56 | 56 | } |
57 | 57 | // create image result |
58 | - elseif($fileData['mimepart'] === 'image'){ |
|
58 | + elseif ($fileData['mimepart'] === 'image') { |
|
59 | 59 | $result = new \OC\Search\Result\Image($fileData); |
60 | 60 | } |
61 | 61 | // create folder result |
62 | - elseif($fileData['mimetype'] === 'httpd/unix-directory'){ |
|
62 | + elseif ($fileData['mimetype'] === 'httpd/unix-directory') { |
|
63 | 63 | $result = new \OC\Search\Result\Folder($fileData); |
64 | 64 | } |
65 | 65 | // or create file result |
66 | - else{ |
|
66 | + else { |
|
67 | 67 | $result = new \OC\Search\Result\File($fileData); |
68 | 68 | } |
69 | 69 | // add to results |
@@ -32,45 +32,45 @@ |
||
32 | 32 | */ |
33 | 33 | class File extends \OCP\Search\Provider { |
34 | 34 | |
35 | - /** |
|
36 | - * Search for files and folders matching the given query |
|
37 | - * @param string $query |
|
38 | - * @return \OCP\Search\Result |
|
39 | - */ |
|
40 | - public function search($query) { |
|
41 | - $files = Filesystem::search($query); |
|
42 | - $results = array(); |
|
43 | - // edit results |
|
44 | - foreach ($files as $fileData) { |
|
45 | - // skip versions |
|
46 | - if (strpos($fileData['path'], '_versions') === 0) { |
|
47 | - continue; |
|
48 | - } |
|
49 | - // skip top-level folder |
|
50 | - if ($fileData['name'] === 'files' && $fileData['parent'] === -1) { |
|
51 | - continue; |
|
52 | - } |
|
53 | - // create audio result |
|
54 | - if($fileData['mimepart'] === 'audio'){ |
|
55 | - $result = new \OC\Search\Result\Audio($fileData); |
|
56 | - } |
|
57 | - // create image result |
|
58 | - elseif($fileData['mimepart'] === 'image'){ |
|
59 | - $result = new \OC\Search\Result\Image($fileData); |
|
60 | - } |
|
61 | - // create folder result |
|
62 | - elseif($fileData['mimetype'] === 'httpd/unix-directory'){ |
|
63 | - $result = new \OC\Search\Result\Folder($fileData); |
|
64 | - } |
|
65 | - // or create file result |
|
66 | - else{ |
|
67 | - $result = new \OC\Search\Result\File($fileData); |
|
68 | - } |
|
69 | - // add to results |
|
70 | - $results[] = $result; |
|
71 | - } |
|
72 | - // return |
|
73 | - return $results; |
|
74 | - } |
|
35 | + /** |
|
36 | + * Search for files and folders matching the given query |
|
37 | + * @param string $query |
|
38 | + * @return \OCP\Search\Result |
|
39 | + */ |
|
40 | + public function search($query) { |
|
41 | + $files = Filesystem::search($query); |
|
42 | + $results = array(); |
|
43 | + // edit results |
|
44 | + foreach ($files as $fileData) { |
|
45 | + // skip versions |
|
46 | + if (strpos($fileData['path'], '_versions') === 0) { |
|
47 | + continue; |
|
48 | + } |
|
49 | + // skip top-level folder |
|
50 | + if ($fileData['name'] === 'files' && $fileData['parent'] === -1) { |
|
51 | + continue; |
|
52 | + } |
|
53 | + // create audio result |
|
54 | + if($fileData['mimepart'] === 'audio'){ |
|
55 | + $result = new \OC\Search\Result\Audio($fileData); |
|
56 | + } |
|
57 | + // create image result |
|
58 | + elseif($fileData['mimepart'] === 'image'){ |
|
59 | + $result = new \OC\Search\Result\Image($fileData); |
|
60 | + } |
|
61 | + // create folder result |
|
62 | + elseif($fileData['mimetype'] === 'httpd/unix-directory'){ |
|
63 | + $result = new \OC\Search\Result\Folder($fileData); |
|
64 | + } |
|
65 | + // or create file result |
|
66 | + else{ |
|
67 | + $result = new \OC\Search\Result\File($fileData); |
|
68 | + } |
|
69 | + // add to results |
|
70 | + $results[] = $result; |
|
71 | + } |
|
72 | + // return |
|
73 | + return $results; |
|
74 | + } |
|
75 | 75 | |
76 | 76 | } |
@@ -29,13 +29,13 @@ |
||
29 | 29 | */ |
30 | 30 | class Image extends File { |
31 | 31 | |
32 | - /** |
|
33 | - * Type name; translated in templates |
|
34 | - * @var string |
|
35 | - */ |
|
36 | - public $type = 'image'; |
|
32 | + /** |
|
33 | + * Type name; translated in templates |
|
34 | + * @var string |
|
35 | + */ |
|
36 | + public $type = 'image'; |
|
37 | 37 | |
38 | - /** |
|
39 | - * @TODO add EXIF information |
|
40 | - */ |
|
38 | + /** |
|
39 | + * @TODO add EXIF information |
|
40 | + */ |
|
41 | 41 | } |
@@ -105,7 +105,7 @@ |
||
105 | 105 | * @param string $path |
106 | 106 | * @return string relative path |
107 | 107 | */ |
108 | - protected function getRelativePath ($path) { |
|
108 | + protected function getRelativePath($path) { |
|
109 | 109 | if (!isset(self::$userFolderCache)) { |
110 | 110 | $user = \OC::$server->getUserSession()->getUser()->getUID(); |
111 | 111 | self::$userFolderCache = \OC::$server->getUserFolder($user); |
@@ -32,85 +32,85 @@ |
||
32 | 32 | */ |
33 | 33 | class File extends \OCP\Search\Result { |
34 | 34 | |
35 | - /** |
|
36 | - * Type name; translated in templates |
|
37 | - * @var string |
|
38 | - */ |
|
39 | - public $type = 'file'; |
|
35 | + /** |
|
36 | + * Type name; translated in templates |
|
37 | + * @var string |
|
38 | + */ |
|
39 | + public $type = 'file'; |
|
40 | 40 | |
41 | - /** |
|
42 | - * Path to file |
|
43 | - * @var string |
|
44 | - */ |
|
45 | - public $path; |
|
41 | + /** |
|
42 | + * Path to file |
|
43 | + * @var string |
|
44 | + */ |
|
45 | + public $path; |
|
46 | 46 | |
47 | - /** |
|
48 | - * Size, in bytes |
|
49 | - * @var int |
|
50 | - */ |
|
51 | - public $size; |
|
47 | + /** |
|
48 | + * Size, in bytes |
|
49 | + * @var int |
|
50 | + */ |
|
51 | + public $size; |
|
52 | 52 | |
53 | - /** |
|
54 | - * Date modified, in human readable form |
|
55 | - * @var string |
|
56 | - */ |
|
57 | - public $modified; |
|
53 | + /** |
|
54 | + * Date modified, in human readable form |
|
55 | + * @var string |
|
56 | + */ |
|
57 | + public $modified; |
|
58 | 58 | |
59 | - /** |
|
60 | - * File mime type |
|
61 | - * @var string |
|
62 | - */ |
|
63 | - public $mime_type; |
|
59 | + /** |
|
60 | + * File mime type |
|
61 | + * @var string |
|
62 | + */ |
|
63 | + public $mime_type; |
|
64 | 64 | |
65 | - /** |
|
66 | - * File permissions: |
|
67 | - * |
|
68 | - * @var string |
|
69 | - */ |
|
70 | - public $permissions; |
|
65 | + /** |
|
66 | + * File permissions: |
|
67 | + * |
|
68 | + * @var string |
|
69 | + */ |
|
70 | + public $permissions; |
|
71 | 71 | |
72 | - /** |
|
73 | - * Create a new file search result |
|
74 | - * @param FileInfo $data file data given by provider |
|
75 | - */ |
|
76 | - public function __construct(FileInfo $data) { |
|
72 | + /** |
|
73 | + * Create a new file search result |
|
74 | + * @param FileInfo $data file data given by provider |
|
75 | + */ |
|
76 | + public function __construct(FileInfo $data) { |
|
77 | 77 | |
78 | - $path = $this->getRelativePath($data->getPath()); |
|
78 | + $path = $this->getRelativePath($data->getPath()); |
|
79 | 79 | |
80 | - $info = pathinfo($path); |
|
81 | - $this->id = $data->getId(); |
|
82 | - $this->name = $info['basename']; |
|
83 | - $this->link = \OC::$server->getURLGenerator()->linkToRoute( |
|
84 | - 'files.view.index', |
|
85 | - [ |
|
86 | - 'dir' => $info['dirname'], |
|
87 | - 'scrollto' => $info['basename'], |
|
88 | - ] |
|
89 | - ); |
|
90 | - $this->permissions = $data->getPermissions(); |
|
91 | - $this->path = $path; |
|
92 | - $this->size = $data->getSize(); |
|
93 | - $this->modified = $data->getMtime(); |
|
94 | - $this->mime_type = $data->getMimetype(); |
|
95 | - } |
|
80 | + $info = pathinfo($path); |
|
81 | + $this->id = $data->getId(); |
|
82 | + $this->name = $info['basename']; |
|
83 | + $this->link = \OC::$server->getURLGenerator()->linkToRoute( |
|
84 | + 'files.view.index', |
|
85 | + [ |
|
86 | + 'dir' => $info['dirname'], |
|
87 | + 'scrollto' => $info['basename'], |
|
88 | + ] |
|
89 | + ); |
|
90 | + $this->permissions = $data->getPermissions(); |
|
91 | + $this->path = $path; |
|
92 | + $this->size = $data->getSize(); |
|
93 | + $this->modified = $data->getMtime(); |
|
94 | + $this->mime_type = $data->getMimetype(); |
|
95 | + } |
|
96 | 96 | |
97 | - /** |
|
98 | - * @var Folder $userFolderCache |
|
99 | - */ |
|
100 | - static protected $userFolderCache = null; |
|
97 | + /** |
|
98 | + * @var Folder $userFolderCache |
|
99 | + */ |
|
100 | + static protected $userFolderCache = null; |
|
101 | 101 | |
102 | - /** |
|
103 | - * converts a path relative to the users files folder |
|
104 | - * eg /user/files/foo.txt -> /foo.txt |
|
105 | - * @param string $path |
|
106 | - * @return string relative path |
|
107 | - */ |
|
108 | - protected function getRelativePath ($path) { |
|
109 | - if (!isset(self::$userFolderCache)) { |
|
110 | - $user = \OC::$server->getUserSession()->getUser()->getUID(); |
|
111 | - self::$userFolderCache = \OC::$server->getUserFolder($user); |
|
112 | - } |
|
113 | - return self::$userFolderCache->getRelativePath($path); |
|
114 | - } |
|
102 | + /** |
|
103 | + * converts a path relative to the users files folder |
|
104 | + * eg /user/files/foo.txt -> /foo.txt |
|
105 | + * @param string $path |
|
106 | + * @return string relative path |
|
107 | + */ |
|
108 | + protected function getRelativePath ($path) { |
|
109 | + if (!isset(self::$userFolderCache)) { |
|
110 | + $user = \OC::$server->getUserSession()->getUser()->getUID(); |
|
111 | + self::$userFolderCache = \OC::$server->getUserFolder($user); |
|
112 | + } |
|
113 | + return self::$userFolderCache->getRelativePath($path); |
|
114 | + } |
|
115 | 115 | |
116 | 116 | } |
@@ -29,13 +29,13 @@ |
||
29 | 29 | */ |
30 | 30 | class Audio extends File { |
31 | 31 | |
32 | - /** |
|
33 | - * Type name; translated in templates |
|
34 | - * @var string |
|
35 | - */ |
|
36 | - public $type = 'audio'; |
|
32 | + /** |
|
33 | + * Type name; translated in templates |
|
34 | + * @var string |
|
35 | + */ |
|
36 | + public $type = 'audio'; |
|
37 | 37 | |
38 | - /** |
|
39 | - * @TODO add ID3 information |
|
40 | - */ |
|
38 | + /** |
|
39 | + * @TODO add ID3 information |
|
40 | + */ |
|
41 | 41 | } |
@@ -29,10 +29,10 @@ |
||
29 | 29 | */ |
30 | 30 | class Folder extends File { |
31 | 31 | |
32 | - /** |
|
33 | - * Type name; translated in templates |
|
34 | - * @var string |
|
35 | - */ |
|
36 | - public $type = 'folder'; |
|
32 | + /** |
|
33 | + * Type name; translated in templates |
|
34 | + * @var string |
|
35 | + */ |
|
36 | + public $type = 'folder'; |
|
37 | 37 | |
38 | 38 | } |
@@ -89,17 +89,17 @@ discard block |
||
89 | 89 | * @throws QueryException if the class could not be found or instantiated |
90 | 90 | */ |
91 | 91 | public function resolve($name) { |
92 | - $baseMsg = 'Could not resolve ' . $name . '!'; |
|
92 | + $baseMsg = 'Could not resolve '.$name.'!'; |
|
93 | 93 | try { |
94 | 94 | $class = new ReflectionClass($name); |
95 | 95 | if ($class->isInstantiable()) { |
96 | 96 | return $this->buildClass($class); |
97 | 97 | } else { |
98 | - throw new QueryException($baseMsg . |
|
98 | + throw new QueryException($baseMsg. |
|
99 | 99 | ' Class can not be instantiated'); |
100 | 100 | } |
101 | - } catch(ReflectionException $e) { |
|
102 | - throw new QueryException($baseMsg . ' ' . $e->getMessage()); |
|
101 | + } catch (ReflectionException $e) { |
|
102 | + throw new QueryException($baseMsg.' '.$e->getMessage()); |
|
103 | 103 | } |
104 | 104 | } |
105 | 105 | |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | return $this->offsetGet($name); |
116 | 116 | } else { |
117 | 117 | $object = $this->resolve($name); |
118 | - $this->registerService($name, function () use ($object) { |
|
118 | + $this->registerService($name, function() use ($object) { |
|
119 | 119 | return $object; |
120 | 120 | }); |
121 | 121 | return $object; |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | */ |
142 | 142 | public function registerService($name, Closure $closure, $shared = true) { |
143 | 143 | $name = $this->sanitizeName($name); |
144 | - if (isset($this[$name])) { |
|
144 | + if (isset($this[$name])) { |
|
145 | 145 | unset($this[$name]); |
146 | 146 | } |
147 | 147 | if ($shared) { |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | * @param string $target the target that should be resolved instead |
160 | 160 | */ |
161 | 161 | public function registerAlias($alias, $target) { |
162 | - $this->registerService($alias, function (IContainer $container) use ($target) { |
|
162 | + $this->registerService($alias, function(IContainer $container) use ($target) { |
|
163 | 163 | return $container->query($target); |
164 | 164 | }, false); |
165 | 165 | } |
@@ -43,137 +43,137 @@ |
||
43 | 43 | class SimpleContainer extends Container implements IContainer { |
44 | 44 | |
45 | 45 | |
46 | - /** |
|
47 | - * @param ReflectionClass $class the class to instantiate |
|
48 | - * @return \stdClass the created class |
|
49 | - * @suppress PhanUndeclaredClassInstanceof |
|
50 | - */ |
|
51 | - private function buildClass(ReflectionClass $class) { |
|
52 | - $constructor = $class->getConstructor(); |
|
53 | - if ($constructor === null) { |
|
54 | - return $class->newInstance(); |
|
55 | - } else { |
|
56 | - $parameters = []; |
|
57 | - foreach ($constructor->getParameters() as $parameter) { |
|
58 | - $parameterClass = $parameter->getClass(); |
|
46 | + /** |
|
47 | + * @param ReflectionClass $class the class to instantiate |
|
48 | + * @return \stdClass the created class |
|
49 | + * @suppress PhanUndeclaredClassInstanceof |
|
50 | + */ |
|
51 | + private function buildClass(ReflectionClass $class) { |
|
52 | + $constructor = $class->getConstructor(); |
|
53 | + if ($constructor === null) { |
|
54 | + return $class->newInstance(); |
|
55 | + } else { |
|
56 | + $parameters = []; |
|
57 | + foreach ($constructor->getParameters() as $parameter) { |
|
58 | + $parameterClass = $parameter->getClass(); |
|
59 | 59 | |
60 | - // try to find out if it is a class or a simple parameter |
|
61 | - if ($parameterClass === null) { |
|
62 | - $resolveName = $parameter->getName(); |
|
63 | - } else { |
|
64 | - $resolveName = $parameterClass->name; |
|
65 | - } |
|
60 | + // try to find out if it is a class or a simple parameter |
|
61 | + if ($parameterClass === null) { |
|
62 | + $resolveName = $parameter->getName(); |
|
63 | + } else { |
|
64 | + $resolveName = $parameterClass->name; |
|
65 | + } |
|
66 | 66 | |
67 | - try { |
|
68 | - $parameters[] = $this->query($resolveName); |
|
69 | - } catch (QueryException $e) { |
|
70 | - // Service not found, use the default value when available |
|
71 | - if ($parameter->isDefaultValueAvailable()) { |
|
72 | - $parameters[] = $parameter->getDefaultValue(); |
|
73 | - } else if ($parameterClass !== null) { |
|
74 | - $resolveName = $parameter->getName(); |
|
75 | - $parameters[] = $this->query($resolveName); |
|
76 | - } else { |
|
77 | - throw $e; |
|
78 | - } |
|
79 | - } |
|
80 | - } |
|
81 | - return $class->newInstanceArgs($parameters); |
|
82 | - } |
|
83 | - } |
|
67 | + try { |
|
68 | + $parameters[] = $this->query($resolveName); |
|
69 | + } catch (QueryException $e) { |
|
70 | + // Service not found, use the default value when available |
|
71 | + if ($parameter->isDefaultValueAvailable()) { |
|
72 | + $parameters[] = $parameter->getDefaultValue(); |
|
73 | + } else if ($parameterClass !== null) { |
|
74 | + $resolveName = $parameter->getName(); |
|
75 | + $parameters[] = $this->query($resolveName); |
|
76 | + } else { |
|
77 | + throw $e; |
|
78 | + } |
|
79 | + } |
|
80 | + } |
|
81 | + return $class->newInstanceArgs($parameters); |
|
82 | + } |
|
83 | + } |
|
84 | 84 | |
85 | 85 | |
86 | - /** |
|
87 | - * If a parameter is not registered in the container try to instantiate it |
|
88 | - * by using reflection to find out how to build the class |
|
89 | - * @param string $name the class name to resolve |
|
90 | - * @return \stdClass |
|
91 | - * @throws QueryException if the class could not be found or instantiated |
|
92 | - */ |
|
93 | - public function resolve($name) { |
|
94 | - $baseMsg = 'Could not resolve ' . $name . '!'; |
|
95 | - try { |
|
96 | - $class = new ReflectionClass($name); |
|
97 | - if ($class->isInstantiable()) { |
|
98 | - return $this->buildClass($class); |
|
99 | - } else { |
|
100 | - throw new QueryException($baseMsg . |
|
101 | - ' Class can not be instantiated'); |
|
102 | - } |
|
103 | - } catch(ReflectionException $e) { |
|
104 | - throw new QueryException($baseMsg . ' ' . $e->getMessage()); |
|
105 | - } |
|
106 | - } |
|
86 | + /** |
|
87 | + * If a parameter is not registered in the container try to instantiate it |
|
88 | + * by using reflection to find out how to build the class |
|
89 | + * @param string $name the class name to resolve |
|
90 | + * @return \stdClass |
|
91 | + * @throws QueryException if the class could not be found or instantiated |
|
92 | + */ |
|
93 | + public function resolve($name) { |
|
94 | + $baseMsg = 'Could not resolve ' . $name . '!'; |
|
95 | + try { |
|
96 | + $class = new ReflectionClass($name); |
|
97 | + if ($class->isInstantiable()) { |
|
98 | + return $this->buildClass($class); |
|
99 | + } else { |
|
100 | + throw new QueryException($baseMsg . |
|
101 | + ' Class can not be instantiated'); |
|
102 | + } |
|
103 | + } catch(ReflectionException $e) { |
|
104 | + throw new QueryException($baseMsg . ' ' . $e->getMessage()); |
|
105 | + } |
|
106 | + } |
|
107 | 107 | |
108 | 108 | |
109 | - /** |
|
110 | - * @param string $name name of the service to query for |
|
111 | - * @return mixed registered service for the given $name |
|
112 | - * @throws QueryException if the query could not be resolved |
|
113 | - */ |
|
114 | - public function query($name) { |
|
115 | - $name = $this->sanitizeName($name); |
|
116 | - if ($this->offsetExists($name)) { |
|
117 | - return $this->offsetGet($name); |
|
118 | - } else { |
|
119 | - $object = $this->resolve($name); |
|
120 | - $this->registerService($name, function () use ($object) { |
|
121 | - return $object; |
|
122 | - }); |
|
123 | - return $object; |
|
124 | - } |
|
125 | - } |
|
109 | + /** |
|
110 | + * @param string $name name of the service to query for |
|
111 | + * @return mixed registered service for the given $name |
|
112 | + * @throws QueryException if the query could not be resolved |
|
113 | + */ |
|
114 | + public function query($name) { |
|
115 | + $name = $this->sanitizeName($name); |
|
116 | + if ($this->offsetExists($name)) { |
|
117 | + return $this->offsetGet($name); |
|
118 | + } else { |
|
119 | + $object = $this->resolve($name); |
|
120 | + $this->registerService($name, function () use ($object) { |
|
121 | + return $object; |
|
122 | + }); |
|
123 | + return $object; |
|
124 | + } |
|
125 | + } |
|
126 | 126 | |
127 | - /** |
|
128 | - * @param string $name |
|
129 | - * @param mixed $value |
|
130 | - */ |
|
131 | - public function registerParameter($name, $value) { |
|
132 | - $this[$name] = $value; |
|
133 | - } |
|
127 | + /** |
|
128 | + * @param string $name |
|
129 | + * @param mixed $value |
|
130 | + */ |
|
131 | + public function registerParameter($name, $value) { |
|
132 | + $this[$name] = $value; |
|
133 | + } |
|
134 | 134 | |
135 | - /** |
|
136 | - * The given closure is call the first time the given service is queried. |
|
137 | - * The closure has to return the instance for the given service. |
|
138 | - * Created instance will be cached in case $shared is true. |
|
139 | - * |
|
140 | - * @param string $name name of the service to register another backend for |
|
141 | - * @param Closure $closure the closure to be called on service creation |
|
142 | - * @param bool $shared |
|
143 | - */ |
|
144 | - public function registerService($name, Closure $closure, $shared = true) { |
|
145 | - $name = $this->sanitizeName($name); |
|
146 | - if (isset($this[$name])) { |
|
147 | - unset($this[$name]); |
|
148 | - } |
|
149 | - if ($shared) { |
|
150 | - $this[$name] = $closure; |
|
151 | - } else { |
|
152 | - $this[$name] = parent::factory($closure); |
|
153 | - } |
|
154 | - } |
|
135 | + /** |
|
136 | + * The given closure is call the first time the given service is queried. |
|
137 | + * The closure has to return the instance for the given service. |
|
138 | + * Created instance will be cached in case $shared is true. |
|
139 | + * |
|
140 | + * @param string $name name of the service to register another backend for |
|
141 | + * @param Closure $closure the closure to be called on service creation |
|
142 | + * @param bool $shared |
|
143 | + */ |
|
144 | + public function registerService($name, Closure $closure, $shared = true) { |
|
145 | + $name = $this->sanitizeName($name); |
|
146 | + if (isset($this[$name])) { |
|
147 | + unset($this[$name]); |
|
148 | + } |
|
149 | + if ($shared) { |
|
150 | + $this[$name] = $closure; |
|
151 | + } else { |
|
152 | + $this[$name] = parent::factory($closure); |
|
153 | + } |
|
154 | + } |
|
155 | 155 | |
156 | - /** |
|
157 | - * Shortcut for returning a service from a service under a different key, |
|
158 | - * e.g. to tell the container to return a class when queried for an |
|
159 | - * interface |
|
160 | - * @param string $alias the alias that should be registered |
|
161 | - * @param string $target the target that should be resolved instead |
|
162 | - */ |
|
163 | - public function registerAlias($alias, $target) { |
|
164 | - $this->registerService($alias, function (IContainer $container) use ($target) { |
|
165 | - return $container->query($target); |
|
166 | - }, false); |
|
167 | - } |
|
156 | + /** |
|
157 | + * Shortcut for returning a service from a service under a different key, |
|
158 | + * e.g. to tell the container to return a class when queried for an |
|
159 | + * interface |
|
160 | + * @param string $alias the alias that should be registered |
|
161 | + * @param string $target the target that should be resolved instead |
|
162 | + */ |
|
163 | + public function registerAlias($alias, $target) { |
|
164 | + $this->registerService($alias, function (IContainer $container) use ($target) { |
|
165 | + return $container->query($target); |
|
166 | + }, false); |
|
167 | + } |
|
168 | 168 | |
169 | - /* |
|
169 | + /* |
|
170 | 170 | * @param string $name |
171 | 171 | * @return string |
172 | 172 | */ |
173 | - protected function sanitizeName($name) { |
|
174 | - if (isset($name[0]) && $name[0] === '\\') { |
|
175 | - return ltrim($name, '\\'); |
|
176 | - } |
|
177 | - return $name; |
|
178 | - } |
|
173 | + protected function sanitizeName($name) { |
|
174 | + if (isset($name[0]) && $name[0] === '\\') { |
|
175 | + return ltrim($name, '\\'); |
|
176 | + } |
|
177 | + return $name; |
|
178 | + } |
|
179 | 179 | } |