]> git.mxchange.org Git - friendica.git/commitdiff
Massively updated avatar handling
authorMichael Vogel <icarus@dabo.de>
Sat, 18 Jun 2016 23:07:20 +0000 (01:07 +0200)
committerMichael Vogel <icarus@dabo.de>
Sat, 18 Jun 2016 23:07:20 +0000 (01:07 +0200)
13 files changed:
include/Contact.php
include/bbcode.php
include/conversation.php
include/dbstructure.php
include/dfrn.php
include/threads.php
mod/community.php
mod/display.php
mod/network.php
mod/notes.php
mod/profile.php
mod/search.php
object/Item.php

index 86ef4a30fa1c015a55f435c0b1c6e080c0212445..896edaac7dd1eb2e601abe17172dd00137e47f7d 100644 (file)
@@ -451,8 +451,18 @@ function get_contact($url, $uid = 0) {
                $data = probe_url($url);
 
        // Does this address belongs to a valid network?
-       if (!in_array($data["network"], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA)))
-               return 0;
+       if (!in_array($data["network"], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA))) {
+               if ($uid != 0)
+                       return 0;
+
+               // Get data from the gcontact table
+               $r = q("SELECT `name`, `nick`, `url`, `photo`, `addr`, `alias`, `network` FROM `gcontact` WHERE `nurl` = '%s'",
+                        dbesc(normalise_link($url)));
+               if (!$r)
+                       return 0;
+
+               $data = $r[0];
+       }
 
        $url = $data["url"];
 
@@ -490,6 +500,16 @@ function get_contact($url, $uid = 0) {
                        return 0;
 
                $contactid = $contact[0]["id"];
+
+               // Update the newly created contact from data in the gcontact table
+               $r = q("SELECT `location`, `about`, `keywords`, `gender` FROM `gcontact` WHERE `nurl` = '%s'",
+                        dbesc(normalise_link($data["url"])));
+               if ($r) {
+                       logger("Update contact ".$data["url"]);
+                       q("UPDATE `contact` SET `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s' WHERE `id` = %d",
+                               dbesc($r["location"]), dbesc($r["about"]), dbesc($r["keywords"]),
+                               dbesc($r["gender"]), intval($contactid));
+               }
        }
 
        if ((count($contact) > 1) AND ($uid == 0) AND ($contactid != 0) AND ($url != ""))
index 62f56558fb6871a233b3122886821a65420e7190..84425e8ef65d961ef92a0ea33493f36a6dfb2c55 100644 (file)
@@ -408,6 +408,11 @@ function bb_ShareAttributes($share, $simplehtml) {
        if ($itemcache == "")
                $reldate = (($posted) ? " " . relative_date($posted) : '');
 
+       // We only call this so that a previously unknown contact can be added.
+       // This is important for the function "get_contact_details_by_url".
+       // This function then can fetch an entry from the contact table.
+       get_contact($profile, 0);
+
        $data = get_contact_details_by_url($profile);
 
        if (isset($data["name"]) AND isset($data["addr"]))
@@ -423,8 +428,8 @@ function bb_ShareAttributes($share, $simplehtml) {
        if (isset($data["name"]))
                $author = $data["name"];
 
-       if (isset($data["photo"]))
-               $avatar = $data["photo"];
+       if (isset($data["thumb"]))
+               $avatar = $data["thumb"];
 
        $preshare = trim($share[1]);
 
@@ -490,6 +495,8 @@ function bb_ShareAttributes($share, $simplehtml) {
                default:
                        $text = trim($share[1])."\n";
 
+                       $avatar = proxy_url($avatar, false, PROXY_SIZE_THUMB);
+
                        $tpl = get_markup_template('shared_content.tpl');
                        $text .= replace_macros($tpl,
                                        array(
index 87ad42b0438d44b79cba002e5d758aab733717fd..411ffe38847fb4319b9e25e3332423eb7593db6d 100644 (file)
@@ -373,15 +373,55 @@ function visible_activity($item) {
        return true;
 }
 
+/**
+ * @brief SQL query for items
+ */
+function item_query() {
+
+       return "SELECT ".item_fieldlists()." FROM `item` ".
+               item_joins()." WHERE ".item_condition();
+}
+
+/**
+ * @brief All fieldlists that are needed for the item query
+ */
+function item_fieldlists() {
+
+       return item_fieldlist().", ".zcontact_fieldlist().", ".contact_fieldlist();
+}
+
+/**
+ * @brief SQL join for contacts
+ */
+function item_joins() {
+
+       return contact_join()." ".zcontact_join();
+}
+
+/**
+ * @brief Fieldlist for author and owner
+ */
+function zcontact_fieldlist() {
+
+       return "`author`.`thumb` AS `author-thumb`, `owner`.`thumb` AS `owner-thumb`";
+}
+
+/**
+ * @brief Join for author and owner
+ */
+function zcontact_join() {
+
+       return "LEFT JOIN `contact` AS `author` ON `author`.`id`=`item`.`author-id`
+               LEFT JOIN `contact` AS `owner` ON `owner`.`id`=`item`.`author-id`";
+}
+
 /**
  * @brief List of all contact fields that are needed for the conversation function
  */
 function contact_fieldlist() {
 
-       $fieldlist = "`contact`.`network`, `contact`.`url`, `contact`.`name`, `contact`.`writable`,
-                       `contact`.`self`, `contact`.`id` AS `cid`, `contact`.`alias`";
-
-       return $fieldlist;
+       return "`contact`.`network`, `contact`.`url`, `contact`.`name`, `contact`.`writable`,
+               `contact`.`self`, `contact`.`id` AS `cid`, `contact`.`alias`";
 }
 
 /**
@@ -389,9 +429,15 @@ function contact_fieldlist() {
  */
 function contact_condition() {
 
-       $condition = "NOT `contact`.`blocked` AND NOT `contact`.`pending`";
+       return "NOT `contact`.`blocked` AND NOT `contact`.`pending`";
+}
 
-       return $condition;
+/**
+ * @brief SQL join for contacts
+ */
+function contact_join() {
+
+       return "INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND ".contact_condition();
 }
 
 /**
@@ -402,11 +448,11 @@ function item_fieldlist() {
 /*
 These Fields are not added below (yet). They are here to for bug search.
 `item`.`type`,
+`item`.`object`,
 `item`.`extid`,
 `item`.`received`,
 `item`.`changed`,
-`item`.`author-avatar`,
-`item`.`object`,
+`item`.`moderated`,
 `item`.`target-type`,
 `item`.`target`,
 `item`.`resource-id`,
@@ -414,10 +460,8 @@ These Fields are not added below (yet). They are here to for bug search.
 `item`.`attach`,
 `item`.`inform`,
 `item`.`pubmail`,
-`item`.`moderated`,
 `item`.`visible`,
 `item`.`spam`,
-`item`.`starred`,
 `item`.`bookmark`,
 `item`.`unseen`,
 `item`.`deleted`,
@@ -430,18 +474,18 @@ These Fields are not added below (yet). They are here to for bug search.
 `item`.`shadow`,
 */
 
-       $fieldlist = "`item`.`author-link`, `item`.`verb`, `item`.`id`, `item`.`parent`, `item`.`file`,
-                       `item`.`uid`, `item`.`author-name`, `item`.`location`, `item`.`coord`,
-                       `item`.`title`, `item`.`uri`, `item`.`created`, `item`.`app`, `item`.`guid`,
-                       `item`.`contact-id`, `item`.`thr-parent`, `item`.`parent-uri`, `item`.`rendered-hash`,
-                       `item`.`body`, `item`.`rendered-html`, `item`.`private`, `item`.`edited`,
+       return "`item`.`author-link`, `item`.`author-name`, `item`.`author-avatar`,
+                       `item`.`owner-link`, `item`.`owner-name`, `item`.`owner-avatar`,
+                       `item`.`contact-id`, `item`.`uid`, `item`.`id`, `item`.`parent`,
+                       `item`.`uri`, `item`.`thr-parent`, `item`.`parent-uri`,
+                       `item`.`commented`, `item`.`created`, `item`.`edited`,
+                       `item`.`verb`, `item`.`object-type`, `item`.`postopts`, `item`.`plink`,
+                       `item`.`guid`, `item`.`wall`, `item`.`private`, `item`.`starred`,
+                       `item`.`title`, `item`.`body`, `item`.`file`, `item`.`event-id`,
+                       `item`.`location`, `item`.`coord`, `item`.`app`,
+                       `item`.`rendered-hash`, `item`.`rendered-html`,
                        `item`.`allow_cid`, `item`.`allow_gid`, `item`.`deny_cid`, `item`.`deny_gid`,
-                       `item`.`event-id`, `item`.`object-type`, `item`.`starred`, `item`.`created`,
-                       `item`.`postopts`, `item`.`owner-link`, `item`.`owner-name`, `item`.`owner-avatar`,
-                       `item`.`plink`, `item`.`wall`, `item`.`commented`,
                        `item`.`id` AS `item_id`, `item`.`network` AS `item_network`";
-
-       return $fieldlist;
 }
 
 /**
@@ -449,9 +493,7 @@ These Fields are not added below (yet). They are here to for bug search.
  */
 function item_condition() {
 
-       $condition = "`item`.`visible` AND NOT `item`.`deleted` AND NOT `item`.`moderated`";
-
-       return $condition;
+       return "`item`.`visible` AND NOT `item`.`deleted` AND NOT `item`.`moderated`";
 }
 
 /**
@@ -623,7 +665,6 @@ function conversation(&$a, $items, $mode, $update, $preview = false) {
 
                                $comment     = '';
                                $owner_url   = '';
-                               $owner_photo = '';
                                $owner_name  = '';
                                $sparkle     = '';
 
@@ -668,18 +709,6 @@ function conversation(&$a, $items, $mode, $update, $preview = false) {
                                        $tags[] = $prefix."<a href=\"".$tag["url"]."\" target=\"_blank\">".$tag["term"]."</a>";
                                }
 
-                               /*foreach(explode(',',$item['tag']) as $tag){
-                                       $tag = trim($tag);
-                                       if ($tag!="") {
-                                               $t = bbcode($tag);
-                                               $tags[] = $t;
-                                               if($t[0] == '#')
-                                                       $hashtags[] = $t;
-                                               elseif($t[0] == '@')
-                                                       $mentions[] = $t;
-                                       }
-                               }*/
-
                                $sp = false;
                                $profile_link = best_link_url($item,$sp);
                                if($profile_link === 'mailbox')
@@ -689,12 +718,21 @@ function conversation(&$a, $items, $mode, $update, $preview = false) {
                                else
                                        $profile_link = zrl($profile_link);
 
-                               // Don't rely on the author-avatar. It is better to use the data from the contact table
-                               $author_contact = get_contact_details_by_url($item['author-link'], $profile_owner);
-                               if ($author_contact["thumb"])
-                                       $profile_avatar = $author_contact["thumb"];
-                               else
-                                       $profile_avatar = $item['author-avatar'];
+                               if (!isset($item['author-thumb'])) {
+                                       $author_contact = get_contact_details_by_url($item['author-link'], $profile_owner);
+                                       if ($author_contact["thumb"])
+                                               $item['author-thumb'] = $author_contact["thumb"];
+                                       else
+                                               $item['author-thumb'] = $item['author-avatar'];
+                               }
+
+                               if (!isset($item['owner-thumb'])) {
+                                       $owner_contact = get_contact_details_by_url($item['owner-link'], $profile_owner);
+                                       if ($owner_contact["thumb"])
+                                               $item['owner-thumb'] = $owner_contact["thumb"];
+                                       else
+                                               $item['owner-thumb'] = $item['owner-avatar'];
+                               }
 
                                $locate = array('location' => $item['location'], 'coord' => $item['coord'], 'html' => '');
                                call_hooks('render_location',$locate);
@@ -762,7 +800,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) {
                                        'name' => $profile_name_e,
                                        'sparkle' => $sparkle,
                                        'lock' => $lock,
-                                       'thumb' => App::remove_baseurl(proxy_url($profile_avatar, false, PROXY_SIZE_THUMB)),
+                                       'thumb' => App::remove_baseurl(proxy_url($item['author-thumb'], false, PROXY_SIZE_THUMB)),
                                        'title' => $item['title_e'],
                                        'body' => $body_e,
                                        'tags' => $tags_e,
@@ -781,7 +819,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) {
                                        'indent' => '',
                                        'owner_name' => $owner_name_e,
                                        'owner_url' => $owner_url,
-                                       'owner_photo' => proxy_url($owner_photo, false, PROXY_SIZE_THUMB),
+                                       'owner_photo' => App::remove_baseurl(proxy_url($item['owner-thumb'], false, PROXY_SIZE_THUMB)),
                                        'plink' => get_plink($item),
                                        'edpost' => false,
                                        'isstarred' => $isstarred,
index 8ae3ae6c8c8a5f47634e2ca0bbbf37af21ba7adc..549d077ed38c07bee3fb852ba0f552e946ad12c6 100644 (file)
@@ -1298,6 +1298,8 @@ function db_definition() {
                                        "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
                                        "contact-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
                                        "gcontact-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
+                                       "owner-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
+                                       "author-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
                                        "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
                                        "edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
                                        "commented" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
index c9b907accdeb86bdd6f3d97792b3fb5738458cfe..9828763bfcc38ab6f46f48050bbbd75338d14d8f 100644 (file)
@@ -1631,17 +1631,23 @@ class dfrn {
                $fields = array(
                        'owner-link' => array($old["url"], $relocate["url"]),
                        'author-link' => array($old["url"], $relocate["url"]),
-                       'owner-avatar' => array($old["photo"], $relocate["photo"]),
-                       'author-avatar' => array($old["photo"], $relocate["photo"]),
+                       //'owner-avatar' => array($old["photo"], $relocate["photo"]),
+                       //'author-avatar' => array($old["photo"], $relocate["photo"]),
                        );
-               foreach ($fields as $n=>$f){
-                       $x = q("UPDATE `item` SET `%s` = '%s' WHERE `%s` = '%s' AND `uid` = %d",
-                                       $n, dbesc($f[1]),
+               foreach ($fields as $n=>$f) {
+                       $r = q("SELECT `id` FROM `item` WHERE `%s` = '%s' AND `uid` = %d LIMIT 1",
                                        $n, dbesc($f[0]),
                                        intval($importer["importer_uid"]));
-                               if ($x === false)
-                                       return false;
+
+                       if ($r) {
+                               $x = q("UPDATE `item` SET `%s` = '%s' WHERE `%s` = '%s' AND `uid` = %d",
+                                               $n, dbesc($f[1]),
+                                               $n, dbesc($f[0]),
+                                               intval($importer["importer_uid"]));
+                                       if ($x === false)
+                                               return false;
                        }
+               }
 
                /// @TODO
                /// merge with current record, current contents have priority
index 0320eaa018e98b28a04179f79aae2b020bbd68da..0b2b26e8d242886b870fa3595563d031c23e4f32 100644 (file)
@@ -1,7 +1,9 @@
 <?php
 function add_thread($itemid, $onlyshadow = false) {
-       $items = q("SELECT `uid`, `created`, `edited`, `commented`, `received`, `changed`, `wall`, `private`, `pubmail`, `moderated`, `visible`, `spam`, `starred`, `bookmark`, `contact-id`, `gcontact-id`,
-                       `deleted`, `origin`, `forum_mode`, `mention`, `network`  FROM `item` WHERE `id` = %d AND (`parent` = %d OR `parent` = 0) LIMIT 1", intval($itemid), intval($itemid));
+       $items = q("SELECT `uid`, `created`, `edited`, `commented`, `received`, `changed`, `wall`, `private`, `pubmail`,
+                       `moderated`, `visible`, `spam`, `starred`, `bookmark`, `contact-id`, `gcontact-id`,
+                       `deleted`, `origin`, `forum_mode`, `mention`, `network`, `author-id`, `owner-id`
+               FROM `item` WHERE `id` = %d AND (`parent` = %d OR `parent` = 0) LIMIT 1", intval($itemid), intval($itemid));
 
        if (!$items)
                return;
index a83bd39ec247ac4824b2f37a300623e99e0efda0..535e7dc3f796c86647715d53af9a48c0da804dc7 100644 (file)
@@ -131,8 +131,7 @@ function community_getitems($start, $itemspage) {
                WHERE `thread`.`visible` AND NOT `thread`.`deleted` AND NOT `thread`.`moderated`
                AND NOT `thread`.`private` AND `thread`.`wall`
                ORDER BY `thread`.`received` DESC LIMIT %d, %d",
-               item_fieldlist(), contact_fieldlist(),
-               contact_condition(),
+               item_fieldlist(), contact_fieldlist(), contact_condition(),
                intval($start), intval($itemspage)
        );
 
@@ -142,14 +141,15 @@ function community_getitems($start, $itemspage) {
 
 function community_getpublicitems($start, $itemspage) {
 
-       $r = q("SELECT %s, `author-name` AS `name`, `owner-avatar` AS `photo`,
+       $r = q("SELECT %s, %s, `author-name` AS `name`, `owner-avatar` AS `photo`,
                        `owner-link` AS `url`, `owner-avatar` AS `thumb`
                FROM `thread`
-               INNER JOIN `item` ON `item`.`id` = `thread`.`iid`
+               INNER JOIN `item` ON `item`.`id` = `thread`.`iid` %s
                WHERE `thread`.`uid` = 0
                ORDER BY `thread`.`created` DESC LIMIT %d, %d",
-               item_fieldlist(), intval($start),
-               intval($itemspage)
+               item_fieldlist(), zcontact_fieldlist(),
+               zcontact_join(),
+               intval($start), intval($itemspage)
        );
 
        return($r);
index 4ee26b7405ad48a3b9aebcd58e73cbdceae31d0c..f879a91aeca49ec4a135d7ed36e7d80520c148f1 100644 (file)
@@ -362,18 +362,15 @@ function display_content(&$a, $update = 0) {
                        return '';
        }
 
-       $r = q("SELECT %s, %s FROM `item`
-               INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND %s
-               WHERE %s AND `item`.`uid` = %d
+       $r = q(item_query()." AND `item`.`uid` = %d
                AND `item`.`parent` = (SELECT `parent` FROM `item` WHERE `id` = %d)
                $sql_extra
                ORDER BY `parent` DESC, `gravity` ASC, `id` ASC",
-               item_fieldlist(), contact_fieldlist(),
-               contact_condition(), item_condition(),
                intval($a->profile['uid']),
                intval($item_id)
        );
 
+
        if(!$r && local_user()) {
                // Check if this is another person's link to a post that we have
                $r = q("SELECT `item`.uri FROM `item`
@@ -385,13 +382,9 @@ function display_content(&$a, $update = 0) {
                if($r) {
                        $item_uri = $r[0]['uri'];
 
-                       $r = q("SELECT %s, %s FROM `item`
-                               INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND %s
-                               WHERE %s AND `item`.`uid` = %d
+                       $r = q(item_query()." AND `item`.`uid` = %d
                                AND `item`.`parent` = (SELECT `parent` FROM `item` WHERE `uri` = '%s' AND uid = %d)
                                ORDER BY `parent` DESC, `gravity` ASC, `id` ASC ",
-                               item_fieldlist(), contact_fieldlist(),
-                               contact_condition(), item_condition(),
                                intval(local_user()),
                                dbesc($item_uri),
                                intval(local_user())
@@ -399,7 +392,6 @@ function display_content(&$a, $update = 0) {
                }
        }
 
-
        if($r) {
 
                if((local_user()) && (local_user() == $a->profile['uid'])) {
index ba97b4a4c5017ce8a97d2c9c63fb4e82044c45a4..1ac732d110638eaea2125bbae1f22920e6af75cf 100644 (file)
@@ -720,14 +720,12 @@ function network_content(&$a, $update = 0) {
                        $sql_order = "`item`.`received`";
 
                // "New Item View" - show all items unthreaded in reverse created date order
-               $items = q("SELECT %s, %s FROM $sql_table $sql_post_table
-                       INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND %s
+               $items = q("SELECT %s FROM $sql_table $sql_post_table %s
                        WHERE %s AND `item`.`uid` = %d
                        $simple_update
                        $sql_extra $sql_nets
                        ORDER BY $sql_order DESC $pager_sql ",
-                       item_fieldlist(), contact_fieldlist(),
-                       contact_condition(), item_condition(),
+                       item_fieldlists(), item_joins(), item_condition(),
                        intval($_SESSION['uid'])
                );
 
@@ -806,14 +804,9 @@ function network_content(&$a, $update = 0) {
                        $items = array();
 
                        foreach ($parents_arr AS $parents) {
-//                                     $sql_extra ORDER BY `item`.`commented` DESC LIMIT %d",
-                               $thread_items = q("SELECT %s, %s FROM `item`
-                                       INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND %s
-                                       WHERE %s AND `item`.`uid` = %d
+                               $thread_items = q(item_query()." AND `item`.`uid` = %d
                                        AND `item`.`parent` = %d
                                        ORDER BY `item`.`commented` DESC LIMIT %d",
-                                       item_fieldlist(), contact_fieldlist(),
-                                       contact_condition(), item_condition(),
                                        intval(local_user()),
                                        intval($parents),
                                        intval($max_comments + 1)
index 8d93fc13d89ffce2547b439139ccae84debf53fa..24d541be5df88f3081d5d2c4d5a40438860caae9 100644 (file)
@@ -108,7 +108,7 @@ function notes_content(&$a,$update = false) {
                        $parents_arr[] = $rr['item_id'];
                $parents_str = implode(', ', $parents_arr);
 
-               $r = q("SELECT %s, %s FROM `item`
+               $r = q("SELECT %s FROM `item`
                        LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND %s
                        WHERE %s AND `item`.`uid` = %d AND `item`.`parent` IN (%s)
                        $sql_extra
index 88de0227b6075a8192463a49746679564ed3efaa..67db5d0d9865d2be14e929768b53bbb180f2fc9e 100644 (file)
@@ -303,13 +303,9 @@ function profile_content(&$a, $update = 0) {
                        $parents_arr[] = $rr['item_id'];
                $parents_str = implode(', ', $parents_arr);
 
-               $items = q("SELECT %s, %s FROM `item`
-                       INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND %s
-                       WHERE %s AND `item`.`uid` = %d
+               $items = q(item_query()." AND `item`.`uid` = %d
                        AND `item`.`parent` IN (%s)
                        $sql_extra ",
-                       item_fieldlist(), contact_fieldlist(),
-                       contact_condition(), item_condition(),
                        intval($a->profile['profile_uid']),
                        dbesc($parents_str)
                );
index 99ec6c5f7d2ec6336465e940d37435c0870818ff..d2251ce584a7ac4b1f3ec387b10ac8dbde2dcc4f 100644 (file)
@@ -191,14 +191,12 @@ function search_content(&$a) {
        if($tag) {
                logger("Start tag search for '".$search."'", LOGGER_DEBUG);
 
-               $r = q("SELECT STRAIGHT_JOIN %s, %s
+               $r = q("SELECT STRAIGHT_JOIN %s
                        FROM `term`
-                               INNER JOIN `item` ON `item`.`id`=`term`.`oid`
-                               INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND %s
+                               INNER JOIN `item` ON `item`.`id`=`term`.`oid` %s
                        WHERE %s AND (`term`.`uid` = 0 OR (`term`.`uid` = %d AND NOT `term`.`global`)) AND `term`.`otype` = %d AND `term`.`type` = %d AND `term`.`term` = '%s'
                        ORDER BY term.created DESC LIMIT %d , %d ",
-                               item_fieldlist(), contact_fieldlist(),
-                               contact_condition(), item_condition(),
+                               item_fieldlists(), item_joins(), item_condition(),
                                intval(local_user()),
                                intval(TERM_OBJ_POST), intval(TERM_HASHTAG), dbesc(protect_sprintf($search)),
                                intval($a->pager['start']), intval($a->pager['itemspage']));
@@ -211,14 +209,12 @@ function search_content(&$a) {
                        $sql_extra = sprintf(" AND `item`.`body` REGEXP '%s' ", dbesc(protect_sprintf(preg_quote($search))));
                }
 
-               $r = q("SELECT STRAIGHT_JOIN %s, %s
-                       FROM `item`
-                               INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND %s
+               $r = q("SELECT STRAIGHT_JOIN %s
+                       FROM `item` %s
                        WHERE %s AND (`item`.`uid` = 0 OR (`item`.`uid` = %s AND NOT `item`.`global`))
                                $sql_extra
                        GROUP BY `item`.`uri` ORDER BY `item`.`id` DESC LIMIT %d , %d",
-                               item_fieldlist(), contact_fieldlist(),
-                               contact_condition(), item_condition(),
+                               item_fieldlists(), item_joins(), item_condition(),
                                intval(local_user()),
                                intval($a->pager['start']), intval($a->pager['itemspage']));
        }
index ad3da470144cfbd6a310f7ce1a17f8fd788d20d9..e6d6bd45f542b46ae1ad4b4535aa1e0d2416a22a 100644 (file)
@@ -150,12 +150,21 @@ class Item extends BaseObject {
                else
                        $profile_link = zrl($profile_link);
 
-               // Don't rely on the author-avatar. It is better to use the data from the contact table
-               $author_contact = get_contact_details_by_url($item['author-link'], $conv->get_profile_owner());
-               if ($author_contact["thumb"])
-                       $profile_avatar = $author_contact["thumb"];
-               else
-                       $profile_avatar = $item['author-avatar'];
+               if (!isset($item['author-thumb'])) {
+                       $author_contact = get_contact_details_by_url($item['author-link'], $conv->get_profile_owner());
+                       if ($author_contact["thumb"])
+                               $item['author-thumb'] = $author_contact["thumb"];
+                       else
+                               $item['author-thumb'] = $item['author-avatar'];
+               }
+
+               if (!isset($item['owner-thumb'])) {
+                       $owner_contact = get_contact_details_by_url($item['owner-link'], $conv->get_profile_owner());
+                       if ($owner_contact["thumb"])
+                               $item['owner-thumb'] = $owner_contact["thumb"];
+                       else
+                               $item['owner-thumb'] = $item['owner-avatar'];
+               }
 
                $locate = array('location' => $item['location'], 'coord' => $item['coord'], 'html' => '');
                call_hooks('render_location',$locate);
@@ -364,7 +373,7 @@ class Item extends BaseObject {
                        'profile_url' => $profile_link,
                        'item_photo_menu' => item_photo_menu($item),
                        'name' => $name_e,
-                       'thumb' => $a->remove_baseurl(proxy_url($profile_avatar, false, PROXY_SIZE_THUMB)),
+                       'thumb' => $a->remove_baseurl(proxy_url($item['author-thumb'], false, PROXY_SIZE_THUMB)),
                        'osparkle' => $osparkle,
                        'sparkle' => $sparkle,
                        'title' => $title_e,
@@ -377,7 +386,7 @@ class Item extends BaseObject {
                        'indent' => $indent,
                        'shiny' => $shiny,
                        'owner_url' => $this->get_owner_url(),
-                       'owner_photo' => proxy_url($this->get_owner_photo(), false, PROXY_SIZE_THUMB),
+                       'owner_photo' => $a->remove_baseurl(proxy_url($item['owner-thumb'], false, PROXY_SIZE_THUMB)),
                        'owner_name' => htmlentities($owner_name_e),
                        'plink' => get_plink($item),
                        'edpost'    => ((feature_enabled($conv->get_profile_owner(),'edit_posts')) ? $edpost : ''),