mirror of
https://github.com/friendica/friendica
synced 2025-09-08 18:56:46 +02:00
a bit more robust about loading external pics
also friend confirm was getting wrong email
This commit is contained in:
parent
8abac5e5c7
commit
8424f31aad
7 changed files with 58 additions and 39 deletions
|
@ -6,12 +6,15 @@ class Photo {
|
|||
private $image;
|
||||
private $width;
|
||||
private $height;
|
||||
private $valid;
|
||||
|
||||
public function __construct($data) {
|
||||
$this->valid = false;
|
||||
$this->image = @imagecreatefromstring($data);
|
||||
if($this->image !== FALSE) {
|
||||
$this->width = imagesx($this->image);
|
||||
$this->height = imagesy($this->image);
|
||||
$this->valid = true;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -20,6 +23,10 @@ class Photo {
|
|||
imagedestroy($this->image);
|
||||
}
|
||||
|
||||
public function is_valid() {
|
||||
return $this->valid;
|
||||
}
|
||||
|
||||
public function getWidth() {
|
||||
return $this->width;
|
||||
}
|
||||
|
|
|
@ -633,7 +633,7 @@ function consume_feed($xml,$importer,$contact, &$hub) {
|
|||
$resource_id = $r[0]['resource-id'];
|
||||
$img_str = fetch_url($photo_url,true);
|
||||
$img = new Photo($img_str);
|
||||
if($img) {
|
||||
if($img->is_valid()) {
|
||||
q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND contact-id` = %d AND `uid` = %d",
|
||||
dbesc($resource_id),
|
||||
intval($contact['id']),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue