| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266 | <?phpnamespace Lychee\Modules;use ZipArchive;use Imagick;use ImagickPixel;final class Photo {	private $photoIDs = null;	public static $validTypes = array(		IMAGETYPE_JPEG,		IMAGETYPE_GIF,		IMAGETYPE_PNG	);	public static $validExtensions = array(		'.jpg',		'.jpeg',		'.png',		'.gif'	);	/**	 * @return boolean Returns true when successful.	 */	public function __construct($photoIDs) {		// Init vars		$this->photoIDs = $photoIDs;		return true;	}	/**	 * Creats new photo(s).	 * Exits on error.	 * Use $returnOnError if you want to handle errors by your own.	 * @return string|false ID of the added photo.	 */	public function add(array $files, $albumID = 0, $returnOnError = false) {		// Check permissions		if (hasPermissions(LYCHEE_UPLOADS)===false||			hasPermissions(LYCHEE_UPLOADS_BIG)===false||			hasPermissions(LYCHEE_UPLOADS_THUMB)===false) {				Log::error(Database::get(), __METHOD__, __LINE__, 'An upload-folder is missing or not readable and writable');				if ($returnOnError===true) return false;				Response::error('An upload-folder is missing or not readable and writable!');		}		// Call plugins		Plugins::get()->activate(__METHOD__, 0, func_get_args());		switch($albumID) {			case 's':				// s for public (share)				$public  = 1;				$star    = 0;				$albumID = 0;				break;			case 'f':				// f for starred (fav)				$star    = 1;				$public  = 0;				$albumID = 0;				break;			case 'r':				// r for recent				$public  = 0;				$star    = 0;				$albumID = 0;				break;			default:				$star   = 0;				$public = 0;				break;		}		// Only process the first photo in the array		$file = $files[0];		// Check if file exceeds the upload_max_filesize directive		if ($file['error']===UPLOAD_ERR_INI_SIZE) {			Log::error(Database::get(), __METHOD__, __LINE__, 'The uploaded file exceeds the upload_max_filesize directive in php.ini');			if ($returnOnError===true) return false;			Response::error('The uploaded file exceeds the upload_max_filesize directive in php.ini!');		}		// Check if file was only partially uploaded		if ($file['error']===UPLOAD_ERR_PARTIAL) {			Log::error(Database::get(), __METHOD__, __LINE__, 'The uploaded file was only partially uploaded');			if ($returnOnError===true) return false;			Response::error('The uploaded file was only partially uploaded!');		}		// Check if writing file to disk failed		if ($file['error']===UPLOAD_ERR_CANT_WRITE) {			Log::error(Database::get(), __METHOD__, __LINE__, 'Failed to write photo to disk');			if ($returnOnError===true) return false;			Response::error('Failed to write photo to disk!');		}		// Check if a extension stopped the file upload		if ($file['error']===UPLOAD_ERR_EXTENSION) {			Log::error(Database::get(), __METHOD__, __LINE__, 'A PHP extension stopped the file upload');			if ($returnOnError===true) return false;			Response::error('A PHP extension stopped the file upload!');		}		// Check if the upload was successful		if ($file['error']!==UPLOAD_ERR_OK) {			Log::error(Database::get(), __METHOD__, __LINE__, 'Upload contains an error (' . $file['error'] . ')');			if ($returnOnError===true) return false;			Response::error('Upload failed!');		}		// Verify extension		$extension = getExtension($file['name'], false);		if (!in_array(strtolower($extension), self::$validExtensions, true)) {			Log::error(Database::get(), __METHOD__, __LINE__, 'Photo format not supported');			if ($returnOnError===true) return false;			Response::error('Photo format not supported!');		}		// Verify image		$type = @exif_imagetype($file['tmp_name']);		if (!in_array($type, self::$validTypes, true)) {			Log::error(Database::get(), __METHOD__, __LINE__, 'Photo type not supported');			if ($returnOnError===true) return false;			Response::error('Photo type not supported!');		}		// Generate id		$id = generateID();		// Set paths		$tmp_name   = $file['tmp_name'];		$photo_name = md5($id) . $extension;		$path       = LYCHEE_UPLOADS_BIG . $photo_name;		// Calculate checksum		$checksum = sha1_file($tmp_name);		if ($checksum===false) {			Log::error(Database::get(), __METHOD__, __LINE__, 'Could not calculate checksum for photo');			if ($returnOnError===true) return false;			Response::error('Could not calculate checksum for photo!');		}		// Check if image exists based on checksum		if ($checksum===false) {			$checksum = '';			$exists   = false;		} else {			$exists = $this->exists($checksum);			if ($exists!==false) {				$photo_name = $exists['photo_name'];				$path       = $exists['path'];				$path_thumb = $exists['path_thumb'];				$medium     = ($exists['medium']==='1' ? 1 : 0);				$exists     = true;			}		}		if ($exists===false) {			// Import if not uploaded via web			if (!is_uploaded_file($tmp_name)) {				if (!@copy($tmp_name, $path)) {					Log::error(Database::get(), __METHOD__, __LINE__, 'Could not copy photo to uploads');					if ($returnOnError===true) return false;					Response::error('Could not copy photo to uploads!');				} else @unlink($tmp_name);			} else {				if (!@move_uploaded_file($tmp_name, $path)) {					Log::error(Database::get(), __METHOD__, __LINE__, 'Could not move photo to uploads');					if ($returnOnError===true) return false;					Response::error('Could not move photo to uploads!');				}			}		} else {			// Photo already exists			// Check if the user wants to skip duplicates			if (Settings::get()['skipDuplicates']==='1') {				Log::notice(Database::get(), __METHOD__, __LINE__, 'Skipped upload of existing photo because skipDuplicates is activated');				if ($returnOnError===true) return false;				Response::warning('This photo has been skipped because it\'s already in your library.');			}		}		// Read infos		$info = $this->getInfo($path);		// Use title of file if IPTC title missing		if ($info['title']==='') $info['title'] = substr(basename($file['name'], $extension), 0, 30);		if ($exists===false) {			// Set orientation based on EXIF data			if ($file['type']==='image/jpeg'&&isset($info['orientation'])&&$info['orientation']!=='') {				$adjustFile = $this->adjustFile($path, $info);				if ($adjustFile!==false) $info = $adjustFile;				else Log::notice(Database::get(), __METHOD__, __LINE__, 'Skipped adjustment of photo (' . $info['title'] . ')');			}			// Set original date			if ($info['takestamp']!==''&&$info['takestamp']!==0) @touch($path, $info['takestamp']);			// Create Thumb			if (!$this->createThumb($path, $photo_name, $info['type'], $info['width'], $info['height'])) {				Log::error(Database::get(), __METHOD__, __LINE__, 'Could not create thumbnail for photo');				if ($returnOnError===true) return false;				Response::error('Could not create thumbnail for photo!');			}			// Create Medium			if ($this->createMedium($path, $photo_name, $info['width'], $info['height'])) $medium = 1;			else $medium = 0;			// Set thumb url			$path_thumb = md5($id) . '.jpeg';		}		// Save to DB		$values = array(LYCHEE_TABLE_PHOTOS, $id, $info['title'], $photo_name, $info['description'], $info['tags'], $info['type'], $info['width'], $info['height'], $info['size'], $info['iso'], $info['aperture'], $info['make'], $info['model'], $info['shutter'], $info['focal'], $info['takestamp'], $path_thumb, $albumID, $public, $star, $checksum, $medium);		$query  = Database::prepare(Database::get(), "INSERT INTO ? (id, title, url, description, tags, type, width, height, size, iso, aperture, make, model, shutter, focal, takestamp, thumbUrl, album, public, star, checksum, medium) VALUES ('?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?')", $values);		$result = Database::execute(Database::get(), $query, __METHOD__, __LINE__);		if ($result===false) {			if ($returnOnError===true) return false;			Response::error('Could not save photo in database!');		}		// Call plugins		Plugins::get()->activate(__METHOD__, 1, func_get_args());		return $id;	}	/**	 * @return array|false Returns a subset of a photo when same photo exists or returns false on failure.	 */	private function exists($checksum, $photoID = null) {		// Exclude $photoID from select when $photoID is set		if (isset($photoID)) $query = Database::prepare(Database::get(), "SELECT id, url, thumbUrl, medium FROM ? WHERE checksum = '?' AND id <> '?' LIMIT 1", array(LYCHEE_TABLE_PHOTOS, $checksum, $photoID));		else                 $query = Database::prepare(Database::get(), "SELECT id, url, thumbUrl, medium FROM ? WHERE checksum = '?' LIMIT 1", array(LYCHEE_TABLE_PHOTOS, $checksum));		$result = Database::execute(Database::get(), $query, __METHOD__, __LINE__);		if ($result===false) return false;		if ($result->num_rows===1) {			$result = $result->fetch_object();			$return = array(				'photo_name' => $result->url,				'path'       => LYCHEE_UPLOADS_BIG . $result->url,				'path_thumb' => $result->thumbUrl,				'medium'     => $result->medium			);			return $return;		}		return false;	}	/**	 * @return boolean Returns true when successful.	 */	private function createThumb($url, $filename, $type, $width, $height) {		// Call plugins		Plugins::get()->activate(__METHOD__, 0, func_get_args());		// Quality of thumbnails		$thumbQuality = 90;		// Size of the thumbnail		$newWidth  = 200;		$newHeight = 200;		$photoName = explode('.', $filename);		$newUrl    = LYCHEE_UPLOADS_THUMB . $photoName[0] . '.jpeg';		$newUrl2x  = LYCHEE_UPLOADS_THUMB . $photoName[0] . '@2x.jpeg';		// Create thumbnails with Imagick		if(Settings::hasImagick()) {			// Read image			$thumb = new Imagick();			$thumb->readImage($url);			$thumb->setImageCompressionQuality($thumbQuality);			$thumb->setImageFormat('jpeg');			// Copy image for 2nd thumb version			$thumb2x = clone $thumb;			// Create 1st version			$thumb->cropThumbnailImage($newWidth, $newHeight);			$thumb->writeImage($newUrl);			$thumb->clear();			$thumb->destroy();			// Create 2nd version			$thumb2x->cropThumbnailImage($newWidth*2, $newHeight*2);			$thumb2x->writeImage($newUrl2x);			$thumb2x->clear();			$thumb2x->destroy();		} else {			// Create image			$thumb   = imagecreatetruecolor($newWidth, $newHeight);			$thumb2x = imagecreatetruecolor($newWidth*2, $newHeight*2);			// Set position			if ($width<$height) {				$newSize     = $width;				$startWidth  = 0;				$startHeight = $height/2 - $width/2;			} else {				$newSize     = $height;				$startWidth  = $width/2 - $height/2;				$startHeight = 0;			}			// Create new image			switch($type) {				case 'image/jpeg': $sourceImg = imagecreatefromjpeg($url); break;				case 'image/png':  $sourceImg = imagecreatefrompng($url); break;				case 'image/gif':  $sourceImg = imagecreatefromgif($url); break;				default:           Log::error(Database::get(), __METHOD__, __LINE__, 'Type of photo is not supported');				                   return false;				                   break;			}			// Create thumb			fastImageCopyResampled($thumb, $sourceImg, 0, 0, $startWidth, $startHeight, $newWidth, $newHeight, $newSize, $newSize);			imagejpeg($thumb, $newUrl, $thumbQuality);			imagedestroy($thumb);			// Create retina thumb			fastImageCopyResampled($thumb2x, $sourceImg, 0, 0, $startWidth, $startHeight, $newWidth*2, $newHeight*2, $newSize, $newSize);			imagejpeg($thumb2x, $newUrl2x, $thumbQuality);			imagedestroy($thumb2x);			// Free memory			imagedestroy($sourceImg);		}		// Call plugins		Plugins::get()->activate(__METHOD__, 1, func_get_args());		return true;	}	/**	 * Creates a smaller version of a photo when its size is bigger than a preset size.	 * Photo must be big enough and Imagick must be installed and activated.	 * @return boolean Returns true when successful.	 */	private function createMedium($url, $filename, $width, $height) {		// Excepts the following:		// (string) $url = Path to the photo-file		// (string) $filename = Name of the photo-file		// (int) $width = Width of the photo		// (int) $height = Height of the photo		// Call plugins		Plugins::get()->activate(__METHOD__, 0, func_get_args());		// Set to true when creation of medium-photo failed		$error = false;		// Size of the medium-photo		// When changing these values,		// also change the size detection in the front-end		$newWidth  = 1920;		$newHeight = 1080;		// Check permissions		if (hasPermissions(LYCHEE_UPLOADS_MEDIUM)===false) {			// Permissions are missing			Log::notice(Database::get(), __METHOD__, __LINE__, 'Skipped creation of medium-photo, because uploads/medium/ is missing or not readable and writable.');			$error = true;		}		// Is photo big enough?		// Is Imagick installed and activated?		if (($error===false)&&			($width>$newWidth||$height>$newHeight)&&			(extension_loaded('imagick')&&Settings::get()['imagick']==='1')) {			$newUrl = LYCHEE_UPLOADS_MEDIUM . $filename;			// Read image			$medium = new Imagick();			$medium->readImage($url);			// Adjust image			$medium->scaleImage($newWidth, $newHeight, true);			// Save image			try { $medium->writeImage($newUrl); }			catch (ImagickException $err) {				Log::notice(Database::get(), __METHOD__, __LINE__, 'Could not save medium-photo (' . $err->getMessage() . ')');				$error = true;			}			$medium->clear();			$medium->destroy();		} else {			// Photo too small or			// Medium is deactivated or			// Imagick not installed			$error = true;		}		// Call plugins		Plugins::get()->activate(__METHOD__, 1, func_get_args());		if ($error===true) return false;		return true;	}	/**	 * Rotates and flips a photo based on its EXIF orientation.	 * @return array|false Returns an array with the new orientation, width, height or false on failure.	 */	public function adjustFile($path, array $info) {		// Excepts the following:		// (string) $path = Path to the photo-file		// (array) $info = ['orientation', 'width', 'height']		// Call plugins		Plugins::get()->activate(__METHOD__, 0, func_get_args());		$swapSize = false;		if (extension_loaded('imagick')&&Settings::get()['imagick']==='1') {			switch ($info['orientation']) {				case 3:					$rotateImage = 180;					break;				case 6:					$rotateImage = 90;					$swapSize    = true;					break;				case 8:					$rotateImage = 270;					$swapSize    = true;					break;				default:					return false;					break;			}			if ($rotateImage!==0) {				$image = new Imagick();				$image->readImage($path);				$image->rotateImage(new ImagickPixel(), $rotateImage);				$image->setImageOrientation(1);				$image->writeImage($path);				$image->clear();				$image->destroy();			}		} else {			$newWidth  = $info['width'];			$newHeight = $info['height'];			$sourceImg = imagecreatefromjpeg($path);			switch ($info['orientation']) {				case 2:					// mirror					// not yet implemented					return false;					break;				case 3:					$sourceImg = imagerotate($sourceImg, -180, 0);					break;				case 4:					// rotate 180 and mirror					// not yet implemented					return false;					break;				case 5:					// rotate 90 and mirror					// not yet implemented					return false;					break;				case 6:					$sourceImg = imagerotate($sourceImg, -90, 0);					$newWidth  = $info['height'];					$newHeight = $info['width'];					$swapSize  = true;					break;				case 7:					// rotate -90 and mirror					// not yet implemented					return false;					break;				case 8:					$sourceImg = imagerotate($sourceImg, 90, 0);					$newWidth  = $info['height'];					$newHeight = $info['width'];					$swapSize  = true;					break;				default:					return false;					break;			}			// Recreate photo			$newSourceImg = imagecreatetruecolor($newWidth, $newHeight);			imagecopyresampled($newSourceImg, $sourceImg, 0, 0, 0, 0, $newWidth, $newHeight, $newWidth, $newHeight);			imagejpeg($newSourceImg, $path, 100);			// Free memory			imagedestroy($sourceImg);			imagedestroy($newSourceImg);		}		// Call plugins		Plugins::get()->activate(__METHOD__, 1, func_get_args());		// SwapSize should be true when the image has been rotated		// Return new dimensions in this case		if ($swapSize===true) {			$swapSize       = $info['width'];			$info['width']  = $info['height'];			$info['height'] = $swapSize;		}		return $info;	}	/**	 * Rurns photo-attributes into a front-end friendly format. Note that some attributes remain unchanged.	 * @return array Returns photo-attributes in a normalized structure.	 */	public static function prepareData(array $data) {		// Excepts the following:		// (array) $data = ['id', 'title', 'tags', 'public', 'star', 'album', 'thumbUrl', 'takestamp', 'url']		// Init		$photo = null;		// Set unchanged attributes		$photo['id']     = $data['id'];		$photo['title']  = $data['title'];		$photo['tags']   = $data['tags'];		$photo['public'] = $data['public'];		$photo['star']   = $data['star'];		$photo['album']  = $data['album'];		// Parse urls		$photo['thumbUrl'] = LYCHEE_URL_UPLOADS_THUMB . $data['thumbUrl'];		$photo['url']      = LYCHEE_URL_UPLOADS_BIG . $data['url'];		// Use takestamp as sysdate when possible		if (isset($data['takestamp'])&&$data['takestamp']!=='0') {			// Use takestamp			$photo['cameraDate'] = '1';			$photo['sysdate']    = strftime('%d %B %Y', $data['takestamp']);		} else {			// Use sysstamp from the id			$photo['cameraDate'] = '0';			$photo['sysdate']    = strftime('%d %B %Y', substr($data['id'], 0, -4));		}		return $photo;	}	/**	 * @return array|false Returns an array with information about the photo or false on failure.	 */	public function get($albumID) {		// Excepts the following:		// (string) $albumID = Album which is currently visible to the user		// Check dependencies		Validator::required(isset($this->photoIDs), __METHOD__);		// Call plugins		Plugins::get()->activate(__METHOD__, 0, func_get_args());		// Get photo		$query  = Database::prepare(Database::get(), "SELECT * FROM ? WHERE id = '?' LIMIT 1", array(LYCHEE_TABLE_PHOTOS, $this->photoIDs));		$photos = Database::execute(Database::get(), $query, __METHOD__, __LINE__);		if ($photos===false) return false;		// Get photo object		$photo = $photos->fetch_assoc();		// Photo not found?		if ($photo===null) {			Log::error(Database::get(), __METHOD__, __LINE__, 'Could not find specified photo');			return false;		}		// Parse photo		$photo['sysdate'] = strftime('%d %b. %Y', substr($photo['id'], 0, -4));		if (strlen($photo['takestamp'])>1) $photo['takedate'] = strftime('%d %b. %Y', $photo['takestamp']);		// Parse medium		if ($photo['medium']==='1') $photo['medium'] = LYCHEE_URL_UPLOADS_MEDIUM . $photo['url'];		else                        $photo['medium'] = '';		// Parse paths		$photo['url']      = LYCHEE_URL_UPLOADS_BIG . $photo['url'];		$photo['thumbUrl'] = LYCHEE_URL_UPLOADS_THUMB . $photo['thumbUrl'];		if ($albumID!='false') {			// Only show photo as public when parent album is public			// Check if parent album is not 'Unsorted'			if ($photo['album']!=='0') {				// Get album				$query  = Database::prepare(Database::get(), "SELECT public FROM ? WHERE id = '?' LIMIT 1", array(LYCHEE_TABLE_ALBUMS, $photo['album']));				$albums = Database::execute(Database::get(), $query, __METHOD__, __LINE__);				if ($albums===false) return false;				// Get album object				$album = $albums->fetch_assoc();				// Photo not found?				if ($photo===null) {					Log::error(Database::get(), __METHOD__, __LINE__, 'Could not find specified album');					return false;				}				// Parse album				$photo['public'] = ($album['public']==='1' ? '2' : $photo['public']);			}			$photo['original_album'] = $photo['album'];			$photo['album']          = $albumID;		}		// Call plugins		Plugins::get()->activate(__METHOD__, 1, func_get_args());		return $photo;	}	/**	 * Reads and parses information and metadata out of a photo.	 * @return array Returns an array of photo information and metadata.	 */	public function getInfo($url) {		// Functions returns information and metadata of a photo		// Excepts the following:		// (string) $url = Path to photo-file		// Returns the following:		// (array) $return		// Call plugins		Plugins::get()->activate(__METHOD__, 0, func_get_args());		$iptcArray = array();		$info      = getimagesize($url, $iptcArray);		// General information		$return['type']        = $info['mime'];		$return['width']       = $info[0];		$return['height']      = $info[1];		$return['title']       = '';		$return['description'] = '';		$return['orientation'] = '';		$return['iso']         = '';		$return['aperture']    = '';		$return['make']        = '';		$return['model']       = '';		$return['shutter']     = '';		$return['focal']       = '';		$return['takestamp']   = 0;		$return['lens']        = '';		$return['tags']        = array();		$return['position']    = '';		$return['latitude']    = '';		$return['longitude']   = '';		$return['altitude']    = '';		// Size		$size = filesize($url)/1024;		if ($size>=1024) $return['size'] = round($size/1024, 1) . ' MB';		else $return['size'] = round($size, 1) . ' KB';		// IPTC Metadata		// See https://www.iptc.org/std/IIM/4.2/specification/IIMV4.2.pdf for mapping		if(isset($iptcArray['APP13'])) {			$iptcInfo = iptcparse($iptcArray['APP13']);			if (is_array($iptcInfo)) {				// Title				if (!empty($iptcInfo['2#105'][0])) $return['title'] = $iptcInfo['2#105'][0];				else if (!empty($iptcInfo['2#005'][0])) $return['title'] = $iptcInfo['2#005'][0];				// Description				if (!empty($iptcInfo['2#120'][0])) $return['description'] = $iptcInfo['2#120'][0];				// Tags				if (!empty($iptcInfo['2#025'])) $return['tags'] = implode(',', $iptcInfo['2#025']);				// Position				$fields = array();				if (!empty($iptcInfo['2#090'])) $fields[] = trim($iptcInfo['2#090'][0]);				if (!empty($iptcInfo['2#092'])) $fields[] = trim($iptcInfo['2#092'][0]);				if (!empty($iptcInfo['2#095'])) $fields[] = trim($iptcInfo['2#095'][0]);				if (!empty($iptcInfo['2#101'])) $fields[] = trim($iptcInfo['2#101'][0]);				if (!empty($fields)) $return['position'] = implode(', ', $fields);			}		}		// Read EXIF		if ($info['mime']=='image/jpeg') $exif = exif_read_data($url, 'EXIF', 0);		else $exif = false;		// EXIF Metadata		if ($exif!==false) {			// Orientation			if (isset($exif['Orientation'])) $return['orientation'] = $exif['Orientation'];			else if (isset($exif['IFD0']['Orientation'])) $return['orientation'] = $exif['IFD0']['Orientation'];			// ISO			if (!empty($exif['ISOSpeedRatings'])) $return['iso'] = $exif['ISOSpeedRatings'];			// Aperture			if (!empty($exif['COMPUTED']['ApertureFNumber'])) $return['aperture'] = $exif['COMPUTED']['ApertureFNumber'];			// Make			if (!empty($exif['Make'])) $return['make'] = trim($exif['Make']);			// Model			if (!empty($exif['Model'])) $return['model'] = trim($exif['Model']);			// Exposure			if (!empty($exif['ExposureTime'])) $return['shutter'] = $exif['ExposureTime'] . ' s';			// Focal Length			if (!empty($exif['FocalLength'])) {				if (strpos($exif['FocalLength'], '/')!==false) {					$temp = explode('/', $exif['FocalLength'], 2);					$temp = $temp[0] / $temp[1];					$temp = round($temp, 1);					$return['focal'] = $temp . ' mm';				} else {					$return['focal'] = $exif['FocalLength'] . ' mm';				}			}			// Takestamp			if (!empty($exif['DateTimeOriginal'])) $return['takestamp'] = strtotime($exif['DateTimeOriginal']);			// Lens field from Lightroom			if (!empty($exif['UndefinedTag:0xA434'])) $return['lens'] = trim($exif['UndefinedTag:0xA434']);			// Deal with GPS coordinates			if (!empty($exif['GPSLatitude']) && !empty($exif['GPSLatitudeRef'])) $return['latitude'] = getGPSCoordinate($exif['GPSLatitude'], $exif['GPSLatitudeRef']);			if (!empty($exif['GPSLongitude']) && !empty($exif['GPSLongitudeRef'])) $return['longitude'] = getGPSCoordinate($exif['GPSLongitude'], $exif['GPSLongitudeRef']);		}		// Call plugins		Plugins::get()->activate(__METHOD__, 1, func_get_args());		return $return;	}	/**	 * Starts a download of a photo.	 * @return resource|boolean Sends a ZIP-file or returns false on failure.	 */	public function getArchive() {		// Check dependencies		Validator::required(isset($this->photoIDs), __METHOD__);		// Call plugins		Plugins::get()->activate(__METHOD__, 0, func_get_args());		// Get photo		$query  = Database::prepare(Database::get(), "SELECT title, url FROM ? WHERE id = '?' LIMIT 1", array(LYCHEE_TABLE_PHOTOS, $this->photoIDs));		$photos = Database::execute(Database::get(), $query, __METHOD__, __LINE__);		if ($photos===false) return false;		// Get photo object		$photo = $photos->fetch_object();		// Photo not found?		if ($photo===null) {			Log::error(Database::get(), __METHOD__, __LINE__, 'Could not find specified photo');			return false;		}		// Get extension		$extension = getExtension($photo->url, false);		if (empty($extension)===true) {			Log::error(Database::get(), __METHOD__, __LINE__, 'Invalid photo extension');			return false;		}		// Illicit chars		$badChars = array_merge(			array_map('chr', range(0,31)),			array("<", ">", ":", '"', "/", "\\", "|", "?", "*")		);		// Parse title		if ($photo->title=='') $photo->title = 'Untitled';		// Escape title		$photo->title = str_replace($badChars, '', $photo->title);		// Set headers		header("Content-Type: application/octet-stream");		header("Content-Disposition: attachment; filename=\"" . $photo->title . $extension . "\"");		header("Content-Length: " . filesize(LYCHEE_UPLOADS_BIG . $photo->url));		// Send file		readfile(LYCHEE_UPLOADS_BIG . $photo->url);		// Call plugins		Plugins::get()->activate(__METHOD__, 1, func_get_args());		return true;	}	/**	 * Sets the title of a photo.	 * @return boolean Returns true when successful.	 */	public function setTitle($title = 'Untitled') {		// Check dependencies		Validator::required(isset($this->photoIDs), __METHOD__);		// Call plugins		Plugins::get()->activate(__METHOD__, 0, func_get_args());		// Set title		$query  = Database::prepare(Database::get(), "UPDATE ? SET title = '?' WHERE id IN (?)", array(LYCHEE_TABLE_PHOTOS, $title, $this->photoIDs));		$result = Database::execute(Database::get(), $query, __METHOD__, __LINE__);		// Call plugins		Plugins::get()->activate(__METHOD__, 1, func_get_args());		if ($result===false) return false;		return true;	}	/**	 * Sets the description of a photo.	 * @return boolean Returns true when successful.	 */	public function setDescription($description) {		// Check dependencies		Validator::required(isset($this->photoIDs), __METHOD__);		// Call plugins		Plugins::get()->activate(__METHOD__, 0, func_get_args());		// Set description		$query  = Database::prepare(Database::get(), "UPDATE ? SET description = '?' WHERE id IN ('?')", array(LYCHEE_TABLE_PHOTOS, $description, $this->photoIDs));		$result = Database::execute(Database::get(), $query, __METHOD__, __LINE__);		// Call plugins		Plugins::get()->activate(__METHOD__, 1, func_get_args());		if ($result===false) return false;		return true;	}	/**	 * Toggles the star property of a photo.	 * @return boolean Returns true when successful.	 */	public function setStar() {		// Check dependencies		Validator::required(isset($this->photoIDs), __METHOD__);		// Call plugins		Plugins::get()->activate(__METHOD__, 0, func_get_args());		// Init vars		$error = false;		// Get photos		$query  = Database::prepare(Database::get(), "SELECT id, star FROM ? WHERE id IN (?)", array(LYCHEE_TABLE_PHOTOS, $this->photoIDs));		$photos = Database::execute(Database::get(), $query, __METHOD__, __LINE__);		if ($photos===false) return false;		// For each photo		while ($photo = $photos->fetch_object()) {			// Invert star			$star = ($photo->star==0 ? 1 : 0);			// Set star			$query  = Database::prepare(Database::get(), "UPDATE ? SET star = '?' WHERE id = '?'", array(LYCHEE_TABLE_PHOTOS, $star, $photo->id));			$result = Database::execute(Database::get(), $query, __METHOD__, __LINE__);			if ($result===false) $error = true;		}		// Call plugins		Plugins::get()->activate(__METHOD__, 1, func_get_args());		if ($error===true) return false;		return true;	}	/**	 * Checks if photo or parent album is public.	 * @return integer 0 = Photo private and parent album private	 *                 1 = Album public, but password incorrect	 *                 2 = Photo public or album public and password correct	 */	public function getPublic($password) {		// Check dependencies		Validator::required(isset($this->photoIDs), __METHOD__);		// Call plugins		Plugins::get()->activate(__METHOD__, 0, func_get_args());		// Get photo		$query  = Database::prepare(Database::get(), "SELECT public, album FROM ? WHERE id = '?' LIMIT 1", array(LYCHEE_TABLE_PHOTOS, $this->photoIDs));		$photos = Database::execute(Database::get(), $query, __METHOD__, __LINE__);		if ($photos===false) return 0;		// Get photo object		$photo = $photos->fetch_object();		// Photo not found?		if ($photo===null) {			Log::error(Database::get(), __METHOD__, __LINE__, 'Could not find specified photo');			return false;		}		// Check if public		if ($photo->public==='1') {			// Photo public			return 2;		} else {			// Check if album public			$album = new Album($photo->album);			$agP   = $album->getPublic();			$acP   = $album->checkPassword($password);			// Album public and password correct			if ($agP===true&&$acP===true) return 2;			// Album public, but password incorrect			if ($agP===true&&$acP===false) return 1;		}		// Call plugins		Plugins::get()->activate(__METHOD__, 1, func_get_args());		// Photo private		return 0;	}	/**	 * Toggles the public property of a photo.	 * @return boolean Returns true when successful.	 */	public function setPublic() {		// Check dependencies		Validator::required(isset($this->photoIDs), __METHOD__);		// Call plugins		Plugins::get()->activate(__METHOD__, 0, func_get_args());		// Get public		$query  = Database::prepare(Database::get(), "SELECT public FROM ? WHERE id = '?' LIMIT 1", array(LYCHEE_TABLE_PHOTOS, $this->photoIDs));		$photos = Database::execute(Database::get(), $query, __METHOD__, __LINE__);		if ($photos===false) return false;		// Get photo object		$photo = $photos->fetch_object();		// Photo not found?		if ($photo===null) {			Log::error(Database::get(), __METHOD__, __LINE__, 'Could not find specified photo');			return false;		}		// Invert public		$public = ($photo->public==0 ? 1 : 0);		// Set public		$query  = Database::prepare(Database::get(), "UPDATE ? SET public = '?' WHERE id = '?'", array(LYCHEE_TABLE_PHOTOS, $public, $this->photoIDs));		$result = Database::execute(Database::get(), $query, __METHOD__, __LINE__);		// Call plugins		Plugins::get()->activate(__METHOD__, 1, func_get_args());		if ($result===false) return false;		return true;	}	/**	 * Sets the parent album of a photo.	 * @return boolean Returns true when successful.	 */	function setAlbum($albumID) {		// Check dependencies		Validator::required(isset($this->photoIDs), __METHOD__);		// Call plugins		Plugins::get()->activate(__METHOD__, 0, func_get_args());		// Set album		$query  = Database::prepare(Database::get(), "UPDATE ? SET album = '?' WHERE id IN (?)", array(LYCHEE_TABLE_PHOTOS, $albumID, $this->photoIDs));		$result = Database::execute(Database::get(), $query, __METHOD__, __LINE__);		// Call plugins		Plugins::get()->activate(__METHOD__, 1, func_get_args());		if ($result===false) return false;		return true;	}	/**	 * Sets the tags of a photo.	 * @return boolean Returns true when successful.	 */	public function setTags($tags) {		// Excepts the following:		// (string) $tags = Comma separated list of tags with a maximum length of 1000 chars		// Check dependencies		Validator::required(isset($this->photoIDs), __METHOD__);		// Call plugins		Plugins::get()->activate(__METHOD__, 0, func_get_args());		// Parse tags		$tags = preg_replace('/(\ ,\ )|(\ ,)|(,\ )|(,{1,}\ {0,})|(,$|^,)/', ',', $tags);		$tags = preg_replace('/,$|^,|(\ ){0,}$/', '', $tags);		// Set tags		$query  = Database::prepare(Database::get(), "UPDATE ? SET tags = '?' WHERE id IN (?)", array(LYCHEE_TABLE_PHOTOS, $tags, $this->photoIDs));		$result = Database::execute(Database::get(), $query, __METHOD__, __LINE__);		// Call plugins		Plugins::get()->activate(__METHOD__, 1, func_get_args());		if ($result===false) return false;		return true;	}	/**	 * Duplicates a photo.	 * @return boolean Returns true when successful.	 */	public function duplicate() {		// Check dependencies		Validator::required(isset($this->photoIDs), __METHOD__);		// Call plugins		Plugins::get()->activate(__METHOD__, 0, func_get_args());		// Init vars		$error = false;		// Get photos		$query  = Database::prepare(Database::get(), "SELECT id, checksum FROM ? WHERE id IN (?)", array(LYCHEE_TABLE_PHOTOS, $this->photoIDs));		$photos = Database::execute(Database::get(), $query, __METHOD__, __LINE__);		if ($photos===false) return false;		// For each photo		while ($photo = $photos->fetch_object()) {			// Generate id			$id = generateID();			// Duplicate entry			$values = array(LYCHEE_TABLE_PHOTOS, $id, LYCHEE_TABLE_PHOTOS, $photo->id);			$query  = Database::prepare(Database::get(), "INSERT INTO ? (id, title, url, description, tags, type, width, height, size, iso, aperture, make, model, shutter, focal, takestamp, thumbUrl, album, public, star, checksum) SELECT '?' AS id, title, url, description, tags, type, width, height, size, iso, aperture, make, model, shutter, focal, takestamp, thumbUrl, album, public, star, checksum FROM ? WHERE id = '?'", $values);			$result = Database::execute(Database::get(), $query, __METHOD__, __LINE__);			if ($result===false) $error = true;		}		if ($error===true) return false;		return true;	}	/**	 * Deletes a photo with all its data and files.	 * @return boolean Returns true when successful.	 */	public function delete() {		// Check dependencies		Validator::required(isset($this->photoIDs), __METHOD__);		// Call plugins		Plugins::get()->activate(__METHOD__, 0, func_get_args());		// Init vars		$error = false;		// Get photos		$query  = Database::prepare(Database::get(), "SELECT id, url, thumbUrl, checksum FROM ? WHERE id IN (?)", array(LYCHEE_TABLE_PHOTOS, $this->photoIDs));		$photos = Database::execute(Database::get(), $query, __METHOD__, __LINE__);		if ($photos===false) return false;		// For each photo		while ($photo = $photos->fetch_object()) {			// Check if other photos are referring to this images			// If so, only delete the db entry			if ($this->exists($photo->checksum, $photo->id)===false) {				// Get retina thumb url				$thumbUrl2x = explode(".", $photo->thumbUrl);				$thumbUrl2x = $thumbUrl2x[0] . '@2x.' . $thumbUrl2x[1];				// Delete big				if (file_exists(LYCHEE_UPLOADS_BIG . $photo->url)&&!unlink(LYCHEE_UPLOADS_BIG . $photo->url)) {					Log::error(Database::get(), __METHOD__, __LINE__, 'Could not delete photo in uploads/big/');					$error = true;				}				// Delete medium				if (file_exists(LYCHEE_UPLOADS_MEDIUM . $photo->url)&&!unlink(LYCHEE_UPLOADS_MEDIUM . $photo->url)) {					Log::error(Database::get(), __METHOD__, __LINE__, 'Could not delete photo in uploads/medium/');					$error = true;				}				// Delete thumb				if (file_exists(LYCHEE_UPLOADS_THUMB . $photo->thumbUrl)&&!unlink(LYCHEE_UPLOADS_THUMB . $photo->thumbUrl)) {					Log::error(Database::get(), __METHOD__, __LINE__, 'Could not delete photo in uploads/thumb/');					$error = true;				}				// Delete thumb@2x				if (file_exists(LYCHEE_UPLOADS_THUMB . $thumbUrl2x)&&!unlink(LYCHEE_UPLOADS_THUMB . $thumbUrl2x)) {					Log::error(Database::get(), __METHOD__, __LINE__, 'Could not delete high-res photo in uploads/thumb/');					$error = true;				}			}			// Delete db entry			$query  = Database::prepare(Database::get(), "DELETE FROM ? WHERE id = '?'", array(LYCHEE_TABLE_PHOTOS, $photo->id));			$result = Database::execute(Database::get(), $query, __METHOD__, __LINE__);			if ($result===false) $error = true;		}		// Call plugins		Plugins::get()->activate(__METHOD__, 1, func_get_args());		if ($error===true) return false;		return true;	}}?>
 |