X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModel%2FPhoto.php;h=c622421cc039e74d0bd298284a26cf8471fd65f2;hb=3e51a23bd50327b3a2a9fd5401ff504f6d2b1d08;hp=94d5581bf0b0ad30f1a9c3c3db9bdf3aa4859a50;hpb=f0725ae3845ea133a145a3fcc2599fa21c888bae;p=friendica.git diff --git a/src/Model/Photo.php b/src/Model/Photo.php index 94d5581bf0..c622421cc0 100644 --- a/src/Model/Photo.php +++ b/src/Model/Photo.php @@ -1,4 +1,5 @@ $cid, 'guid' => $guid, 'resource-id' => $rid, - 'created' => datetime_convert(), - 'edited' => datetime_convert(), + 'created' => DateTimeFormat::utcNow(), + 'edited' => DateTimeFormat::utcNow(), 'filename' => basename($filename), 'type' => $Image->getType(), 'album' => $album, @@ -89,19 +91,22 @@ class Photo */ public static function importProfilePhoto($image_url, $uid, $cid, $quit_on_error = false) { + $thumb = ''; + $micro = ''; + $photo = dba::selectFirst( 'photo', ['resource-id'], ['uid' => $uid, 'contact-id' => $cid, 'scale' => 4, 'album' => 'Contact Photos'] ); if (x($photo['resource-id'])) { $hash = $photo['resource-id']; } else { - $hash = photo_new_resource(); + $hash = self::newResource(); } $photo_failure = false; $filename = basename($image_url); - $img_str = fetch_url($image_url, true); + $img_str = Network::fetchUrl($image_url, true); if ($quit_on_error && ($img_str == "")) { return false; @@ -262,4 +267,14 @@ class Photo $key = "photo_albums:".$uid.":".local_user().":".remote_user(); Cache::set($key, null, CACHE_DAY); } + + /** + * Generate a unique photo ID. + * + * @return string + */ + public static function newResource() + { + return get_guid(32, false); + } }