|
@@ -21,6 +21,9 @@ final class Photo {
|
|
'.gif'
|
|
'.gif'
|
|
);
|
|
);
|
|
|
|
|
|
|
|
+
|
|
|
|
+ * @return boolean Returns true when successful.
|
|
|
|
+ */
|
|
public function __construct($photoIDs) {
|
|
public function __construct($photoIDs) {
|
|
|
|
|
|
|
|
|
|
@@ -251,11 +254,14 @@ final class Photo {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ * @return array|false Returns a subset of a photo when same photo exists or returns false on failure.
|
|
|
|
+ */
|
|
private function exists($checksum, $photoID = null) {
|
|
private function exists($checksum, $photoID = null) {
|
|
|
|
|
|
|
|
|
|
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));
|
|
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));
|
|
+ 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__);
|
|
$result = Database::execute(Database::get(), $query, __METHOD__, __LINE__);
|
|
|
|
|
|
@@ -280,6 +286,9 @@ final class Photo {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ * @return boolean Returns true when successful.
|
|
|
|
+ */
|
|
private function createThumb($url, $filename, $type, $width, $height) {
|
|
private function createThumb($url, $filename, $type, $width, $height) {
|
|
|
|
|
|
|
|
|
|
@@ -369,17 +378,18 @@ final class Photo {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ * Creates a smaller version of a photo when its size is bigger than a preset size.
|
|
|
|
+ * Photo must be big enough, medium must be activated and Imagick must be installed and activated.
|
|
|
|
+ * @return boolean Returns true when successful.
|
|
|
|
+ */
|
|
private function createMedium($url, $filename, $width, $height) {
|
|
private function createMedium($url, $filename, $width, $height) {
|
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
|
Plugins::get()->activate(__METHOD__, 0, func_get_args());
|
|
Plugins::get()->activate(__METHOD__, 0, func_get_args());
|
|
@@ -446,15 +456,15 @@ final class Photo {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ * 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) {
|
|
public function adjustFile($path, array $info) {
|
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
|
Plugins::get()->activate(__METHOD__, 0, func_get_args());
|
|
Plugins::get()->activate(__METHOD__, 0, func_get_args());
|
|
@@ -577,13 +587,14 @@ final class Photo {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ * 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) {
|
|
public static function prepareData(array $data) {
|
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
|
$photo = null;
|
|
$photo = null;
|
|
@@ -619,13 +630,13 @@ final class Photo {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ * @return array|false Returns an array with information about the photo or false on failure.
|
|
|
|
+ */
|
|
public function get($albumID) {
|
|
public function get($albumID) {
|
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
|
Validator::required(isset($this->photoIDs), __METHOD__);
|
|
Validator::required(isset($this->photoIDs), __METHOD__);
|
|
@@ -637,7 +648,7 @@ final class Photo {
|
|
$query = Database::prepare(Database::get(), "SELECT * FROM ? WHERE id = '?' LIMIT 1", array(LYCHEE_TABLE_PHOTOS, $this->photoIDs));
|
|
$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__);
|
|
$photos = Database::execute(Database::get(), $query, __METHOD__, __LINE__);
|
|
|
|
|
|
- if ($photos===false) Response::error('Could not get photo from database!');
|
|
+ if ($photos===false) return false;
|
|
|
|
|
|
|
|
|
|
$photo = $photos->fetch_assoc();
|
|
$photo = $photos->fetch_assoc();
|
|
@@ -664,7 +675,7 @@ final class Photo {
|
|
$query = Database::prepare(Database::get(), "SELECT public FROM ? WHERE id = '?' LIMIT 1", array(LYCHEE_TABLE_ALBUMS, $photo['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__);
|
|
$albums = Database::execute(Database::get(), $query, __METHOD__, __LINE__);
|
|
|
|
|
|
- if ($albums===false) Response::error('Could not get album of photo from database!');
|
|
+ if ($albums===false) return false;
|
|
|
|
|
|
|
|
|
|
$album = $albums->fetch_assoc();
|
|
$album = $albums->fetch_assoc();
|
|
@@ -686,6 +697,10 @@ final class 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) {
|
|
public function getInfo($url) {
|
|
|
|
|
|
|
|
|
|
@@ -791,13 +806,12 @@ final class Photo {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ * Starts a download of a photo.
|
|
|
|
+ * @return resource|boolean Sends a ZIP-file or returns false on failure.
|
|
|
|
+ */
|
|
public function getArchive() {
|
|
public function getArchive() {
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
|
|
Validator::required(isset($this->photoIDs), __METHOD__);
|
|
Validator::required(isset($this->photoIDs), __METHOD__);
|
|
|
|
|
|
@@ -808,7 +822,7 @@ final class Photo {
|
|
$query = Database::prepare(Database::get(), "SELECT title, url FROM ? WHERE id = '?' LIMIT 1", array(LYCHEE_TABLE_PHOTOS, $this->photoIDs));
|
|
$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__);
|
|
$photos = Database::execute(Database::get(), $query, __METHOD__, __LINE__);
|
|
|
|
|
|
- if ($photos===false) Response::error('Could not get photo from database!');
|
|
+ if ($photos===false) return false;
|
|
|
|
|
|
|
|
|
|
$photo = $photos->fetch_object();
|
|
$photo = $photos->fetch_object();
|
|
@@ -816,7 +830,7 @@ final class Photo {
|
|
|
|
|
|
if ($photo===null) {
|
|
if ($photo===null) {
|
|
Log::error(Database::get(), __METHOD__, __LINE__, 'Could not find specified photo');
|
|
Log::error(Database::get(), __METHOD__, __LINE__, 'Could not find specified photo');
|
|
- Response::error('Could not find specified photo!');
|
|
+ return false;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -853,15 +867,12 @@ final class Photo {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ * Sets the title of a photo.
|
|
|
|
+ * @return boolean Returns true when successful.
|
|
|
|
+ */
|
|
public function setTitle($title) {
|
|
public function setTitle($title) {
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
|
|
Validator::required(isset($this->photoIDs), __METHOD__);
|
|
Validator::required(isset($this->photoIDs), __METHOD__);
|
|
|
|
|
|
@@ -880,15 +891,12 @@ final class Photo {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ * Sets the description of a photo.
|
|
|
|
+ * @return boolean Returns true when successful.
|
|
|
|
+ */
|
|
public function setDescription($description) {
|
|
public function setDescription($description) {
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
|
|
Validator::required(isset($this->photoIDs), __METHOD__);
|
|
Validator::required(isset($this->photoIDs), __METHOD__);
|
|
|
|
|
|
@@ -907,13 +915,12 @@ final class Photo {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ * Toggles the star property of a photo.
|
|
|
|
+ * @return boolean Returns true when successful.
|
|
|
|
+ */
|
|
public function setStar() {
|
|
public function setStar() {
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
|
|
Validator::required(isset($this->photoIDs), __METHOD__);
|
|
Validator::required(isset($this->photoIDs), __METHOD__);
|
|
|
|
|
|
@@ -951,14 +958,14 @@ final class Photo {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ * 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) {
|
|
public function getPublic($password) {
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
|
|
Validator::required(isset($this->photoIDs), __METHOD__);
|
|
Validator::required(isset($this->photoIDs), __METHOD__);
|
|
|
|
|
|
@@ -1003,13 +1010,12 @@ final class Photo {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ * Toggles the public property of a photo.
|
|
|
|
+ * @return boolean Returns true when successful.
|
|
|
|
+ */
|
|
public function setPublic() {
|
|
public function setPublic() {
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
|
|
Validator::required(isset($this->photoIDs), __METHOD__);
|
|
Validator::required(isset($this->photoIDs), __METHOD__);
|
|
|
|
|
|
@@ -1040,13 +1046,12 @@ final class Photo {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ * Sets the parent album of a photo.
|
|
|
|
+ * @return boolean Returns true when successful.
|
|
|
|
+ */
|
|
function setAlbum($albumID) {
|
|
function setAlbum($albumID) {
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
|
|
Validator::required(isset($this->photoIDs), __METHOD__);
|
|
Validator::required(isset($this->photoIDs), __METHOD__);
|
|
|
|
|
|
@@ -1065,14 +1070,14 @@ final class Photo {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ * Sets the tags of a photo.
|
|
|
|
+ * @return boolean Returns true when successful.
|
|
|
|
+ */
|
|
public function setTags($tags) {
|
|
public function setTags($tags) {
|
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
|
Validator::required(isset($this->photoIDs), __METHOD__);
|
|
Validator::required(isset($this->photoIDs), __METHOD__);
|
|
@@ -1096,13 +1101,12 @@ final class Photo {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ * Duplicates a photo.
|
|
|
|
+ * @return boolean Returns true when successful.
|
|
|
|
+ */
|
|
public function duplicate() {
|
|
public function duplicate() {
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
|
|
Validator::required(isset($this->photoIDs), __METHOD__);
|
|
Validator::required(isset($this->photoIDs), __METHOD__);
|
|
|
|
|
|
@@ -1139,13 +1143,12 @@ final class Photo {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ * Deletes a photo with all its data and files.
|
|
|
|
+ * @return boolean Returns true when successful.
|
|
|
|
+ */
|
|
public function delete() {
|
|
public function delete() {
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
|
|
Validator::required(isset($this->photoIDs), __METHOD__);
|
|
Validator::required(isset($this->photoIDs), __METHOD__);
|
|
|
|
|