public function preFile_put_contents($path, &$data) { if (self::shouldEncrypt($path)) { if (!is_resource($data)) { //stream put contents should have been converter to fopen $data = OC_Crypt::blockEncrypt($data); OC_FileCache::put($path, array('encrypted' => true)); } } }
public function stream_close() { $this->flush(); if ($this->meta['mode'] != 'r' and $this->meta['mode'] != 'rb') { OC_FileCache::put($this->path, array('encrypted' => true)); } return fclose($this->source); }
/** * update the filecache according to changes to the filesystem * @param string path * @param string root (optional) */ public static function update($path, $root = false) { if ($root === false) { $view = OC_Filesystem::getView(); } else { $view = new OC_FilesystemView($root); } $mimetype = $view->getMimeType($path); $size = 0; $cached = OC_FileCache_Cached::get($path, $root); $cachedSize = isset($cached['size']) ? $cached['size'] : 0; if ($view->is_dir($path . '/')) { if (OC_FileCache::inCache($path, $root)) { $cachedContent = OC_FileCache_Cached::getFolderContent($path, $root); foreach ($cachedContent as $file) { $size += $file['size']; } $mtime = $view->filemtime($path . '/'); $ctime = $view->filectime($path . '/'); $writable = $view->is_writable($path . '/'); OC_FileCache::put($path, array('size' => $size, 'mtime' => $mtime, 'ctime' => $ctime, 'mimetype' => $mimetype, 'writable' => $writable)); } else { $count = 0; OC_FileCache::scan($path, null, $count, $root); return; //increaseSize is already called inside scan } } else { $size = OC_FileCache::scanFile($path, $root); } OC_FileCache::increaseSize(dirname($path), $size - $cachedSize, $root); }