]> git.mxchange.org Git - friendica.git/commitdiff
The avatar picture wasn't updated at the contact table
authorMichael Vogel <icarus@dabo.de>
Fri, 13 Nov 2015 07:45:14 +0000 (08:45 +0100)
committerMichael Vogel <icarus@dabo.de>
Fri, 13 Nov 2015 07:45:14 +0000 (08:45 +0100)
include/items.php
mod/profile_photo.php

index ebda49e9ad10a53b0ead36c48b977b67af540cd9..3261e9468385d59a4a2cd1266e3bd654b308579f 100644 (file)
@@ -2381,6 +2381,19 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
                $contact_updated = $photo_timestamp;
 
                require_once("include/Photo.php");
+               $photos = import_profile_photo($photo_url,$contact['uid'],$contact['id']);
+
+               q("UPDATE `contact` SET `avatar-date` = '%s', `photo` = '%s', `thumb` = '%s', `micro` = '%s'
+                       WHERE `uid` = %d AND `id` = %d",
+                       dbesc(datetime_convert()),
+                       dbesc($photos[0]),
+                       dbesc($photos[1]),
+                       dbesc($photos[2]),
+                       intval($contact['uid']),
+                       intval($contact['id'])
+               );
+
+               /*
                $photo_failure = false;
                $have_photo = false;
 
@@ -2433,7 +2446,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
                                intval($contact['uid']),
                                intval($contact['id'])
                        );
-               }
+               }*/
        }
 
        if((is_array($contact)) && ($name_updated) && (strlen($new_name)) && ($name_updated > $contact['name-date'])) {
@@ -3119,6 +3132,21 @@ function local_delivery($importer,$data) {
 
                logger('local_delivery: Updating photo for ' . $importer['name']);
                require_once("include/Photo.php");
+
+               $photos = import_profile_photo($photo_url,$importer['importer_uid'],$importer['id']);
+
+               q("UPDATE `contact` SET `avatar-date` = '%s', `photo` = '%s', `thumb` = '%s', `micro` = '%s'
+                       WHERE `uid` = %d AND `id` = %d",
+                       dbesc(datetime_convert()),
+                       dbesc($photos[0]),
+                       dbesc($photos[1]),
+                       dbesc($photos[2]),
+                       intval($importer['importer_uid']),
+                       intval($importer['id'])
+               );
+
+
+               /*
                $photo_failure = false;
                $have_photo = false;
 
@@ -3171,7 +3199,7 @@ function local_delivery($importer,$data) {
                                intval($importer['importer_uid']),
                                intval($importer['id'])
                        );
-               }
+               } */
        }
 
        if(($name_updated) && (strlen($new_name)) && ($name_updated > $importer['name-date'])) {
index aa880905976f4e5ecf2ee12ce2d2c82be2e27343..b7e9340ce60040fe772784c5ba2142b5791a4a16 100644 (file)
@@ -79,7 +79,7 @@ function profile_photo_post(&$a) {
                                $im->scaleImage(80);
 
                                $r = $im->store(local_user(), 0, $base_image['resource-id'],$base_image['filename'], t('Profile Photos'), 5, $is_default_profile);
-                       
+
                                if($r === false)
                                        notice( sprintf(t('Image size reduction [%s] failed.'),"80") . EOL );
 
@@ -97,8 +97,14 @@ function profile_photo_post(&$a) {
                                                dbesc($base_image['resource-id']),
                                                intval(local_user())
                                        );
-                               }
-                               else {
+
+                                       $r = q("UPDATE `contact` SET `photo` = '%s', `thumb` = '%s', `micro` = '%s'  WHERE `self` AND `uid` = %d",
+                                               dbesc($a->get_baseurl() . '/photo/' . $base_image['resource-id'] . '-4'),
+                                               dbesc($a->get_baseurl() . '/photo/' . $base_image['resource-id'] . '-5'),
+                                               dbesc($a->get_baseurl() . '/photo/' . $base_image['resource-id'] . '-6'),
+                                               intval(local_user())
+                                       );
+                               } else {
                                        $r = q("update profile set photo = '%s', thumb = '%s' where id = %d and uid = %d",
                                                dbesc($a->get_baseurl() . '/photo/' . $base_image['resource-id'] . '-4'),
                                                dbesc($a->get_baseurl() . '/photo/' . $base_image['resource-id'] . '-5'),