Fixed Import (some links are still nit working)
This commit is contained in:
parent
73e14c7a3a
commit
eccdcf5ead
@ -101,12 +101,12 @@ switch ($_POST['function']) {
|
|||||||
echo $photo->add($_FILES, $_POST['albumID']);
|
echo $photo->add($_FILES, $_POST['albumID']);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'importUrl': if (isset($_POST['url'], $_POST['albumID']))
|
case 'importUrl': if (!isset($_POST['url'], $_POST['albumID'])) exit();
|
||||||
echo importUrl($_POST['url'], $_POST['albumID']);
|
echo Import::url($_POST['url'], $_POST['albumID']);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'importServer': if (isset($_POST['albumID']))
|
case 'importServer': if (!isset($_POST['albumID'])) exit();
|
||||||
echo importServer($_POST['albumID']);
|
echo Import::server($_POST['albumID'], null);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
// Search Function
|
// Search Function
|
||||||
|
@ -23,7 +23,6 @@ if (!empty($_POST['function'])||!empty($_GET['function'])) {
|
|||||||
|
|
||||||
# Load modules
|
# Load modules
|
||||||
require(__DIR__ . '/modules/misc.php');
|
require(__DIR__ . '/modules/misc.php');
|
||||||
require(__DIR__ . '/modules/upload.php');
|
|
||||||
|
|
||||||
if (file_exists(__DIR__ . '/../data/config.php')) require(__DIR__ . '/../data/config.php');
|
if (file_exists(__DIR__ . '/../data/config.php')) require(__DIR__ . '/../data/config.php');
|
||||||
else {
|
else {
|
||||||
|
100
php/modules/Import.php
Normal file
100
php/modules/Import.php
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
###
|
||||||
|
# @name Upload Module
|
||||||
|
# @author Tobias Reich
|
||||||
|
# @copyright 2014 by Tobias Reich
|
||||||
|
###
|
||||||
|
|
||||||
|
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 = '') {
|
||||||
|
|
||||||
|
$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) {
|
||||||
|
|
||||||
|
# Parse
|
||||||
|
$urls = str_replace(' ', '%20', $urls);
|
||||||
|
$urls = explode(',', $urls);
|
||||||
|
|
||||||
|
# Set path
|
||||||
|
$path = __DIR__ . '/../../data/';
|
||||||
|
|
||||||
|
foreach ($urls as &$url) {
|
||||||
|
|
||||||
|
if (@getimagesize($url)) {
|
||||||
|
|
||||||
|
$pathinfo = pathinfo($url);
|
||||||
|
$filename = $pathinfo['filename'] . '.' . $pathinfo['extension'];
|
||||||
|
$tmp_name = $path . $filename;
|
||||||
|
|
||||||
|
if (!@copy($url, $tmp_name)) return false;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
return Import::server($albumID, $path);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
static function server($albumID = 0, $path) {
|
||||||
|
|
||||||
|
if (!isset($path)) $path = __DIR__ . '/../../uploads/import/';
|
||||||
|
|
||||||
|
global $database, $plugins, $settings;
|
||||||
|
|
||||||
|
$files = glob($path . '*');
|
||||||
|
$contains['photos'] = false;
|
||||||
|
$contains['albums'] = false;
|
||||||
|
|
||||||
|
foreach ($files as $file) {
|
||||||
|
|
||||||
|
if (@getimagesize($file)) {
|
||||||
|
|
||||||
|
# Photo
|
||||||
|
|
||||||
|
if (!Import::photo($database, $plugins, $settings, $file, $albumID)) return false;
|
||||||
|
$contains['photos'] = true;
|
||||||
|
|
||||||
|
} else if (is_dir($file)) {
|
||||||
|
|
||||||
|
# Folder
|
||||||
|
|
||||||
|
$name = mysqli_real_escape_string($database, basename($file));
|
||||||
|
$album = new Album($database, null, null, null);
|
||||||
|
$newAlbumID = $album->add('[Import] ' . $name);
|
||||||
|
|
||||||
|
if ($newAlbumID!==false) Import::server($newAlbumID, $file . '/');
|
||||||
|
$contains['albums'] = true;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($contains['photos']===false&&$contains['albums']===false) return 'Warning: Folder empty!';
|
||||||
|
if ($contains['photos']===false&&$contains['albums']===true) return 'Notice: Import only contains albums!';
|
||||||
|
return true;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
@ -68,7 +68,7 @@ class Photo extends Module {
|
|||||||
if ($file['type']!=='image/jpeg'&&
|
if ($file['type']!=='image/jpeg'&&
|
||||||
$file['type']!=='image/png'&&
|
$file['type']!=='image/png'&&
|
||||||
$file['type']!=='image/gif')
|
$file['type']!=='image/gif')
|
||||||
return false;
|
continue;
|
||||||
|
|
||||||
$id = str_replace('.', '', microtime(true));
|
$id = str_replace('.', '', microtime(true));
|
||||||
while(strlen($id)<14) $id .= 0;
|
while(strlen($id)<14) $id .= 0;
|
||||||
@ -81,9 +81,10 @@ class Photo extends Module {
|
|||||||
|
|
||||||
# Import if not uploaded via web
|
# Import if not uploaded via web
|
||||||
if (!is_uploaded_file($tmp_name)) {
|
if (!is_uploaded_file($tmp_name)) {
|
||||||
if (copy($tmp_name, $path)) { @unlink($tmp_name); }
|
if (!@copy($tmp_name, $path)) exit('Error: Could not copy photo to uploads!');
|
||||||
|
else @unlink($tmp_name);
|
||||||
} else {
|
} else {
|
||||||
move_uploaded_file($tmp_name, $path);
|
if (!@move_uploaded_file($tmp_name, $path)) exit('Error: Could not move photo to uploads!');
|
||||||
}
|
}
|
||||||
|
|
||||||
# Read infos
|
# Read infos
|
||||||
@ -97,11 +98,11 @@ class Photo extends Module {
|
|||||||
|
|
||||||
# Set orientation based on EXIF data
|
# Set orientation based on EXIF data
|
||||||
if ($file['type']==='image/jpeg'&&isset($info['orientation'])&&$info['orientation']!==''&&isset($info['width'])&&isset($info['height'])) {
|
if ($file['type']==='image/jpeg'&&isset($info['orientation'])&&$info['orientation']!==''&&isset($info['width'])&&isset($info['height'])) {
|
||||||
if (!$this->adjustFile($path, $info)) return false;
|
if (!$this->adjustFile($path, $info)) exit('Error: Could not adjust photo!');
|
||||||
}
|
}
|
||||||
|
|
||||||
# Create Thumb
|
# Create Thumb
|
||||||
if (!$this->createThumb($path, $photo_name)) return false;
|
if (!$this->createThumb($path, $photo_name)) exit('Error: Could not create thumbnail for photo!');
|
||||||
|
|
||||||
# Save to DB
|
# Save to DB
|
||||||
$query = "INSERT INTO lychee_photos (id, title, url, description, tags, type, width, height, size, iso, aperture, make, model, shutter, focal, takestamp, thumbUrl, album, public, star)
|
$query = "INSERT INTO lychee_photos (id, title, url, description, tags, type, width, height, size, iso, aperture, make, model, shutter, focal, takestamp, thumbUrl, album, public, star)
|
||||||
@ -128,7 +129,7 @@ class Photo extends Module {
|
|||||||
'" . $star . "');";
|
'" . $star . "');";
|
||||||
$result = $this->database->query($query);
|
$result = $this->database->query($query);
|
||||||
|
|
||||||
if (!$result) return false;
|
if (!$result) exit('Error: Could not save photo in database!');
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,114 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @name Upload Module
|
|
||||||
* @author Philipp Maurer
|
|
||||||
* @author Tobias Reich
|
|
||||||
* @copyright 2014 by Philipp Maurer, Tobias Reich
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
|
|
||||||
|
|
||||||
function importPhoto($path, $albumID = 0, $description = '', $tags = '') {
|
|
||||||
|
|
||||||
$info = getimagesize($path);
|
|
||||||
$size = filesize($path);
|
|
||||||
|
|
||||||
$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;
|
|
||||||
|
|
||||||
return upload($nameFile, $albumID, $description, $tags);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
function importUrl($url, $albumID = 0) {
|
|
||||||
|
|
||||||
if (strpos($url, ',')!==false) {
|
|
||||||
|
|
||||||
// Multiple photos
|
|
||||||
|
|
||||||
$url = explode(',', $url);
|
|
||||||
|
|
||||||
foreach ($url as &$key) {
|
|
||||||
|
|
||||||
$key = str_replace(' ', '%20', $key);
|
|
||||||
|
|
||||||
if (@getimagesize($key)) {
|
|
||||||
|
|
||||||
$pathinfo = pathinfo($key);
|
|
||||||
$filename = $pathinfo['filename'].".".$pathinfo['extension'];
|
|
||||||
$tmp_name = __DIR__ . '/../../uploads/import/' . $filename;
|
|
||||||
|
|
||||||
copy($key, $tmp_name);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
return importServer($albumID);
|
|
||||||
|
|
||||||
} else {
|
|
||||||
|
|
||||||
// One photo
|
|
||||||
|
|
||||||
$url = str_replace(' ', '%20', $url);
|
|
||||||
|
|
||||||
if (@getimagesize($url)) {
|
|
||||||
|
|
||||||
$pathinfo = pathinfo($url);
|
|
||||||
$filename = $pathinfo['filename'].".".$pathinfo['extension'];
|
|
||||||
$tmp_name = __DIR__ . "/../../uploads/import/$filename";
|
|
||||||
|
|
||||||
copy($url, $tmp_name);
|
|
||||||
|
|
||||||
return importPhoto($tmp_name, $albumID);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
function importServer($albumID = 0, $path) {
|
|
||||||
|
|
||||||
if (!isset($path)) $path = __DIR__ . '/../../uploads/import/';
|
|
||||||
|
|
||||||
global $database;
|
|
||||||
|
|
||||||
$files = glob($path . '*');
|
|
||||||
$contains['photos'] = false;
|
|
||||||
$contains['albums'] = false;
|
|
||||||
|
|
||||||
foreach ($files as $file) {
|
|
||||||
|
|
||||||
if (@getimagesize($file)) {
|
|
||||||
|
|
||||||
// Photo
|
|
||||||
if (!importPhoto($file, $albumID)) return false;
|
|
||||||
$contains['photos'] = true;
|
|
||||||
|
|
||||||
} else if (is_dir($file)) {
|
|
||||||
|
|
||||||
$name = mysqli_real_escape_string($database, basename($file));
|
|
||||||
$newAlbumID = addAlbum('[Import] ' . $name);
|
|
||||||
|
|
||||||
if ($newAlbumID!==false) importServer($newAlbumID, $file . '/');
|
|
||||||
$contains['albums'] = true;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($contains['photos']===false&&$contains['albums']===false) return "Warning: Folder empty!";
|
|
||||||
if ($contains['photos']===false&&$contains['albums']===true) return "Notice: Import only contains albums!";
|
|
||||||
return true;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
?>
|
|
Loading…
Reference in New Issue
Block a user