2014-04-12 14:51:05 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
###
|
|
|
|
# @name Upload Module
|
2015-02-01 21:08:37 +00:00
|
|
|
# @copyright 2015 by Tobias Reich
|
2014-04-12 14:51:05 +00:00
|
|
|
###
|
|
|
|
|
|
|
|
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
|
|
|
|
|
|
|
|
class Import extends Module {
|
|
|
|
|
|
|
|
static function photo($database, $plugins, $settings, $path, $albumID = 0, $description = '', $tags = '') {
|
|
|
|
|
2015-04-13 19:09:28 +00:00
|
|
|
# No need to validate photo type and extension in this function.
|
|
|
|
# $photo->add will take care of it.
|
|
|
|
|
2014-04-12 14:51:05 +00:00
|
|
|
$info = getimagesize($path);
|
|
|
|
$size = filesize($path);
|
|
|
|
$photo = new Photo($database, $plugins, $settings, null);
|
|
|
|
|
|
|
|
$nameFile = array(array());
|
|
|
|
$nameFile[0]['name'] = $path;
|
|
|
|
$nameFile[0]['type'] = $info['mime'];
|
|
|
|
$nameFile[0]['tmp_name'] = $path;
|
|
|
|
$nameFile[0]['error'] = 0;
|
|
|
|
$nameFile[0]['size'] = $size;
|
|
|
|
|
|
|
|
if (!$photo->add($nameFile, $albumID, $description, $tags)) return false;
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static function url($urls, $albumID = 0) {
|
|
|
|
|
2015-06-28 16:58:17 +00:00
|
|
|
global $database, $plugins, $settings;
|
|
|
|
|
2014-04-26 19:02:50 +00:00
|
|
|
$error = false;
|
|
|
|
|
2014-04-12 14:51:05 +00:00
|
|
|
# Parse
|
|
|
|
$urls = str_replace(' ', '%20', $urls);
|
|
|
|
$urls = explode(',', $urls);
|
|
|
|
|
|
|
|
foreach ($urls as &$url) {
|
|
|
|
|
2015-06-28 16:58:17 +00:00
|
|
|
# Validate photo type and extension even when Import::photo (=> $photo->add) will do the same.
|
|
|
|
# This prevents us from downloading invalid photos.
|
|
|
|
|
2015-04-13 19:09:28 +00:00
|
|
|
# Verify extension
|
|
|
|
$extension = getExtension($url);
|
|
|
|
if (!in_array(strtolower($extension), Photo::$validExtensions, true)) {
|
|
|
|
$error = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Verify image
|
|
|
|
$type = @exif_imagetype($url);
|
|
|
|
if (!in_array($type, Photo::$validTypes, true)) {
|
2014-04-26 19:02:50 +00:00
|
|
|
$error = true;
|
|
|
|
continue;
|
|
|
|
}
|
2014-04-12 14:51:05 +00:00
|
|
|
|
2014-04-26 19:02:50 +00:00
|
|
|
$pathinfo = pathinfo($url);
|
|
|
|
$filename = $pathinfo['filename'] . '.' . $pathinfo['extension'];
|
|
|
|
$tmp_name = LYCHEE_DATA . $filename;
|
2014-04-12 14:51:05 +00:00
|
|
|
|
2015-06-28 16:58:17 +00:00
|
|
|
if (@copy($url, $tmp_name)===false) {
|
|
|
|
$error = true;
|
|
|
|
Log::error($database, __METHOD__, __LINE__, 'Could not copy file (' . $tmp_name . ') to temp-folder (' . $tmp_name . ')');
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Import photo
|
|
|
|
if (!Import::photo($database, $plugins, $settings, $tmp_name, $albumID)) {
|
|
|
|
$error = true;
|
|
|
|
Log::error($database, __METHOD__, __LINE__, 'Could not import file: ' . $tmp_name);
|
|
|
|
continue;
|
|
|
|
}
|
2014-04-12 14:51:05 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-06-28 16:58:17 +00:00
|
|
|
if ($error===false) return true;
|
|
|
|
return false;
|
2014-04-12 14:51:05 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-01-23 20:41:32 +00:00
|
|
|
static function server($albumID = 0, $path) {
|
2014-05-16 20:47:45 +00:00
|
|
|
|
|
|
|
global $database, $plugins, $settings;
|
|
|
|
|
2014-07-26 20:14:22 +00:00
|
|
|
# Parse path
|
2014-05-16 20:47:45 +00:00
|
|
|
if (!isset($path)) $path = LYCHEE_UPLOADS_IMPORT;
|
2014-07-26 20:14:22 +00:00
|
|
|
if (substr($path, -1)==='/') $path = substr($path, 0, -1);
|
2014-05-16 20:47:45 +00:00
|
|
|
|
2014-07-23 19:45:18 +00:00
|
|
|
if (is_dir($path)===false) {
|
|
|
|
Log::error($database, __METHOD__, __LINE__, 'Given path is not a directory (' . $path . ')');
|
|
|
|
return 'Error: Given path is not a directory!';
|
|
|
|
}
|
|
|
|
|
2014-07-26 20:14:22 +00:00
|
|
|
# Skip folders of Lychee
|
2015-01-23 20:52:19 +00:00
|
|
|
if ($path===LYCHEE_UPLOADS_BIG||($path . '/')===LYCHEE_UPLOADS_BIG||
|
|
|
|
$path===LYCHEE_UPLOADS_MEDIUM||($path . '/')===LYCHEE_UPLOADS_MEDIUM||
|
|
|
|
$path===LYCHEE_UPLOADS_THUMB||($path . '/')===LYCHEE_UPLOADS_THUMB) {
|
|
|
|
Log::error($database, __METHOD__, __LINE__, 'The given path is a reserved path of Lychee (' . $path . ')');
|
|
|
|
return 'Error: Given path is a reserved path of Lychee!';
|
2014-07-26 20:14:22 +00:00
|
|
|
}
|
|
|
|
|
2014-05-13 20:49:23 +00:00
|
|
|
$error = false;
|
2014-04-12 14:51:05 +00:00
|
|
|
$contains['photos'] = false;
|
|
|
|
$contains['albums'] = false;
|
2014-05-13 20:49:23 +00:00
|
|
|
|
2015-02-24 22:15:58 +00:00
|
|
|
# Invoke plugins directly, as instance method not valid here
|
|
|
|
# Note that updated albumId and path explicitly passed, rather
|
|
|
|
# than using func_get_args() which will only return original ones
|
2015-02-21 08:52:33 +00:00
|
|
|
$plugins->activate(__METHOD__ . ":before", array($albumID, $path));
|
|
|
|
|
2014-05-16 20:47:45 +00:00
|
|
|
# Get all files
|
2014-05-13 20:49:23 +00:00
|
|
|
$files = glob($path . '/*');
|
2014-04-12 14:51:05 +00:00
|
|
|
|
|
|
|
foreach ($files as $file) {
|
|
|
|
|
2014-05-13 20:49:23 +00:00
|
|
|
# It is possible to move a file because of directory permissions but
|
|
|
|
# the file may still be unreadable by the user
|
|
|
|
if (!is_readable($file)) {
|
|
|
|
$error = true;
|
|
|
|
Log::error($database, __METHOD__, __LINE__, 'Could not read file or directory: ' . $file);
|
|
|
|
continue;
|
|
|
|
}
|
2014-05-04 00:15:43 +00:00
|
|
|
|
2014-04-26 17:40:34 +00:00
|
|
|
if (@exif_imagetype($file)!==false) {
|
2014-04-12 14:51:05 +00:00
|
|
|
|
|
|
|
# Photo
|
|
|
|
|
2014-05-13 20:49:23 +00:00
|
|
|
if (!Import::photo($database, $plugins, $settings, $file, $albumID)) {
|
|
|
|
$error = true;
|
|
|
|
Log::error($database, __METHOD__, __LINE__, 'Could not import file: ' . $file);
|
|
|
|
continue;
|
|
|
|
}
|
2014-04-12 14:51:05 +00:00
|
|
|
$contains['photos'] = true;
|
|
|
|
|
|
|
|
} else if (is_dir($file)) {
|
|
|
|
|
|
|
|
# Folder
|
|
|
|
|
2014-07-26 20:14:22 +00:00
|
|
|
$name = mysqli_real_escape_string($database, basename($file));
|
|
|
|
$album = new Album($database, null, null, null);
|
|
|
|
$newAlbumID = $album->add('[Import] ' . $name);
|
|
|
|
$contains['albums'] = true;
|
2014-04-12 14:51:05 +00:00
|
|
|
|
2014-05-13 20:49:23 +00:00
|
|
|
if ($newAlbumID===false) {
|
|
|
|
$error = true;
|
|
|
|
Log::error($database, __METHOD__, __LINE__, 'Could not create album in Lychee (' . $newAlbumID . ')');
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-01-23 20:41:32 +00:00
|
|
|
$import = Import::server($newAlbumID, $file . '/');
|
2014-07-26 20:14:22 +00:00
|
|
|
|
|
|
|
if ($import!==true&&$import!=='Notice: Import only contains albums!') {
|
2014-05-16 21:22:41 +00:00
|
|
|
$error = true;
|
2014-07-23 19:23:33 +00:00
|
|
|
Log::error($database, __METHOD__, __LINE__, 'Could not import folder. Function returned warning');
|
2014-05-16 21:22:41 +00:00
|
|
|
continue;
|
|
|
|
}
|
2014-05-13 20:49:23 +00:00
|
|
|
|
2014-04-12 14:51:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-02-24 22:15:58 +00:00
|
|
|
# Invoke plugins directly, as instance method not valid here
|
|
|
|
# Note that updated albumId and path explicitly passed, rather
|
|
|
|
# than using func_get_args() which will only return original ones
|
2015-02-21 08:52:33 +00:00
|
|
|
$plugins->activate(__METHOD__ . ":after", array($albumID, $path));
|
|
|
|
|
2014-05-04 00:15:43 +00:00
|
|
|
if ($contains['photos']===false&&$contains['albums']===false) return 'Warning: Folder empty or no readable files to process!';
|
2014-04-12 14:51:05 +00:00
|
|
|
if ($contains['photos']===false&&$contains['albums']===true) return 'Notice: Import only contains albums!';
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-05-04 00:15:43 +00:00
|
|
|
?>
|