|
@@ -7,7 +7,7 @@
|
|
* @copyright 2013 by Philipp Maurer, Tobias Reich
|
|
* @copyright 2013 by Philipp Maurer, Tobias Reich
|
|
*/
|
|
*/
|
|
|
|
|
|
-if(!defined('LYCHEE')) die('Direct access is not allowed!');
|
|
|
|
|
|
+if (!defined('LYCHEE')) die('Direct access is not allowed!');
|
|
|
|
|
|
// Database Functions
|
|
// Database Functions
|
|
function dbConnect() {
|
|
function dbConnect() {
|
|
@@ -21,12 +21,12 @@ function dbConnect() {
|
|
createDatabase($db, $database);
|
|
createDatabase($db, $database);
|
|
}
|
|
}
|
|
$query = "SELECT * FROM lychee_photos, lychee_albums;";
|
|
$query = "SELECT * FROM lychee_photos, lychee_albums;";
|
|
- if(!$database->query($query)) createTables($database);
|
|
|
|
|
|
+ if (!$database->query($query)) createTables($database);
|
|
return $database;
|
|
return $database;
|
|
}
|
|
}
|
|
function dbClose() {
|
|
function dbClose() {
|
|
global $database;
|
|
global $database;
|
|
- if(!$database->close()) {
|
|
|
|
|
|
+ if (!$database->close()) {
|
|
echo "Closing the connection failed!";
|
|
echo "Closing the connection failed!";
|
|
return false;
|
|
return false;
|
|
}
|
|
}
|
|
@@ -35,7 +35,7 @@ function dbClose() {
|
|
function createDatabase($db, $database) {
|
|
function createDatabase($db, $database) {
|
|
$result = $database->query("CREATE DATABASE IF NOT EXISTS $db;");
|
|
$result = $database->query("CREATE DATABASE IF NOT EXISTS $db;");
|
|
$database->select_db($db);
|
|
$database->select_db($db);
|
|
- if(!$result) return false;
|
|
|
|
|
|
+ if (!$result) return false;
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
function createTables($database) {
|
|
function createTables($database) {
|
|
@@ -48,7 +48,7 @@ function createTables($database) {
|
|
PRIMARY KEY (`id`)
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;";
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
- if(!$result) return false;
|
|
|
|
|
|
+ if (!$result) return false;
|
|
|
|
|
|
$query = "CREATE TABLE `lychee_photos` (
|
|
$query = "CREATE TABLE `lychee_photos` (
|
|
`id` bigint(14) NOT NULL,
|
|
`id` bigint(14) NOT NULL,
|
|
@@ -56,7 +56,6 @@ function createTables($database) {
|
|
`description` varchar(160) NOT NULL,
|
|
`description` varchar(160) NOT NULL,
|
|
`url` varchar(100) NOT NULL,
|
|
`url` varchar(100) NOT NULL,
|
|
`public` tinyint(1) NOT NULL,
|
|
`public` tinyint(1) NOT NULL,
|
|
- `shortlink` varchar(20) NOT NULL,
|
|
|
|
`type` varchar(10) NOT NULL,
|
|
`type` varchar(10) NOT NULL,
|
|
`width` int(11) NOT NULL,
|
|
`width` int(11) NOT NULL,
|
|
`height` int(11) NOT NULL,
|
|
`height` int(11) NOT NULL,
|
|
@@ -78,80 +77,92 @@ function createTables($database) {
|
|
PRIMARY KEY (`id`)
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;";
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
- if(!$result) return false;
|
|
|
|
|
|
+ if (!$result) return false;
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
|
|
|
|
// Upload Functions
|
|
// Upload Functions
|
|
function upload($files, $albumID) {
|
|
function upload($files, $albumID) {
|
|
|
|
+
|
|
global $database;
|
|
global $database;
|
|
|
|
+
|
|
|
|
+ switch($albumID) {
|
|
|
|
+ // s for public (share)
|
|
|
|
+ case 's':
|
|
|
|
+ $public = 1;
|
|
|
|
+ $star = 0;
|
|
|
|
+ $albumID = 0;
|
|
|
|
+ break;
|
|
|
|
+ // f for starred (fav)
|
|
|
|
+ case 'f':
|
|
|
|
+ $star = 1;
|
|
|
|
+ $public = 0;
|
|
|
|
+ $albumID = 0;
|
|
|
|
+ break;
|
|
|
|
+ default:
|
|
|
|
+ $star = 0;
|
|
|
|
+ $public = 0;
|
|
|
|
+ }
|
|
|
|
+
|
|
foreach ($files as $file) {
|
|
foreach ($files as $file) {
|
|
- switch($albumID) {
|
|
|
|
- // s for public (share)
|
|
|
|
- case 's':
|
|
|
|
- $public = 1;
|
|
|
|
- $star = 0;
|
|
|
|
- $albumID = 0;
|
|
|
|
- break;
|
|
|
|
- // f for starred (fav)
|
|
|
|
- case 'f':
|
|
|
|
- $star = 1;
|
|
|
|
- $public = 0;
|
|
|
|
- $albumID = 0;
|
|
|
|
- break;
|
|
|
|
- default:
|
|
|
|
- $star = 0;
|
|
|
|
- $public = 0;
|
|
|
|
- }
|
|
|
|
|
|
+
|
|
$id = str_replace('.', '', microtime(true));
|
|
$id = str_replace('.', '', microtime(true));
|
|
while(strlen($id)<14) $id .= 0;
|
|
while(strlen($id)<14) $id .= 0;
|
|
$tmp_name = $file["tmp_name"];
|
|
$tmp_name = $file["tmp_name"];
|
|
$type = getimagesize($tmp_name);
|
|
$type = getimagesize($tmp_name);
|
|
- if(($type[2]!=1)&&($type[2]!=2)&&($type[2]!=3)) return false;
|
|
|
|
|
|
+ if (($type[2]!=1)&&($type[2]!=2)&&($type[2]!=3)) return false;
|
|
$data = $file["name"];
|
|
$data = $file["name"];
|
|
$data = explode('.',$data);
|
|
$data = explode('.',$data);
|
|
$data = array_reverse ($data);
|
|
$data = array_reverse ($data);
|
|
$data = $data[0];
|
|
$data = $data[0];
|
|
- if(!is_uploaded_file($file)) {
|
|
|
|
- if (copy($tmp_name, "../uploads/big/$id.$data")) {
|
|
|
|
|
|
+
|
|
|
|
+ // Import if not uploaded via web
|
|
|
|
+ if (!is_uploaded_file($file)) {
|
|
|
|
+ if (copy($tmp_name, "../uploads/big/" . md5($id) . ".$data")) {
|
|
unlink($tmp_name);
|
|
unlink($tmp_name);
|
|
$import_name = $tmp_name;
|
|
$import_name = $tmp_name;
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
- move_uploaded_file($tmp_name, "../uploads/big/$id.$data");
|
|
|
|
|
|
+ move_uploaded_file($tmp_name, "../uploads/big/" . md5($id) . ".$data");
|
|
$import_name = "";
|
|
$import_name = "";
|
|
}
|
|
}
|
|
- createThumb($id.".".$data);
|
|
|
|
|
|
+
|
|
|
|
+ // Create Thumb
|
|
|
|
+ createThumb(md5($id).".".$data);
|
|
|
|
+
|
|
// Read infos
|
|
// Read infos
|
|
- $info = getCamera($id.".".$data);
|
|
|
|
- $title="";
|
|
|
|
- if(isset($info['type'])){$type=$info['type'];}else{$type="";}
|
|
|
|
- if(isset($info['width'])){$width=$info['width'];}else{$width="";}
|
|
|
|
- if(isset($info['height'])){$height=$info['height'] OR "";}else{$height="";}
|
|
|
|
- if(isset($info['size'])){$size=$info['size'] OR "";}else{$size="";}
|
|
|
|
- if(isset($info['date'])){$sysdate=$info['date'];}else{$sysdate="";}
|
|
|
|
- if(isset($info['time'])){$systime=$info['time'];}else{$systime="";}
|
|
|
|
- if(isset($info['iso'])){$iso=$info['iso'];}else{$iso="";}
|
|
|
|
- if(isset($info['aperture'])){$aperture=$info['aperture'];}else{$aperture="";}
|
|
|
|
- if(isset($info['make'])){$make=$info['make'];}else{$make="";}
|
|
|
|
- if(isset($info['model'])){$model=$info['model'] OR "";}else{$model="";}
|
|
|
|
- if(isset($info['shutter'])){$shutter=$info['shutter'];}else{$shutter="";}
|
|
|
|
- if(isset($info['focal'])){$focal=$info['focal'];}else{$focal="";}
|
|
|
|
- if(isset($info['takeDate'])){$takeDate=$info['takeDate'];}else{$takeDate="";}
|
|
|
|
- if(isset($info['takeTime'])){$takeTime=$info['takeTime'];}else{$takeTime="";}
|
|
|
|
|
|
+ $info = getCamera(md5($id).".".$data);
|
|
|
|
+ $title = "";
|
|
|
|
+ if (isset($info['type'])){$type=$info['type'];} else {$type="";}
|
|
|
|
+ if (isset($info['width'])){$width=$info['width'];} else {$width="";}
|
|
|
|
+ if (isset($info['height'])){$height=$info['height'] OR "";} else {$height="";}
|
|
|
|
+ if (isset($info['size'])){$size=$info['size'] OR "";} else {$size="";}
|
|
|
|
+ if (isset($info['date'])){$sysdate=$info['date'];} else {$sysdate="";}
|
|
|
|
+ if (isset($info['time'])){$systime=$info['time'];} else {$systime="";}
|
|
|
|
+ if (isset($info['iso'])){$iso=$info['iso'];} else {$iso="";}
|
|
|
|
+ if (isset($info['aperture'])){$aperture=$info['aperture'];} else {$aperture="";}
|
|
|
|
+ if (isset($info['make'])){$make=$info['make'];} else {$make="";}
|
|
|
|
+ if (isset($info['model'])){$model=$info['model'] OR "";} else {$model="";}
|
|
|
|
+ if (isset($info['shutter'])){$shutter=$info['shutter'];} else {$shutter="";}
|
|
|
|
+ if (isset($info['focal'])){$focal=$info['focal'];} else {$focal="";}
|
|
|
|
+ if (isset($info['takeDate'])){$takeDate=$info['takeDate'];} else {$takeDate="";}
|
|
|
|
+ if (isset($info['takeTime'])){$takeTime=$info['takeTime'];} else {$takeTime="";}
|
|
$query = "INSERT INTO lychee_photos (id, title, url, type, width, height, size, sysdate, systime, iso, aperture, make, model, shutter, focal, takedate, taketime, thumbUrl, album, public, star, import_name)
|
|
$query = "INSERT INTO lychee_photos (id, title, url, type, width, height, size, sysdate, systime, iso, aperture, make, model, shutter, focal, takedate, taketime, thumbUrl, album, public, star, import_name)
|
|
- VALUES ('$id', '$title', 'uploads/big/$id.$data', '$type', '$width', '$height', '$size', '$sysdate', '$systime', '$iso', '$aperture', '$make', '$model', '$shutter', '$focal', '$takeDate', '$takeTime', 'uploads/thumb/$id.$data', '$albumID', '$public', '$star', '$import_name');";
|
|
|
|
|
|
+ VALUES ('$id', '$title', '" . md5($id) . ".$data', '$type', '$width', '$height', '$size', '$sysdate', '$systime', '$iso', '$aperture', '$make', '$model', '$shutter', '$focal', '$takeDate', '$takeTime', '" . md5($id) . ".$data', '$albumID', '$public', '$star', '$import_name');";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
|
|
+
|
|
}
|
|
}
|
|
|
|
+
|
|
return true;
|
|
return true;
|
|
|
|
+
|
|
}
|
|
}
|
|
-function getCamera($photoID) {
|
|
|
|
|
|
+function getCamera($filename) {
|
|
global $database;
|
|
global $database;
|
|
- $url = "../uploads/big/$photoID";
|
|
|
|
|
|
+ $url = "../uploads/big/$filename";
|
|
$type = getimagesize($url);
|
|
$type = getimagesize($url);
|
|
$type = $type['mime'];
|
|
$type = $type['mime'];
|
|
|
|
|
|
- if(($type == "image/jpeg") && function_exists('exif_read_data') ){
|
|
|
|
|
|
+ if (($type == "image/jpeg") && function_exists('exif_read_data') ){
|
|
|
|
|
|
$exif = exif_read_data($url, "EXIF", 0);
|
|
$exif = exif_read_data($url, "EXIF", 0);
|
|
|
|
|
|
@@ -162,35 +173,33 @@ function getCamera($photoID) {
|
|
$return['width'] = $generalInfos[0];
|
|
$return['width'] = $generalInfos[0];
|
|
$return['height'] = $generalInfos[1];
|
|
$return['height'] = $generalInfos[1];
|
|
$size = (filesize($url) / 1024);
|
|
$size = (filesize($url) / 1024);
|
|
- if($size >= 1024){$size=round($size/1024,1)." MB";}else{$size=round($size,1)." KB";}
|
|
|
|
|
|
+ if ($size >= 1024){$size=round($size/1024,1)." MB";} else {$size=round($size,1)." KB";}
|
|
$return['size'] = $size;
|
|
$return['size'] = $size;
|
|
$return['date'] = date("d.m.Y",filectime($url));
|
|
$return['date'] = date("d.m.Y",filectime($url));
|
|
$return['time'] = date("H:i:s",filectime($url));
|
|
$return['time'] = date("H:i:s",filectime($url));
|
|
|
|
|
|
- //echo $exif['FileDateTime']."<br/>".$exif['DateTimeOriginal'];
|
|
|
|
-
|
|
|
|
// Camera Information
|
|
// Camera Information
|
|
- if(isset($exif['ISOSpeedRatings'])){$return['iso']="ISO-".$exif['ISOSpeedRatings'];}
|
|
|
|
- if(isset($exif['COMPUTED']['ApertureFNumber'])){$return['aperture']=$exif['COMPUTED']['ApertureFNumber'];}
|
|
|
|
- if(isset($exif['Make'])){$return['make']=$exif['Make'];}
|
|
|
|
- if(isset($exif['Model'])){$return['model']=$exif['Model'];}
|
|
|
|
- if(isset($exif['ExposureTime'])){$return['shutter']=$exif['ExposureTime']." Sek.";}
|
|
|
|
- if(isset($exif['FocalLength'])){$return['focal']=($exif['FocalLength']/1)." mm";}
|
|
|
|
- if(isset($exif['Software'])){$return['software']=$exif['Software'];}
|
|
|
|
- if(isset($exif['DateTimeOriginal'])) {
|
|
|
|
|
|
+ if (isset($exif['ISOSpeedRatings'])){$return['iso']="ISO-".$exif['ISOSpeedRatings'];}
|
|
|
|
+ if (isset($exif['COMPUTED']['ApertureFNumber'])){$return['aperture']=$exif['COMPUTED']['ApertureFNumber'];}
|
|
|
|
+ if (isset($exif['Make'])){$return['make']=$exif['Make'];}
|
|
|
|
+ if (isset($exif['Model'])){$return['model']=$exif['Model'];}
|
|
|
|
+ if (isset($exif['ExposureTime'])){$return['shutter']=$exif['ExposureTime']." Sek.";}
|
|
|
|
+ if (isset($exif['FocalLength'])){$return['focal']=($exif['FocalLength']/1)." mm";}
|
|
|
|
+ if (isset($exif['Software'])){$return['software']=$exif['Software'];}
|
|
|
|
+ if (isset($exif['DateTimeOriginal'])) {
|
|
$exifDate = explode(" ",$exif['DateTimeOriginal']);
|
|
$exifDate = explode(" ",$exif['DateTimeOriginal']);
|
|
$date = explode(":", $exifDate[0]); $return['takeDate'] = $date[2].".".$date[1].".".$date[0];
|
|
$date = explode(":", $exifDate[0]); $return['takeDate'] = $date[2].".".$date[1].".".$date[0];
|
|
$return['takeTime'] = $exifDate[1];
|
|
$return['takeTime'] = $exifDate[1];
|
|
}
|
|
}
|
|
|
|
|
|
- }else{
|
|
|
|
|
|
+ } else {
|
|
|
|
|
|
$exif = getimagesize($url);
|
|
$exif = getimagesize($url);
|
|
$return['type'] = $exif['mime'];
|
|
$return['type'] = $exif['mime'];
|
|
$return['width'] = $exif[0];
|
|
$return['width'] = $exif[0];
|
|
$return['height'] = $exif[1];
|
|
$return['height'] = $exif[1];
|
|
$size = (filesize($url) / 1024);
|
|
$size = (filesize($url) / 1024);
|
|
- if($size >= 1024){$size=round($size/1024,1)." MB";}else{$size=round($size,1)." KB";}
|
|
|
|
|
|
+ if ($size >= 1024){$size=round($size/1024,1)." MB";} else {$size=round($size,1)." KB";}
|
|
$return['size'] = $size;
|
|
$return['size'] = $size;
|
|
$return['date'] = date("d.m.Y",filectime($url));
|
|
$return['date'] = date("d.m.Y",filectime($url));
|
|
$return['time'] = date("H:i:s",filectime($url));
|
|
$return['time'] = date("H:i:s",filectime($url));
|
|
@@ -198,23 +207,20 @@ function getCamera($photoID) {
|
|
}
|
|
}
|
|
return $return;
|
|
return $return;
|
|
}
|
|
}
|
|
-function createThumb($photoName, $width = 200, $width2x = 400, $height = 200, $height2x = 400) {
|
|
|
|
|
|
+function createThumb($filename, $width = 200, $width2x = 400, $height = 200, $height2x = 400) {
|
|
|
|
+
|
|
global $database, $thumbQuality;
|
|
global $database, $thumbQuality;
|
|
- $photoUrl = "../uploads/big/$photoName";
|
|
|
|
- $newUrl = "../uploads/thumb/$photoName";
|
|
|
|
- $thumbPhotoName = explode(".", $photoName);
|
|
|
|
|
|
+ $photoUrl = "../uploads/big/$filename";
|
|
|
|
+ $newUrl = "../uploads/thumb/$filename";
|
|
|
|
+ $thumbPhotoName = explode(".", $filename);
|
|
$newUrl2x = "../uploads/thumb/".$thumbPhotoName[0]."@2x.".$thumbPhotoName[1];
|
|
$newUrl2x = "../uploads/thumb/".$thumbPhotoName[0]."@2x.".$thumbPhotoName[1];
|
|
$oldImg = getimagesize($photoUrl);
|
|
$oldImg = getimagesize($photoUrl);
|
|
$type = $oldImg['mime'];
|
|
$type = $oldImg['mime'];
|
|
- switch($type) {
|
|
|
|
- case "image/jpeg": $sourceImg = imagecreatefromjpeg($photoUrl); break;
|
|
|
|
- case "image/png": $sourceImg = imagecreatefrompng($photoUrl); break;
|
|
|
|
- case "image/gif": $sourceImg = imagecreatefromgif($photoUrl); break;
|
|
|
|
- default: return false;
|
|
|
|
- }
|
|
|
|
|
|
+
|
|
|
|
+ // Set position and size
|
|
$thumb = imagecreatetruecolor($width, $height);
|
|
$thumb = imagecreatetruecolor($width, $height);
|
|
$thumb2x = imagecreatetruecolor($width2x, $height2x);
|
|
$thumb2x = imagecreatetruecolor($width2x, $height2x);
|
|
- if($oldImg[0]<$oldImg[1]) {
|
|
|
|
|
|
+ if ($oldImg[0]<$oldImg[1]) {
|
|
$newSize = $oldImg[0];
|
|
$newSize = $oldImg[0];
|
|
$startWidth = 0;
|
|
$startWidth = 0;
|
|
$startHeight = $oldImg[1]/2 - $oldImg[0]/2;
|
|
$startHeight = $oldImg[1]/2 - $oldImg[0]/2;
|
|
@@ -223,6 +229,14 @@ function createThumb($photoName, $width = 200, $width2x = 400, $height = 200, $h
|
|
$startWidth = $oldImg[0]/2 - $oldImg[1]/2;
|
|
$startWidth = $oldImg[0]/2 - $oldImg[1]/2;
|
|
$startHeight = 0;
|
|
$startHeight = 0;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ // Create new image
|
|
|
|
+ switch($type) {
|
|
|
|
+ case "image/jpeg": $sourceImg = imagecreatefromjpeg($photoUrl); break;
|
|
|
|
+ case "image/png": $sourceImg = imagecreatefrompng($photoUrl); break;
|
|
|
|
+ case "image/gif": $sourceImg = imagecreatefromgif($photoUrl); break;
|
|
|
|
+ default: return false;
|
|
|
|
+ }
|
|
imagecopyresampled($thumb,$sourceImg,0,0,$startWidth,$startHeight,$width,$height,$newSize,$newSize);
|
|
imagecopyresampled($thumb,$sourceImg,0,0,$startWidth,$startHeight,$width,$height,$newSize,$newSize);
|
|
imagecopyresampled($thumb2x,$sourceImg,0,0,$startWidth,$startHeight,$width2x,$height2x,$newSize,$newSize);
|
|
imagecopyresampled($thumb2x,$sourceImg,0,0,$startWidth,$startHeight,$width2x,$height2x,$newSize,$newSize);
|
|
switch($type) {
|
|
switch($type) {
|
|
@@ -231,14 +245,15 @@ function createThumb($photoName, $width = 200, $width2x = 400, $height = 200, $h
|
|
case "image/gif": imagegif($thumb,$newUrl); imagegif($thumb2x,$newUrl2x); break;
|
|
case "image/gif": imagegif($thumb,$newUrl); imagegif($thumb2x,$newUrl2x); break;
|
|
default: return false;
|
|
default: return false;
|
|
}
|
|
}
|
|
|
|
+
|
|
return true;
|
|
return true;
|
|
|
|
+
|
|
}
|
|
}
|
|
|
|
|
|
// Session Functions
|
|
// Session Functions
|
|
function init($mode) {
|
|
function init($mode) {
|
|
- global $checkForUpdates, $bitlyUsername;
|
|
|
|
|
|
+ global $checkForUpdates;
|
|
$return["config"]["checkForUpdates"] = $checkForUpdates;
|
|
$return["config"]["checkForUpdates"] = $checkForUpdates;
|
|
- $return["config"]["bitlyUsername"] = $bitlyUsername;
|
|
|
|
if ($mode=="admin") $return["loggedIn"] = true;
|
|
if ($mode=="admin") $return["loggedIn"] = true;
|
|
else $return["loggedIn"] = false;
|
|
else $return["loggedIn"] = false;
|
|
return $return;
|
|
return $return;
|
|
@@ -261,12 +276,12 @@ function logout() {
|
|
// Album Functions
|
|
// Album Functions
|
|
function addAlbum($title) {
|
|
function addAlbum($title) {
|
|
global $database;
|
|
global $database;
|
|
- $title = mysqli_real_escape_string($database, $title);
|
|
|
|
- if(strlen($title)<1||strlen($title)>30) return false;
|
|
|
|
|
|
+ $title = mysqli_real_escape_string($database, urldecode($title));
|
|
|
|
+ if (strlen($title)<1||strlen($title)>30) return false;
|
|
$sysdate = date("d.m.Y");
|
|
$sysdate = date("d.m.Y");
|
|
$query = "INSERT INTO lychee_albums (title, sysdate) VALUES ('$title', '$sysdate');";
|
|
$query = "INSERT INTO lychee_albums (title, sysdate) VALUES ('$title', '$sysdate');";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
- if(!$result) return false;
|
|
|
|
|
|
+ if (!$result) return false;
|
|
return $database->insert_id;
|
|
return $database->insert_id;
|
|
}
|
|
}
|
|
function getAlbums($public) {
|
|
function getAlbums($public) {
|
|
@@ -281,12 +296,12 @@ function getAlbums($public) {
|
|
$result = $database->query($query) OR die("Error: $result <br>".$database->error);
|
|
$result = $database->query($query) OR die("Error: $result <br>".$database->error);
|
|
$i=0;
|
|
$i=0;
|
|
while($row = $result->fetch_object()) {
|
|
while($row = $result->fetch_object()) {
|
|
- $return["album"][$i]['id'] = $row->id;
|
|
|
|
- $return["album"][$i]['title'] = $row->title;
|
|
|
|
- $return["album"][$i]['public'] = $row->public;
|
|
|
|
- $return["album"][$i]['sysdate'] = $row->sysdate;
|
|
|
|
- if ($row->password=="") $return["album"][$i]['password'] = false;
|
|
|
|
- else $return["album"][$i]['password'] = true;
|
|
|
|
|
|
+ $return["content"][$row->id]['id'] = $row->id;
|
|
|
|
+ $return["content"][$row->id]['title'] = $row->title;
|
|
|
|
+ $return["content"][$row->id]['public'] = $row->public;
|
|
|
|
+ $return["content"][$row->id]['sysdate'] = $row->sysdate;
|
|
|
|
+ if ($row->password=="") $return["content"][$row->id]['password'] = false;
|
|
|
|
+ else $return["content"][$row->id]['password'] = true;
|
|
|
|
|
|
// Thumbs
|
|
// Thumbs
|
|
if (($public&&$row->password=="")||(!$public)) {
|
|
if (($public&&$row->password=="")||(!$public)) {
|
|
@@ -295,92 +310,120 @@ function getAlbums($public) {
|
|
$result2 = $database->query($query);
|
|
$result2 = $database->query($query);
|
|
$k = 0;
|
|
$k = 0;
|
|
while($row2 = $result2->fetch_object()){
|
|
while($row2 = $result2->fetch_object()){
|
|
- $return["album"][$i]["thumb$k"] = $row2->thumbUrl;
|
|
|
|
|
|
+ $return["content"][$row->id]["thumb$k"] = $row2->thumbUrl;
|
|
$k++;
|
|
$k++;
|
|
}
|
|
}
|
|
- if(!isset($return["album"][$i]["thumb0"]))$return["album"][$i]["thumb0"]="";
|
|
|
|
- if(!isset($return["album"][$i]["thumb1"]))$return["album"][$i]["thumb1"]="";
|
|
|
|
- if(!isset($return["album"][$i]["thumb2"]))$return["album"][$i]["thumb2"]="";
|
|
|
|
|
|
+ if (!isset($return["content"][$row->id]["thumb0"])) $return["content"][$row->id]["thumb0"]="";
|
|
|
|
+ if (!isset($return["content"][$row->id]["thumb1"])) $return["content"][$row->id]["thumb1"]="";
|
|
|
|
+ if (!isset($return["content"][$row->id]["thumb2"])) $return["content"][$row->id]["thumb2"]="";
|
|
}
|
|
}
|
|
$i++;
|
|
$i++;
|
|
}
|
|
}
|
|
- if($i==0) $return["albums"] = false;
|
|
|
|
|
|
+ if ($i==0) $return["albums"] = false;
|
|
else $return["albums"] = true;
|
|
else $return["albums"] = true;
|
|
return $return;
|
|
return $return;
|
|
}
|
|
}
|
|
|
|
+function getAlbum($albumID) {
|
|
|
|
+ global $database, $sorting;
|
|
|
|
+ switch($albumID) {
|
|
|
|
+ case "f":
|
|
|
|
+ $return['public'] = false;
|
|
|
|
+ $query = "SELECT id, title, sysdate, public, star, album, thumbUrl FROM lychee_photos WHERE star = 1 ORDER BY id $sorting;";
|
|
|
|
+ break;
|
|
|
|
+ case "s":
|
|
|
|
+ $return['public'] = false;
|
|
|
|
+ $query = "SELECT id, title, sysdate, public, star, album, thumbUrl FROM lychee_photos WHERE public = 1 ORDER BY id $sorting;";
|
|
|
|
+ break;
|
|
|
|
+ case 0:
|
|
|
|
+ $return['public'] = false;
|
|
|
|
+ $query = "SELECT id, title, sysdate, public, star, album, thumbUrl FROM lychee_photos WHERE album = 0 ORDER BY id $sorting;";
|
|
|
|
+ default:
|
|
|
|
+ $result = $database->query("SELECT title, public, password FROM lychee_albums WHERE id = '$albumID';");
|
|
|
|
+ $row = $result->fetch_object();
|
|
|
|
+ $return['title'] = $row->title;
|
|
|
|
+ $return['public'] = $row->public;
|
|
|
|
+ if ($row->password=="") $return['password'] = false;
|
|
|
|
+ else $return['password'] = true;
|
|
|
|
+ $query = "SELECT id, title, sysdate, public, star, album, thumbUrl FROM lychee_photos WHERE album = '$albumID' ORDER BY id $sorting;";
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ $result = $database->query($query);
|
|
|
|
+ $i = 0;
|
|
|
|
+ while($row = $result->fetch_array()) {
|
|
|
|
+ $return['content'][$row['id']] = $row;
|
|
|
|
+ $i++;
|
|
|
|
+ }
|
|
|
|
+ if ($i==0) $return['content'] = false;
|
|
|
|
+ $return['id'] = $albumID;
|
|
|
|
+ $return['num'] = $i;
|
|
|
|
+ return $return;
|
|
|
|
+}
|
|
function getSmartInfo() {
|
|
function getSmartInfo() {
|
|
|
|
+
|
|
global $database, $sorting;
|
|
global $database, $sorting;
|
|
|
|
+
|
|
|
|
+ // Unsorted
|
|
$query = "SELECT * FROM lychee_photos WHERE album = 0 ORDER BY id $sorting;";
|
|
$query = "SELECT * FROM lychee_photos WHERE album = 0 ORDER BY id $sorting;";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
$i = 0;
|
|
$i = 0;
|
|
while($row = $result->fetch_object()) {
|
|
while($row = $result->fetch_object()) {
|
|
- if($i<3) $return["unsortThumb$i"] = $row->thumbUrl;
|
|
|
|
|
|
+ if ($i<3) $return["unsortedThumb$i"] = $row->thumbUrl;
|
|
$i++;
|
|
$i++;
|
|
}
|
|
}
|
|
- $return['unsortNum'] = $i;
|
|
|
|
|
|
+ $return['unsortedNum'] = $i;
|
|
|
|
|
|
|
|
+ // Public
|
|
$query2 = "SELECT * FROM lychee_photos WHERE public = 1 ORDER BY id $sorting;";
|
|
$query2 = "SELECT * FROM lychee_photos WHERE public = 1 ORDER BY id $sorting;";
|
|
$result2 = $database->query($query2);
|
|
$result2 = $database->query($query2);
|
|
$i = 0;
|
|
$i = 0;
|
|
while($row2 = $result2->fetch_object()) {
|
|
while($row2 = $result2->fetch_object()) {
|
|
- if($i<3) $return["publicThumb$i"] = $row2->thumbUrl;
|
|
|
|
|
|
+ if ($i<3) $return["publicThumb$i"] = $row2->thumbUrl;
|
|
$i++;
|
|
$i++;
|
|
}
|
|
}
|
|
$return['publicNum'] = $i;
|
|
$return['publicNum'] = $i;
|
|
|
|
|
|
|
|
+ // Starred
|
|
$query3 = "SELECT * FROM lychee_photos WHERE star = 1 ORDER BY id $sorting;";
|
|
$query3 = "SELECT * FROM lychee_photos WHERE star = 1 ORDER BY id $sorting;";
|
|
$result3 = $database->query($query3);
|
|
$result3 = $database->query($query3);
|
|
$i = 0;
|
|
$i = 0;
|
|
while($row3 = $result3->fetch_object()) {
|
|
while($row3 = $result3->fetch_object()) {
|
|
- if($i<3) $return["starredThumb$i"] = $row3->thumbUrl;
|
|
|
|
|
|
+ if ($i<3) $return["starredThumb$i"] = $row3->thumbUrl;
|
|
$i++;
|
|
$i++;
|
|
}
|
|
}
|
|
$return['starredNum'] = $i;
|
|
$return['starredNum'] = $i;
|
|
|
|
+
|
|
return $return;
|
|
return $return;
|
|
-}
|
|
|
|
-function getAlbumInfo($albumID) {
|
|
|
|
- global $database;
|
|
|
|
- $query = "SELECT * FROM lychee_albums WHERE id = '$albumID';";
|
|
|
|
- $result = $database->query($query);
|
|
|
|
- $row = $result->fetch_object();
|
|
|
|
- $return['title'] = $row->title;
|
|
|
|
- $return['date'] = $row->sysdate;
|
|
|
|
- $return['public'] = $row->public;
|
|
|
|
- $query = "SELECT COUNT(*) AS num FROM lychee_photos WHERE album = '$albumID';";
|
|
|
|
- $result = $database->query($query);
|
|
|
|
- $row = $result->fetch_object();
|
|
|
|
- $return['num'] = $row->num;
|
|
|
|
- return $return;
|
|
|
|
|
|
+
|
|
}
|
|
}
|
|
function setAlbumTitle($albumID, $title) {
|
|
function setAlbumTitle($albumID, $title) {
|
|
global $database;
|
|
global $database;
|
|
$title = mysqli_real_escape_string($database, urldecode($title));
|
|
$title = mysqli_real_escape_string($database, urldecode($title));
|
|
- if(strlen($title)<1||strlen($title)>30) return false;
|
|
|
|
|
|
+ if (strlen($title)<1||strlen($title)>30) return false;
|
|
$query = "UPDATE lychee_albums SET title = '$title' WHERE id = '$albumID';";
|
|
$query = "UPDATE lychee_albums SET title = '$title' WHERE id = '$albumID';";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
- if(!$result) return false;
|
|
|
|
|
|
+ if (!$result) return false;
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
function deleteAlbum($albumID, $delAll) {
|
|
function deleteAlbum($albumID, $delAll) {
|
|
global $database;
|
|
global $database;
|
|
- if($delAll=="true") {
|
|
|
|
|
|
+ if ($delAll=="true") {
|
|
$query = "SELECT id FROM lychee_photos WHERE album = '$albumID';";
|
|
$query = "SELECT id FROM lychee_photos WHERE album = '$albumID';";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
$error = false;
|
|
$error = false;
|
|
while($row = $result->fetch_object()) {
|
|
while($row = $result->fetch_object()) {
|
|
- if(!deletePhoto($row->id)) $error = true;
|
|
|
|
|
|
+ if (!deletePhoto($row->id)) $error = true;
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
$query = "UPDATE lychee_photos SET album = '0' WHERE album = '$albumID';";
|
|
$query = "UPDATE lychee_photos SET album = '0' WHERE album = '$albumID';";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
- if(!$result) return false;
|
|
|
|
|
|
+ if (!$result) return false;
|
|
}
|
|
}
|
|
- if($albumID!=0) {
|
|
|
|
|
|
+ if ($albumID!=0) {
|
|
$query = "DELETE FROM lychee_albums WHERE id = '$albumID';";
|
|
$query = "DELETE FROM lychee_albums WHERE id = '$albumID';";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
- if(!$result) return false;
|
|
|
|
|
|
+ if (!$result) return false;
|
|
}
|
|
}
|
|
- if($error) return false;
|
|
|
|
|
|
+ if ($error) return false;
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
function getAlbumArchive($albumID) {
|
|
function getAlbumArchive($albumID) {
|
|
@@ -408,7 +451,7 @@ function getAlbumArchive($albumID) {
|
|
$query = "SELECT * FROM lychee_albums WHERE id = '$albumID';";
|
|
$query = "SELECT * FROM lychee_albums WHERE id = '$albumID';";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
$row = $result->fetch_object();
|
|
$row = $result->fetch_object();
|
|
- if($albumID!=0&&is_numeric($albumID))$zipTitle = $row->title;
|
|
|
|
|
|
+ if ($albumID!=0&&is_numeric($albumID))$zipTitle = $row->title;
|
|
$filename = "../uploads/".$zipTitle.".zip";
|
|
$filename = "../uploads/".$zipTitle.".zip";
|
|
|
|
|
|
$zip = new ZipArchive();
|
|
$zip = new ZipArchive();
|
|
@@ -438,64 +481,57 @@ function setAlbumPublic($albumID) {
|
|
$query = "SELECT public FROM lychee_albums WHERE id = '$albumID';";
|
|
$query = "SELECT public FROM lychee_albums WHERE id = '$albumID';";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
$row = $result->fetch_object();
|
|
$row = $result->fetch_object();
|
|
- if($row->public == 0){
|
|
|
|
|
|
+ if ($row->public == 0){
|
|
$public = 1;
|
|
$public = 1;
|
|
- }else{
|
|
|
|
|
|
+ } else {
|
|
$public = 0;
|
|
$public = 0;
|
|
}
|
|
}
|
|
$query = "UPDATE lychee_albums SET public = '$public', password = NULL WHERE id = '$albumID';";
|
|
$query = "UPDATE lychee_albums SET public = '$public', password = NULL WHERE id = '$albumID';";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
- if(!$result) return false;
|
|
|
|
|
|
+ if (!$result) return false;
|
|
|
|
+ if ($public==1) {
|
|
|
|
+ $query = "UPDATE lychee_photos SET public = 0 WHERE album = '$albumID';";
|
|
|
|
+ $result = $database->query($query);
|
|
|
|
+ if (!$result) return false;
|
|
|
|
+ }
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
function setAlbumPassword($albumID, $password) {
|
|
function setAlbumPassword($albumID, $password) {
|
|
global $database;
|
|
global $database;
|
|
$query = "UPDATE lychee_albums SET password = '$password' WHERE id = '$albumID';";
|
|
$query = "UPDATE lychee_albums SET password = '$password' WHERE id = '$albumID';";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
- if(!$result) return false;
|
|
|
|
|
|
+ if (!$result) return false;
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
-function isAlbumPublic($albumID, $password) {
|
|
|
|
|
|
+function checkAlbumPassword($albumID, $password) {
|
|
global $database;
|
|
global $database;
|
|
$query = "SELECT public, password FROM lychee_albums WHERE id = '$albumID';";
|
|
$query = "SELECT public, password FROM lychee_albums WHERE id = '$albumID';";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
$row = $result->fetch_object();
|
|
$row = $result->fetch_object();
|
|
- if(($row->public == 1) && ($row->password == $password)){
|
|
|
|
- return true;
|
|
|
|
- }else{
|
|
|
|
- return false;
|
|
|
|
- }
|
|
|
|
|
|
+ if ($row->password=="") return true;
|
|
|
|
+ else if ($row->password==$password) return true;
|
|
|
|
+ else return false;
|
|
|
|
+}
|
|
|
|
+function isAlbumPublic($albumID) {
|
|
|
|
+ global $database;
|
|
|
|
+ $query = "SELECT public, password FROM lychee_albums WHERE id = '$albumID';";
|
|
|
|
+ $result = $database->query($query);
|
|
|
|
+ $row = $result->fetch_object();
|
|
|
|
+ if ($row->public==1) return true;
|
|
|
|
+ else return false;
|
|
}
|
|
}
|
|
|
|
|
|
// Photo Functions
|
|
// Photo Functions
|
|
-function getPhotos($albumID) {
|
|
|
|
- global $database, $sorting;
|
|
|
|
- switch($albumID) {
|
|
|
|
- case "f": $query = "SELECT id, title, sysdate, public, star, album, thumbUrl FROM lychee_photos WHERE star = 1 ORDER BY id $sorting;";
|
|
|
|
- break;
|
|
|
|
- case "s": $query = "SELECT id, title, sysdate, public, star, album, thumbUrl FROM lychee_photos WHERE public = 1 ORDER BY id $sorting;";
|
|
|
|
- break;
|
|
|
|
- default: $query = "SELECT id, title, sysdate, public, star, album, thumbUrl FROM lychee_photos WHERE album = '$albumID' ORDER BY id $sorting;";
|
|
|
|
- }
|
|
|
|
- $result = $database->query($query);
|
|
|
|
- $i = 0;
|
|
|
|
- while($row = $result->fetch_array()) {
|
|
|
|
- $return[$i] = $row;
|
|
|
|
- $i++;
|
|
|
|
- }
|
|
|
|
- if($i==0) return false;
|
|
|
|
- return $return;
|
|
|
|
-}
|
|
|
|
-function getPhotoInfo($photoID) {
|
|
|
|
|
|
+function getPhoto($photoID, $albumID) {
|
|
global $database;
|
|
global $database;
|
|
- if(!is_numeric($photoID)) {
|
|
|
|
|
|
+ if (!is_numeric($photoID)) {
|
|
$query = "SELECT COUNT(*) AS quantity FROM lychee_photos WHERE import_name = '../uploads/import/$photoID';";
|
|
$query = "SELECT COUNT(*) AS quantity FROM lychee_photos WHERE import_name = '../uploads/import/$photoID';";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
$row = $result->fetch_object();
|
|
$row = $result->fetch_object();
|
|
- if($row->quantity == 0) {
|
|
|
|
|
|
+ if ($row->quantity == 0) {
|
|
importPhoto($photoID, 's');
|
|
importPhoto($photoID, 's');
|
|
}
|
|
}
|
|
- if(is_file("../uploads/import/$photoID")) {
|
|
|
|
|
|
+ if (is_file("../uploads/import/$photoID")) {
|
|
importPhoto($photoID, 's');
|
|
importPhoto($photoID, 's');
|
|
}
|
|
}
|
|
$query = "SELECT * FROM lychee_photos WHERE import_name = '../uploads/import/$photoID' ORDER BY ID DESC;";
|
|
$query = "SELECT * FROM lychee_photos WHERE import_name = '../uploads/import/$photoID' ORDER BY ID DESC;";
|
|
@@ -504,6 +540,32 @@ function getPhotoInfo($photoID) {
|
|
}
|
|
}
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
$return = $result->fetch_array();
|
|
$return = $result->fetch_array();
|
|
|
|
+
|
|
|
|
+ if ($albumID!='false') {
|
|
|
|
+
|
|
|
|
+ if ($return['album']!=0) {
|
|
|
|
+
|
|
|
|
+ $result = $database->query("SELECT public FROM lychee_albums WHERE id = " . $return['album'] . ";");
|
|
|
|
+ $return_album = $result->fetch_array();
|
|
|
|
+ if ($return_album['public']=="1") $return['public'] = "2";
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ $return['original_album'] = $return['album'];
|
|
|
|
+ $return['album'] = $albumID;
|
|
|
|
+
|
|
|
|
+ $nextPhoto = getNextPhotoID($photoID, $albumID, false);
|
|
|
|
+ if ($nextPhoto==$photoID) $return['nextPhoto'] = false;
|
|
|
|
+ else $return['nextPhoto'] = $nextPhoto;
|
|
|
|
+
|
|
|
|
+ $previousPhoto = getPreviousPhotoID($photoID, $albumID, false);
|
|
|
|
+ if ($previousPhoto==$photoID) $return['previousPhoto'] = false;
|
|
|
|
+ else $return['previousPhoto'] = $previousPhoto;
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ unset($return['album_public']);
|
|
|
|
+
|
|
return $return;
|
|
return $return;
|
|
}
|
|
}
|
|
function downloadPhoto($photoID) {
|
|
function downloadPhoto($photoID) {
|
|
@@ -532,26 +594,17 @@ function downloadPhoto($photoID) {
|
|
}
|
|
}
|
|
function setPhotoPublic($photoID, $url) {
|
|
function setPhotoPublic($photoID, $url) {
|
|
global $database;
|
|
global $database;
|
|
- $query = "SELECT public, shortlink FROM lychee_photos WHERE id = '$photoID';";
|
|
|
|
|
|
+ $query = "SELECT public FROM lychee_photos WHERE id = '$photoID';";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
$row = $result->fetch_object();
|
|
$row = $result->fetch_object();
|
|
- if($row->public == 0){
|
|
|
|
|
|
+ if ($row->public == 0){
|
|
$public = 1;
|
|
$public = 1;
|
|
- }else{
|
|
|
|
|
|
+ } else {
|
|
$public = 0;
|
|
$public = 0;
|
|
}
|
|
}
|
|
- if($public==0 || preg_match('/localhost/', $_SERVER['HTTP_REFERER']) || preg_match('\file:\/\/\/', $_SERVER['HTTP_REFERER'])) {
|
|
|
|
- $shortlink = "";
|
|
|
|
- }else{
|
|
|
|
- if($row->shortlink==""){
|
|
|
|
- $shortlink = urlShortner($url);
|
|
|
|
- }else{
|
|
|
|
- $shortlink = $row->shortlink;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- $query = "UPDATE lychee_photos SET public = '$public', shortlink = '$shortlink' WHERE id = '$photoID';";
|
|
|
|
|
|
+ $query = "UPDATE lychee_photos SET public = '$public' WHERE id = '$photoID';";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
- if(!$result) return false;
|
|
|
|
|
|
+ if (!$result) return false;
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
function setPhotoStar($photoID) {
|
|
function setPhotoStar($photoID) {
|
|
@@ -559,7 +612,7 @@ function setPhotoStar($photoID) {
|
|
$query = "SELECT star FROM lychee_photos WHERE id = '$photoID';";
|
|
$query = "SELECT star FROM lychee_photos WHERE id = '$photoID';";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
$row = $result->fetch_object();
|
|
$row = $result->fetch_object();
|
|
- if($row->star == 0) {
|
|
|
|
|
|
+ if ($row->star == 0) {
|
|
$star = 1;
|
|
$star = 1;
|
|
} else {
|
|
} else {
|
|
$star = 0;
|
|
$star = 0;
|
|
@@ -568,95 +621,95 @@ function setPhotoStar($photoID) {
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
-function nextPhoto($photoID, $albumID, $innerCall) {
|
|
|
|
|
|
+function getNextPhotoID($photoID, $albumID, $innerCall) {
|
|
global $database, $sorting;
|
|
global $database, $sorting;
|
|
- if (!$innerCall&&$sorting=="ASC") return previousPhoto($photoID, $albumID, true);
|
|
|
|
|
|
+ if (!$innerCall&&$sorting=="ASC") return getPreviousPhotoID($photoID, $albumID, true);
|
|
switch($albumID) {
|
|
switch($albumID) {
|
|
- case 'f': $query = "SELECT * FROM lychee_photos WHERE id < '$photoID' AND star = '1' ORDER BY id DESC LIMIT 0, 1;";
|
|
|
|
|
|
+ case 'f': $query = "SELECT id FROM lychee_photos WHERE id < '$photoID' AND star = '1' ORDER BY id DESC LIMIT 0, 1;";
|
|
break;
|
|
break;
|
|
- case 's': $query = "SELECT * FROM lychee_photos WHERE id < '$photoID' AND public = '1' ORDER BY id DESC LIMIT 0, 1;";
|
|
|
|
|
|
+ case 's': $query = "SELECT id FROM lychee_photos WHERE id < '$photoID' AND public = '1' ORDER BY id DESC LIMIT 0, 1;";
|
|
break;
|
|
break;
|
|
- default: $query = "SELECT * FROM lychee_photos WHERE id < '$photoID' AND album = '$albumID' ORDER BY id DESC LIMIT 0, 1;";
|
|
|
|
|
|
+ default: $query = "SELECT id FROM lychee_photos WHERE id < '$photoID' AND album = '$albumID' ORDER BY id DESC LIMIT 0, 1;";
|
|
}
|
|
}
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
$return = $result->fetch_array();
|
|
$return = $result->fetch_array();
|
|
- if(!$return || ($return==0)) {
|
|
|
|
|
|
+ if (!$return || ($return==0)) {
|
|
switch($albumID) {
|
|
switch($albumID) {
|
|
- case 'f': $query = "SELECT * FROM lychee_photos WHERE star = '1' ORDER BY id DESC LIMIT 0, 1;";
|
|
|
|
|
|
+ case 'f': $query = "SELECT id FROM lychee_photos WHERE star = '1' ORDER BY id DESC LIMIT 0, 1;";
|
|
break;
|
|
break;
|
|
- case 's': $query = "SELECT * FROM lychee_photos WHERE public = '1' ORDER BY id DESC LIMIT 0, 1;";
|
|
|
|
|
|
+ case 's': $query = "SELECT id FROM lychee_photos WHERE public = '1' ORDER BY id DESC LIMIT 0, 1;";
|
|
break;
|
|
break;
|
|
- default: $query = "SELECT * FROM lychee_photos WHERE album = '$albumID' ORDER BY id DESC LIMIT 0, 1;";
|
|
|
|
|
|
+ default: $query = "SELECT id FROM lychee_photos WHERE album = '$albumID' ORDER BY id DESC LIMIT 0, 1;";
|
|
}
|
|
}
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
$return = $result->fetch_array();
|
|
$return = $result->fetch_array();
|
|
}
|
|
}
|
|
- return $return;
|
|
|
|
|
|
+ return $return['id'];
|
|
}
|
|
}
|
|
-function previousPhoto($photoID, $albumID, $innerCall) {
|
|
|
|
|
|
+function getPreviousPhotoID($photoID, $albumID, $innerCall) {
|
|
global $database, $sorting;
|
|
global $database, $sorting;
|
|
- if (!$innerCall&&$sorting=="ASC") return nextPhoto($photoID, $albumID, true);
|
|
|
|
|
|
+ if (!$innerCall&&$sorting=="ASC") return getNextPhotoID($photoID, $albumID, true);
|
|
switch($albumID) {
|
|
switch($albumID) {
|
|
- case 'f': $query = "SELECT * FROM lychee_photos WHERE id > '$photoID' AND star = '1' ORDER BY id LIMIT 0, 1;";
|
|
|
|
|
|
+ case 'f': $query = "SELECT id FROM lychee_photos WHERE id > '$photoID' AND star = '1' ORDER BY id LIMIT 0, 1;";
|
|
break;
|
|
break;
|
|
- case 's': $query = "SELECT * FROM lychee_photos WHERE id > '$photoID' AND public = '1' ORDER BY id LIMIT 0, 1;";
|
|
|
|
|
|
+ case 's': $query = "SELECT id FROM lychee_photos WHERE id > '$photoID' AND public = '1' ORDER BY id LIMIT 0, 1;";
|
|
break;
|
|
break;
|
|
- default: $query = "SELECT * FROM lychee_photos WHERE id > '$photoID' AND album = '$albumID' ORDER BY id LIMIT 0, 1;";
|
|
|
|
|
|
+ default: $query = "SELECT id FROM lychee_photos WHERE id > '$photoID' AND album = '$albumID' ORDER BY id LIMIT 0, 1;";
|
|
}
|
|
}
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
$return = $result->fetch_array();
|
|
$return = $result->fetch_array();
|
|
- if(!$return || ($return==0)) {
|
|
|
|
|
|
+ if (!$return || ($return==0)) {
|
|
switch($albumID) {
|
|
switch($albumID) {
|
|
- case 'f': $query = "SELECT * FROM lychee_photos WHERE star = '1' ORDER BY id LIMIT 0, 1;";
|
|
|
|
|
|
+ case 'f': $query = "SELECT id FROM lychee_photos WHERE star = '1' ORDER BY id LIMIT 0, 1;";
|
|
break;
|
|
break;
|
|
- case 's': $query = "SELECT * FROM lychee_photos WHERE public = '1' ORDER BY id LIMIT 0, 1;";
|
|
|
|
|
|
+ case 's': $query = "SELECT id FROM lychee_photos WHERE public = '1' ORDER BY id LIMIT 0, 1;";
|
|
break;
|
|
break;
|
|
- default: $query = "SELECT * FROM lychee_photos WHERE album = '$albumID' ORDER BY id LIMIT 0, 1;";
|
|
|
|
|
|
+ default: $query = "SELECT id FROM lychee_photos WHERE album = '$albumID' ORDER BY id LIMIT 0, 1;";
|
|
}
|
|
}
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
$return = $result->fetch_array();
|
|
$return = $result->fetch_array();
|
|
}
|
|
}
|
|
- return $return;
|
|
|
|
|
|
+ return $return['id'];
|
|
}
|
|
}
|
|
function setAlbum($photoID, $newAlbum) {
|
|
function setAlbum($photoID, $newAlbum) {
|
|
global $database;
|
|
global $database;
|
|
$query = "UPDATE lychee_photos SET album = '$newAlbum' WHERE id = '$photoID';";
|
|
$query = "UPDATE lychee_photos SET album = '$newAlbum' WHERE id = '$photoID';";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
- if(!$result) return false;
|
|
|
|
|
|
+ if (!$result) return false;
|
|
else return true;
|
|
else return true;
|
|
}
|
|
}
|
|
function setPhotoTitle($photoID, $title) {
|
|
function setPhotoTitle($photoID, $title) {
|
|
global $database;
|
|
global $database;
|
|
$title = mysqli_real_escape_string($database, urldecode($title));
|
|
$title = mysqli_real_escape_string($database, urldecode($title));
|
|
- if(strlen($title)>30) return false;
|
|
|
|
|
|
+ if (strlen($title)>30) return false;
|
|
$query = "UPDATE lychee_photos SET title = '$title' WHERE id = '$photoID';";
|
|
$query = "UPDATE lychee_photos SET title = '$title' WHERE id = '$photoID';";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
- if(!$result) return false;
|
|
|
|
|
|
+ if (!$result) return false;
|
|
else return true;
|
|
else return true;
|
|
}
|
|
}
|
|
function setPhotoDescription($photoID, $description) {
|
|
function setPhotoDescription($photoID, $description) {
|
|
global $database;
|
|
global $database;
|
|
$description = mysqli_real_escape_string($database, htmlentities($description));
|
|
$description = mysqli_real_escape_string($database, htmlentities($description));
|
|
- if(strlen($description)>160) return false;
|
|
|
|
|
|
+ if (strlen($description)>160) return false;
|
|
$query = "UPDATE lychee_photos SET description = '$description' WHERE id = '$photoID';";
|
|
$query = "UPDATE lychee_photos SET description = '$description' WHERE id = '$photoID';";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
- if(!$result) return false;
|
|
|
|
|
|
+ if (!$result) return false;
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
function deletePhoto($photoID) {
|
|
function deletePhoto($photoID) {
|
|
global $database;
|
|
global $database;
|
|
$query = "SELECT * FROM lychee_photos WHERE id = '$photoID';";
|
|
$query = "SELECT * FROM lychee_photos WHERE id = '$photoID';";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
- if(!$result) return false;
|
|
|
|
|
|
+ if (!$result) return false;
|
|
$row = $result->fetch_object();
|
|
$row = $result->fetch_object();
|
|
$retinaUrl = explode(".", $row->thumbUrl);
|
|
$retinaUrl = explode(".", $row->thumbUrl);
|
|
- $unlink1 = unlink("../".$row->url);
|
|
|
|
- $unlink2 = unlink("../".$row->thumbUrl);
|
|
|
|
- $unlink3 = unlink("../".$retinaUrl[0].'@2x.'.$retinaUrl[1]);
|
|
|
|
|
|
+ $unlink1 = unlink("../uploads/big/".$row->url);
|
|
|
|
+ $unlink2 = unlink("../uploads/thumb/".$row->thumbUrl);
|
|
|
|
+ $unlink3 = unlink("../uploads/thumb/".$retinaUrl[0].'@2x.'.$retinaUrl[1]);
|
|
$query = "DELETE FROM lychee_photos WHERE id = '$photoID';";
|
|
$query = "DELETE FROM lychee_photos WHERE id = '$photoID';";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
- if(!$unlink1 || !$unlink2 || !$unlink3) return false;
|
|
|
|
- if(!$result) return false;
|
|
|
|
|
|
+ if (!$unlink1 || !$unlink2 || !$unlink3) return false;
|
|
|
|
+ if (!$result) return false;
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
function importPhoto($name, $albumID) {
|
|
function importPhoto($name, $albumID) {
|
|
@@ -669,7 +722,7 @@ function importPhoto($name, $albumID) {
|
|
$nameFile[0]['tmp_name'] = $tmp_name;
|
|
$nameFile[0]['tmp_name'] = $tmp_name;
|
|
$nameFile[0]['error'] = 0;
|
|
$nameFile[0]['error'] = 0;
|
|
$nameFile[0]['size'] = $size;
|
|
$nameFile[0]['size'] = $size;
|
|
- if(!upload($nameFile, $albumID)) return false;
|
|
|
|
|
|
+ if (!upload($nameFile, $albumID)) return false;
|
|
else return true;
|
|
else return true;
|
|
}
|
|
}
|
|
function importUrl($url, $albumID) {
|
|
function importUrl($url, $albumID) {
|
|
@@ -685,28 +738,9 @@ function importUrl($url, $albumID) {
|
|
}
|
|
}
|
|
|
|
|
|
// Share Functions
|
|
// Share Functions
|
|
-function urlShortner($url) {
|
|
|
|
- global $database, $bitlyUsername, $bitlyApi;
|
|
|
|
- if($bitlyUsername==""||$bitlyApi=="") return false;
|
|
|
|
- $url = urlencode($url);
|
|
|
|
- $bitlyAPI = "http://api.bit.ly/shorten?version=2.0.1&format=xml&longUrl=$url&login=$bitlyUsername&apiKey=$bitlyApi";
|
|
|
|
-
|
|
|
|
- $data = file_get_contents($bitlyAPI);
|
|
|
|
-
|
|
|
|
- $xml = simplexml_load_string($data);
|
|
|
|
- $shortlink = $xml->results->nodeKeyVal->shortUrl;
|
|
|
|
- return $shortlink;
|
|
|
|
-}
|
|
|
|
-function getShortlink($photoID) {
|
|
|
|
- global $database;
|
|
|
|
- $query = "SELECT * FROM lychee_photos WHERE id = '$photoID';";
|
|
|
|
- $result = $database->query($query);
|
|
|
|
- $row = $result->fetch_object();
|
|
|
|
- return $row->shortlink;
|
|
|
|
-}
|
|
|
|
function facebookHeader($photoID) {
|
|
function facebookHeader($photoID) {
|
|
$database = dbConnect();
|
|
$database = dbConnect();
|
|
- if(!is_numeric($photoID)) return false;
|
|
|
|
|
|
+ if (!is_numeric($photoID)) return false;
|
|
$query = "SELECT * FROM lychee_photos WHERE id = '$photoID';";
|
|
$query = "SELECT * FROM lychee_photos WHERE id = '$photoID';";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
$row = $result->fetch_object();
|
|
$row = $result->fetch_object();
|
|
@@ -723,7 +757,7 @@ function facebookHeader($photoID) {
|
|
function isPhotoPublic($photoID, $password) {
|
|
function isPhotoPublic($photoID, $password) {
|
|
global $database;
|
|
global $database;
|
|
$photoID = mysqli_real_escape_string($database, $photoID);
|
|
$photoID = mysqli_real_escape_string($database, $photoID);
|
|
- if(is_numeric($photoID)) {
|
|
|
|
|
|
+ if (is_numeric($photoID)) {
|
|
$query = "SELECT * FROM lychee_photos WHERE id = '$photoID';";
|
|
$query = "SELECT * FROM lychee_photos WHERE id = '$photoID';";
|
|
} else {
|
|
} else {
|
|
$query = "SELECT * FROM lychee_photos WHERE import_name = '../uploads/import/$photoID';";
|
|
$query = "SELECT * FROM lychee_photos WHERE import_name = '../uploads/import/$photoID';";
|
|
@@ -731,34 +765,48 @@ function isPhotoPublic($photoID, $password) {
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
$row = $result->fetch_object();
|
|
$row = $result->fetch_object();
|
|
if (!is_numeric($photoID)&&!$row) return true;
|
|
if (!is_numeric($photoID)&&!$row) return true;
|
|
- if($row->public == 1) return true;
|
|
|
|
- else return isAlbumPublic($row->album, $password);
|
|
|
|
|
|
+ if ($row->public==1) return true;
|
|
|
|
+ else {
|
|
|
|
+ $cAP = checkAlbumPassword($row->album, $password);
|
|
|
|
+ $iAP = isAlbumPublic($row->album);
|
|
|
|
+ if ($iAP&&$cAP) return true;
|
|
|
|
+ else return false;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
// Search Function
|
|
// Search Function
|
|
function search($term) {
|
|
function search($term) {
|
|
global $database, $sorting;
|
|
global $database, $sorting;
|
|
|
|
+ $return["albums"] = "";
|
|
$term = mysqli_real_escape_string($database, $term);
|
|
$term = mysqli_real_escape_string($database, $term);
|
|
|
|
|
|
$query = "SELECT * FROM lychee_photos WHERE title like '%$term%' OR description like '%$term%';";
|
|
$query = "SELECT * FROM lychee_photos WHERE title like '%$term%' OR description like '%$term%';";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
while($row = $result->fetch_array()) {
|
|
while($row = $result->fetch_array()) {
|
|
- $return['photos'][] = $row;
|
|
|
|
|
|
+ $return['photos'][$row['id']] = $row;
|
|
}
|
|
}
|
|
|
|
|
|
$query = "SELECT * FROM lychee_albums WHERE title like '%$term%';";
|
|
$query = "SELECT * FROM lychee_albums WHERE title like '%$term%';";
|
|
$result = $database->query($query);
|
|
$result = $database->query($query);
|
|
$i=0;
|
|
$i=0;
|
|
- while($row = $result->fetch_array()) {
|
|
|
|
- $return['albums'][$i] = $row;
|
|
|
|
- $query2 = "SELECT thumbUrl FROM lychee_photos WHERE album = '".$row['id']."' ORDER BY id $sorting LIMIT 0, 3;";
|
|
|
|
|
|
+ while($row = $result->fetch_object()) {
|
|
|
|
+
|
|
|
|
+ $return["albums"][$row->id]['id'] = $row->id;
|
|
|
|
+ $return["albums"][$row->id]['title'] = $row->title;
|
|
|
|
+ $return["albums"][$row->id]['public'] = $row->public;
|
|
|
|
+ $return["albums"][$row->id]['sysdate'] = $row->sysdate;
|
|
|
|
+ if ($row->password=="") $return["albums"][$row->id]['password'] = false;
|
|
|
|
+ else $return["albums"][$row->id]['password'] = true;
|
|
|
|
+
|
|
|
|
+ $query2 = "SELECT thumbUrl FROM lychee_photos WHERE album = '".$row->id."' ORDER BY id $sorting LIMIT 0, 3;";
|
|
$result2 = $database->query($query2);
|
|
$result2 = $database->query($query2);
|
|
$k = 0;
|
|
$k = 0;
|
|
while($row2 = $result2->fetch_object()){
|
|
while($row2 = $result2->fetch_object()){
|
|
- $return['albums'][$i]["thumb$k"] = $row2->thumbUrl;
|
|
|
|
|
|
+ $return['albums'][$row->id]["thumb$k"] = $row2->thumbUrl;
|
|
$k++;
|
|
$k++;
|
|
}
|
|
}
|
|
$i++;
|
|
$i++;
|
|
|
|
+
|
|
}
|
|
}
|
|
return $return;
|
|
return $return;
|
|
}
|
|
}
|