2011-12-08 23:04:56 +04:00
|
|
|
<?php
|
|
|
|
|
2012-01-08 14:01:25 +04:00
|
|
|
/**
|
|
|
|
* ownCloud - gallery application
|
|
|
|
*
|
|
|
|
* @author Bartek Przybylski
|
|
|
|
* @copyright 2012 Bartek Przybylski bart.p.pl@gmail.com
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2011-12-22 00:55:52 +04:00
|
|
|
class OC_Gallery_Album {
|
2012-01-08 03:14:34 +04:00
|
|
|
public static function create($owner, $name, $path){
|
|
|
|
$stmt = OC_DB::prepare('INSERT INTO *PREFIX*gallery_albums (uid_owner, album_name, album_path) VALUES (?, ?, ?)');
|
|
|
|
$stmt->execute(array($owner, $name, $path));
|
2011-12-08 23:04:56 +04:00
|
|
|
}
|
2011-12-22 00:55:52 +04:00
|
|
|
|
|
|
|
public static function rename($oldname, $newname, $owner) {
|
2012-01-20 22:32:08 +04:00
|
|
|
$stmt = OC_DB::prepare('UPDATE *PREFIX*gallery_albums SET album_name=? WHERE uid_owner=? AND album_name=?');
|
2011-12-22 00:55:52 +04:00
|
|
|
$stmt->execute(array($newname, $owner, $oldname));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function remove($owner, $name=null) {
|
|
|
|
$sql = 'DELETE FROM *PREFIX*gallery_albums WHERE uid_owner = ?';
|
|
|
|
$args = array($owner);
|
|
|
|
if (!is_null($name)){
|
|
|
|
$sql .= ' AND album_name = ?';
|
|
|
|
$args[] = $name;
|
|
|
|
}
|
|
|
|
$stmt = OC_DB::prepare($sql);
|
|
|
|
return $stmt->execute($args);
|
|
|
|
}
|
2012-01-14 17:59:18 +04:00
|
|
|
|
|
|
|
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']);
|
2012-01-15 14:51:01 +04:00
|
|
|
// 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']);
|
|
|
|
}
|
2012-01-14 17:59:18 +04:00
|
|
|
}
|
2011-12-22 00:55:52 +04:00
|
|
|
|
2012-01-08 03:14:34 +04:00
|
|
|
public static function find($owner, $name=null, $path=null){
|
2011-12-08 23:04:56 +04:00
|
|
|
$sql = 'SELECT * FROM *PREFIX*gallery_albums WHERE uid_owner = ?';
|
|
|
|
$args = array($owner);
|
|
|
|
if (!is_null($name)){
|
|
|
|
$sql .= ' AND album_name = ?';
|
|
|
|
$args[] = $name;
|
2012-01-08 03:14:34 +04:00
|
|
|
}
|
|
|
|
if (!is_null($path)){
|
|
|
|
$sql .= ' AND album_path = ?';
|
|
|
|
$args[] = $path;
|
|
|
|
}
|
2012-01-17 23:12:26 +04:00
|
|
|
$sql .= ' ORDER BY album_name ASC';
|
|
|
|
|
2011-12-08 23:04:56 +04:00
|
|
|
$stmt = OC_DB::prepare($sql);
|
|
|
|
return $stmt->execute($args);
|
|
|
|
}
|
2012-01-08 03:14:34 +04:00
|
|
|
|
2012-01-14 16:52:24 +04:00
|
|
|
public static function changePath($oldname, $newname, $owner) {
|
2012-01-20 22:32:08 +04:00
|
|
|
$stmt = OC_DB::prepare('UPDATE *PREFIX*gallery_albums SET album_path=? WHERE uid_owner=? AND album_path=?');
|
2012-01-14 16:52:24 +04:00
|
|
|
$stmt->execute(array($newname, $owner, $oldname));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function changeThumbnailPath($oldname, $newname) {
|
|
|
|
require_once('../../../lib/base.php');
|
|
|
|
$thumbpath = OC::$CONFIG_DATADIRECTORY.'/../gallery/';
|
|
|
|
rename($thumbpath.$oldname.'.png', $thumbpath.$newname.'.png');
|
|
|
|
}
|
|
|
|
|
2011-12-08 23:04:56 +04:00
|
|
|
}
|
2012-01-08 03:14:34 +04:00
|
|
|
|
|
|
|
?>
|