. * */ OCP\JSON::checkLoggedIn(); OCP\JSON::checkAppEnabled('gallery'); session_write_close(); require_once('apps/gallery/lib/managers.php'); $img = $_GET['filepath']; $image = \OC\Pictures\ThumbnailsManager::getInstance()->getThumbnail($img); if ($image) { OCP\Response::enableCaching(3600 * 24); // 24 hour $image->show(); }