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
|
2012-03-11 23:00:50 +04:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2012-01-08 14:01:25 +04:00
|
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
2012-03-11 23:00:50 +04:00
|
|
|
*
|
2012-01-08 14:01:25 +04:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-03-11 23:00:50 +04:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2012-01-08 14:01:25 +04:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-02-08 01:33:47 +04:00
|
|
|
class OC_Gallery_Photo {
|
2011-12-08 23:04:56 +04:00
|
|
|
public static function create($albumId, $img){
|
2012-05-03 15:06:08 +04:00
|
|
|
$stmt = OCP\DB::prepare('INSERT INTO *PREFIX*gallery_photos (album_id, file_path) VALUES (?, ?)');
|
2011-12-08 23:04:56 +04:00
|
|
|
$stmt->execute(array($albumId, $img));
|
|
|
|
}
|
|
|
|
public static function find($albumId, $img=null){
|
|
|
|
$sql = 'SELECT * FROM *PREFIX*gallery_photos WHERE album_id = ?';
|
|
|
|
$args = array($albumId);
|
|
|
|
if (!is_null($img)){
|
|
|
|
$sql .= ' AND file_path = ?';
|
|
|
|
$args[] = $img;
|
|
|
|
}
|
2012-05-03 15:06:08 +04:00
|
|
|
$stmt = OCP\DB::prepare($sql);
|
2011-12-08 23:04:56 +04:00
|
|
|
return $stmt->execute($args);
|
|
|
|
}
|
|
|
|
public static function findForAlbum($owner, $album_name){
|
2012-05-03 15:06:08 +04:00
|
|
|
$stmt = OCP\DB::prepare('SELECT *'
|
2011-12-08 23:04:56 +04:00
|
|
|
.' FROM *PREFIX*gallery_photos photos,'
|
|
|
|
.' *PREFIX*gallery_albums albums'
|
|
|
|
.' WHERE albums.uid_owner = ?'
|
|
|
|
.' AND albums.album_name = ?'
|
|
|
|
.' AND photos.album_id = albums.album_id');
|
|
|
|
return $stmt->execute(array($owner, $album_name));
|
|
|
|
}
|
2012-01-08 03:14:34 +04:00
|
|
|
|
2012-05-01 12:06:40 +04:00
|
|
|
public static function removeByPath($path, $album_id) {
|
2012-05-03 15:06:08 +04:00
|
|
|
$stmt = OCP\DB::prepare('DELETE FROM *PREFIX*gallery_photos WHERE file_path LIKE ? and album_id = ?');
|
2012-05-01 12:06:40 +04:00
|
|
|
$stmt->execute(array($path, $album_id));
|
2012-03-11 23:00:50 +04:00
|
|
|
}
|
2012-01-08 04:32:11 +04:00
|
|
|
|
2012-03-11 23:00:50 +04:00
|
|
|
public static function removeById($id) {
|
2012-05-03 15:06:08 +04:00
|
|
|
$stmt = OCP\DB::prepare('DELETE FROM *PREFIX*gallery_photos WHERE photo_id = ?');
|
2012-03-11 23:00:50 +04:00
|
|
|
$stmt->execute(array($id));
|
|
|
|
}
|
2012-01-08 04:32:11 +04:00
|
|
|
|
2012-03-11 23:00:50 +04:00
|
|
|
public static function removeByAlbumId($albumid) {
|
2012-05-03 15:06:08 +04:00
|
|
|
$stmt = OCP\DB::prepare('DELETE FROM *PREFIX*gallery_photos WHERE album_id = ?');
|
2012-03-11 23:00:50 +04:00
|
|
|
$stmt->execute(array($albumid));
|
|
|
|
}
|
2012-01-14 17:59:18 +04:00
|
|
|
|
2012-03-11 23:00:50 +04:00
|
|
|
public static function changePath($oldAlbumId, $newAlbumId, $oldpath, $newpath) {
|
2012-05-03 15:06:08 +04:00
|
|
|
$stmt = OCP\DB::prepare("UPDATE *PREFIX*gallery_photos SET file_path = ?, album_id = ? WHERE album_id = ? and file_path = ?");
|
2012-03-11 23:00:50 +04:00
|
|
|
$stmt->execute(array($newpath, $newAlbumId, $oldAlbumId, $oldpath));
|
|
|
|
}
|
2012-01-08 03:14:34 +04:00
|
|
|
|
2012-03-27 00:40:38 +04:00
|
|
|
public static function getThumbnail($image_name, $owner = null) {
|
2012-05-01 20:50:31 +04:00
|
|
|
if (!$owner) $owner = OCP\USER::getUser();
|
2012-05-02 15:28:56 +04:00
|
|
|
$save_dir = OCP\Config::getSystemValue("datadirectory").'/'. $owner .'/gallery/';
|
2012-02-08 01:33:47 +04:00
|
|
|
$save_dir .= dirname($image_name). '/';
|
2012-03-11 23:00:50 +04:00
|
|
|
$image_path = $image_name;
|
|
|
|
$thumb_file = $save_dir . basename($image_name);
|
2012-03-27 01:53:48 +04:00
|
|
|
if (!is_dir($save_dir)) {
|
|
|
|
mkdir($save_dir, 0777, true);
|
|
|
|
}
|
2012-02-08 01:33:47 +04:00
|
|
|
if (file_exists($thumb_file)) {
|
|
|
|
$image = new OC_Image($thumb_file);
|
|
|
|
} else {
|
2012-03-11 23:00:50 +04:00
|
|
|
$image_path = OC_Filesystem::getLocalFile($image_path);
|
|
|
|
if(!file_exists($image_path)) {
|
2012-02-14 01:39:30 +04:00
|
|
|
return null;
|
|
|
|
}
|
2012-03-11 23:00:50 +04:00
|
|
|
$image = new OC_Image($image_path);
|
2012-02-08 01:33:47 +04:00
|
|
|
if ($image->valid()) {
|
2012-03-27 01:53:48 +04:00
|
|
|
$image->centerCrop(200);
|
2012-02-08 01:33:47 +04:00
|
|
|
$image->fixOrientation();
|
|
|
|
$image->save($thumb_file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($image->valid()) {
|
|
|
|
return $image;
|
2012-03-27 01:53:48 +04:00
|
|
|
}else{
|
|
|
|
$image->destroy();
|
2012-02-08 01:33:47 +04:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
2012-03-11 19:49:21 +04:00
|
|
|
|
2012-03-11 23:00:50 +04:00
|
|
|
public static function getGalleryRoot() {
|
2012-05-02 17:54:34 +04:00
|
|
|
return OCP\Config::getUserValue(OCP\USER::getUser(), 'gallery', 'root', '');
|
2012-03-11 23:00:50 +04:00
|
|
|
}
|
2012-02-08 01:33:47 +04:00
|
|
|
}
|