summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorBartek Przybylski <bart.p.pl@gmail.com>2012-03-09 16:28:26 +0100
committerBartek Przybylski <bart.p.pl@gmail.com>2012-03-09 16:28:26 +0100
commit84d6c539702db2d0f50ea238c6312f51422bf19a (patch)
tree96fd6628404bf9f5a095a479ff1f16ccdce5c772 /apps
parent2582fe1c8914ae4fd04bb40b29e15fbc6f308a78 (diff)
downloadnextcloud-server-84d6c539702db2d0f50ea238c6312f51422bf19a.tar.gz
nextcloud-server-84d6c539702db2d0f50ea238c6312f51422bf19a.zip
filecache search comparition fix
Diffstat (limited to 'apps')
-rw-r--r--apps/gallery/lib/album.php58
-rw-r--r--apps/gallery/lib/scanner.php19
2 files changed, 34 insertions, 43 deletions
diff --git a/apps/gallery/lib/album.php b/apps/gallery/lib/album.php
index 5adb57b554d..6f492440ea1 100644
--- a/apps/gallery/lib/album.php
+++ b/apps/gallery/lib/album.php
@@ -4,33 +4,29 @@
* ownCloud - gallery application
*
* @author Bartek Przybylski
-* @copyright 2012 Bartek Przybylski bart.p.pl@gmail.com
-*
+* @copyright 2012 Bartek Przybylski <bartek@alefzero.eu>
+*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
-*
+*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
-*
+*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
-*
+*
*/
+require_once('base.php');
+
class OC_Gallery_Album {
public static function create($owner, $name, $path){
- $id = self::getParentPath($path);
$stmt = OC_DB::prepare('INSERT INTO *PREFIX*gallery_albums (uid_owner, album_name, album_path, parent_path) VALUES (?, ?, ?, ?)');
- $stmt->execute(array($owner, $name, $path, $id));
- }
-
- public static function rename($oldname, $newname, $owner) {
- $stmt = OC_DB::prepare('UPDATE *PREFIX*gallery_albums SET album_name=? WHERE uid_owner=? AND album_name=?');
- $stmt->execute(array($newname, $owner, $oldname));
+ $stmt->execute(array($owner, $name, $path, self::getParentPath($path)));
}
public static function cleanup() {
@@ -42,37 +38,31 @@ class OC_Gallery_Album {
}
public static function getParentPath($path) {
- if (strlen($path)==1) return '';
- $path = substr($path, 0, strrpos($path, '/'));
- if ($path == '') $path = '/';
- return $path;
+ return dirname($path);
}
- public static function remove($owner, $name=null) {
- $sql = 'DELETE FROM *PREFIX*gallery_albums WHERE uid_owner = ?';
+ public static function remove($owner, $name=null, $path=null, $parent=null) {
+ $sql = 'DELETE FROM *PREFIX*gallery_albums WHERE uid_owner LIKE ?';
$args = array($owner);
if (!is_null($name)){
- $sql .= ' AND album_name = ?';
+ $sql .= ' AND album_name LIKE ?';
$args[] = $name;
- }
+ }
+ if (!is_null($path)){
+ $sql .= ' AND album_path LIKE ?';
+ $args[] = $path;
+ }
+ if (!is_null($parent)){
+ $sql .= ' AND parent_path LIKE ?';
+ $args[] = $parent;
+ }
$stmt = OC_DB::prepare($sql);
return $stmt->execute($args);
}
- public static function removeByPath($path, $owner) {
- $album = self::find($owner, null, $path);
- $album = $album->fetchRow();
- self::remove($owner, $album['album_name']);
- OC_Gallery_Photo::removeByAlbumId($album['album_id']);
- // find and remove any gallery which might be stored lower in dir hierarchy
- $path = $path.'/%';
- $stmt = OC_DB::prepare('SELECT * FROM *PREFIX*gallery_albums WHERE album_path LIKE ? AND uid_owner = ?');
- $result = $stmt->execute(array($path, $owner));
- while (($album = $result->fetchRow())) {
- OC_Gallery_Photo::removeByAlbumId($album['album_id']);
- self::remove($owner, $album['album_name']);
- }
- }
+ public static function removeByName($owner, $name) { self::remove($ownmer, $name); }
+ public static function removeByPath($owner, $path) { self::remove($owner, null, $path); }
+ public static function removeByParentPath($owner, $parent) { self::remove($owner, null, null, $parent); }
public static function find($owner, $name=null, $path=null, $parent=null){
$sql = 'SELECT * FROM *PREFIX*gallery_albums WHERE uid_owner = ?';
diff --git a/apps/gallery/lib/scanner.php b/apps/gallery/lib/scanner.php
index dbe1abff10e..00ab7cf7181 100644
--- a/apps/gallery/lib/scanner.php
+++ b/apps/gallery/lib/scanner.php
@@ -4,7 +4,7 @@
* ownCloud - gallery application
*
* @author Bartek Przybylski
-* @copyright 2012 Bartek Przybylski bart.p.pl@gmail.com
+* @copyright 2012 Bartek Przybylski <bartek@alefzero.eu>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
@@ -21,11 +21,14 @@
*
*/
-require_once('base.php');
-require_once('images_utils.php');
+require_once('../../../lib/base.php');
class OC_Gallery_Scanner {
+ public static function getScanningRoot() {
+ return OC_Filesystem::getRoot().OC_Preferences::getValue(OC_User::getUser(), 'gallery', 'root', '/');
+ }
+
public static function scan($root) {
$albums = array();
self::scanDir($root, $albums);
@@ -33,10 +36,7 @@ class OC_Gallery_Scanner {
}
public static function cleanUp() {
- $stmt = OC_DB::prepare('DELETE FROM *PREFIX*gallery_albums');
- $stmt->execute(array());
- $stmt = OC_DB::prepare('DELETE FROM *PREFIX*gallery_photos');
- $stmt->execute(array());
+ OC_Gallery_Album::cleanup();
}
public static function createName($name) {
@@ -97,10 +97,10 @@ class OC_Gallery_Scanner {
}
public static function find_paths($path) {
- $images=OC_FileCache::searchByMime('image');
+ $images=OC_FileCache::searchByMime('image','', self::getScanningRoot());
$paths=array();
foreach($images as $image){
- $path=dirname($image);
+ $path=substr(dirname($image), strlen(self::getScanningRoot()));;
if(array_search($path,$paths)===false){
$paths[]=$path;
}
@@ -108,4 +108,5 @@ class OC_Gallery_Scanner {
return $paths;
}
}
+
?>