Updated function call for updating the global contacts.

This commit is contained in:
Michael Vogel 2016-01-06 15:10:22 +01:00
parent 3b54203d80
commit bed435d76a
4 changed files with 109 additions and 114 deletions

View file

@ -1098,12 +1098,12 @@ function appnet_expand_annotations($a, $annotations) {
function appnet_fetchcontact($a, $uid, $contact, $me, $create_user) {
if (function_exists("update_gcontact"))
update_gcontact($contact["canonical_url"],
NETWORK_APPNET, $contact["avatar_image"]["url"],
$contact["name"], $contact["username"],
"", $contact["description"]["text"],
$contact["username"]."@app.net");
update_gcontact(array("url" => $contact["canonical_url"], "generation" => 2,
"network" => NETWORK_APPNET, "photo" => $contact["avatar_image"]["url"],
"name" => $contact["name"], "nick" => $contact["username"],
"about" => $contact["description"]["text"], "hide" => true,
"addr" => $contact["username"]."@app.net"));
else {
// Old Code
$r = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1",
dbesc(normalise_link($contact["canonical_url"])));
@ -1126,7 +1126,7 @@ function appnet_fetchcontact($a, $uid, $contact, $me, $create_user) {
dbesc(""),
dbesc($contact["description"]["text"]),
dbesc(normalise_link($contact["canonical_url"])));
}
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `alias` = '%s' LIMIT 1",
intval($uid), dbesc("adn::".$contact["id"]));

View file

@ -945,12 +945,12 @@ function pumpio_dolike(&$a, $uid, $self, $post, $own_id, $threadcompletion = tru
function pumpio_get_contact($uid, $contact) {
if (function_exists("update_gcontact"))
update_gcontact($contact->url,
NETWORK_PUMPIO, $contact->image->url,
$contact->displayName, $contact->preferredUsername,
$contact->location->displayName, $contact->summary,
str_replace("acct:", "", $contact->id));
update_gcontact(array("url" => $contact->url, "network" => NETWORK_PUMPIO, "generation" => 2,
"photo" => $contact->image->url, "name" => $contact->displayName, "hide" => true,
"nick" => $contact->preferredUsername, "location" => $contact->location->displayName,
"about" => $contact->summary, "addr" => str_replace("acct:", "", $contact->id)));
else {
// Old Code
$r = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1",
dbesc(normalise_link($contact->url)));
@ -972,6 +972,7 @@ function pumpio_get_contact($uid, $contact) {
dbesc($contact->location->displayName),
dbesc($contact->summary),
dbesc(normalise_link($contact->url)));
}
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `url` = '%s' LIMIT 1",
intval($uid), dbesc($contact->url));

View file

@ -909,14 +909,13 @@ function statusnet_fetch_contact($uid, $contact, $create_user) {
return(-1);
if (function_exists("update_gcontact"))
update_gcontact($contact->statusnet_profile_url,
NETWORK_STATUSNET, $contact->profile_image_url,
$contact->name, $contact->screen_name,
$contact->location, $contact->description,
statusnet_address($contact));
// Check if the unique contact is existing
// To-Do: only update once a while
update_gcontact(array("url" => $contact->statusnet_profile_url,
"network" => NETWORK_STATUSNET, "photo" => $contact->profile_image_url,
"name" => $contact->name, "nick" => $contact->screen_name,
"location" => $contact->location, "about" => $contact->description,
"addr" => statusnet_address($contact), "generation" => 3));
else {
// Old Code
$r = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1",
dbesc(normalise_link($contact->statusnet_profile_url)));
@ -938,6 +937,7 @@ function statusnet_fetch_contact($uid, $contact, $create_user) {
dbesc($contact->location),
dbesc($contact->description),
dbesc(normalise_link($contact->statusnet_profile_url)));
}
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `alias` = '%s' AND `network` = '%s'LIMIT 1",
intval($uid), dbesc(normalise_link($contact->statusnet_profile_url)), dbesc(NETWORK_STATUSNET));

View file

@ -926,6 +926,8 @@ function twitter_queue_hook(&$a,&$b) {
}
function twitter_fix_avatar($avatar) {
require_once("include/Photo.php");
$new_avatar = str_replace("_normal.", ".", $avatar);
$info = get_photo_info($new_avatar);
@ -936,29 +938,20 @@ function twitter_fix_avatar($avatar) {
}
function twitter_fetch_contact($uid, $contact, $create_user) {
require_once("include/Photo.php");
if ($contact->id_str == "")
return(-1);
$avatar = twitter_fix_avatar($contact->profile_image_url_https);
//$avatar = str_replace("_normal.", ".", $contact->profile_image_url_https);
//$info = get_photo_info($avatar);
//if (!$info)
// $avatar = $contact->profile_image_url_https;
if (function_exists("update_gcontact"))
update_gcontact("https://twitter.com/".$contact->screen_name,
NETWORK_TWITTER, $avatar,
$contact->name, $contact->screen_name,
$contact->location, $contact->description,
$contact->screen_name."@twitter.com");
// Old stuff - will be removed later
// Check if the unique contact is existing
// To-Do: only update once a while
update_gcontact(array("url" => "https://twitter.com/".$contact->screen_name,
"network" => NETWORK_TWITTER, "photo" => $avatar, "hide" => true,
"name" => $contact->name, "nick" => $contact->screen_name,
"location" => $contact->location, "about" => $contact->description,
"addr" => $contact->screen_name."@twitter.com", "generation" => 2));
else {
// Old Code
$r = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1",
dbesc(normalise_link("https://twitter.com/".$contact->screen_name)));
@ -980,6 +973,7 @@ function twitter_fetch_contact($uid, $contact, $create_user) {
dbesc($contact->location),
dbesc($contact->description),
dbesc(normalise_link("https://twitter.com/".$contact->screen_name)));
}
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `alias` = '%s' LIMIT 1",
intval($uid), dbesc("twitter::".$contact->id_str));