forked from friendica/friendica-addons
Updated function call for updating the global contacts.
This commit is contained in:
parent
3b54203d80
commit
bed435d76a
|
@ -1098,12 +1098,12 @@ function appnet_expand_annotations($a, $annotations) {
|
||||||
function appnet_fetchcontact($a, $uid, $contact, $me, $create_user) {
|
function appnet_fetchcontact($a, $uid, $contact, $me, $create_user) {
|
||||||
|
|
||||||
if (function_exists("update_gcontact"))
|
if (function_exists("update_gcontact"))
|
||||||
update_gcontact($contact["canonical_url"],
|
update_gcontact(array("url" => $contact["canonical_url"], "generation" => 2,
|
||||||
NETWORK_APPNET, $contact["avatar_image"]["url"],
|
"network" => NETWORK_APPNET, "photo" => $contact["avatar_image"]["url"],
|
||||||
$contact["name"], $contact["username"],
|
"name" => $contact["name"], "nick" => $contact["username"],
|
||||||
"", $contact["description"]["text"],
|
"about" => $contact["description"]["text"], "hide" => true,
|
||||||
$contact["username"]."@app.net");
|
"addr" => $contact["username"]."@app.net"));
|
||||||
|
else {
|
||||||
// Old Code
|
// Old Code
|
||||||
$r = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1",
|
$r = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1",
|
||||||
dbesc(normalise_link($contact["canonical_url"])));
|
dbesc(normalise_link($contact["canonical_url"])));
|
||||||
|
@ -1126,7 +1126,7 @@ function appnet_fetchcontact($a, $uid, $contact, $me, $create_user) {
|
||||||
dbesc(""),
|
dbesc(""),
|
||||||
dbesc($contact["description"]["text"]),
|
dbesc($contact["description"]["text"]),
|
||||||
dbesc(normalise_link($contact["canonical_url"])));
|
dbesc(normalise_link($contact["canonical_url"])));
|
||||||
|
}
|
||||||
|
|
||||||
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `alias` = '%s' LIMIT 1",
|
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `alias` = '%s' LIMIT 1",
|
||||||
intval($uid), dbesc("adn::".$contact["id"]));
|
intval($uid), dbesc("adn::".$contact["id"]));
|
||||||
|
|
|
@ -945,12 +945,12 @@ function pumpio_dolike(&$a, $uid, $self, $post, $own_id, $threadcompletion = tru
|
||||||
function pumpio_get_contact($uid, $contact) {
|
function pumpio_get_contact($uid, $contact) {
|
||||||
|
|
||||||
if (function_exists("update_gcontact"))
|
if (function_exists("update_gcontact"))
|
||||||
update_gcontact($contact->url,
|
update_gcontact(array("url" => $contact->url, "network" => NETWORK_PUMPIO, "generation" => 2,
|
||||||
NETWORK_PUMPIO, $contact->image->url,
|
"photo" => $contact->image->url, "name" => $contact->displayName, "hide" => true,
|
||||||
$contact->displayName, $contact->preferredUsername,
|
"nick" => $contact->preferredUsername, "location" => $contact->location->displayName,
|
||||||
$contact->location->displayName, $contact->summary,
|
"about" => $contact->summary, "addr" => str_replace("acct:", "", $contact->id)));
|
||||||
str_replace("acct:", "", $contact->id));
|
else {
|
||||||
|
// Old Code
|
||||||
$r = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1",
|
$r = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1",
|
||||||
dbesc(normalise_link($contact->url)));
|
dbesc(normalise_link($contact->url)));
|
||||||
|
|
||||||
|
@ -972,6 +972,7 @@ function pumpio_get_contact($uid, $contact) {
|
||||||
dbesc($contact->location->displayName),
|
dbesc($contact->location->displayName),
|
||||||
dbesc($contact->summary),
|
dbesc($contact->summary),
|
||||||
dbesc(normalise_link($contact->url)));
|
dbesc(normalise_link($contact->url)));
|
||||||
|
}
|
||||||
|
|
||||||
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `url` = '%s' LIMIT 1",
|
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `url` = '%s' LIMIT 1",
|
||||||
intval($uid), dbesc($contact->url));
|
intval($uid), dbesc($contact->url));
|
||||||
|
|
|
@ -909,14 +909,13 @@ function statusnet_fetch_contact($uid, $contact, $create_user) {
|
||||||
return(-1);
|
return(-1);
|
||||||
|
|
||||||
if (function_exists("update_gcontact"))
|
if (function_exists("update_gcontact"))
|
||||||
update_gcontact($contact->statusnet_profile_url,
|
update_gcontact(array("url" => $contact->statusnet_profile_url,
|
||||||
NETWORK_STATUSNET, $contact->profile_image_url,
|
"network" => NETWORK_STATUSNET, "photo" => $contact->profile_image_url,
|
||||||
$contact->name, $contact->screen_name,
|
"name" => $contact->name, "nick" => $contact->screen_name,
|
||||||
$contact->location, $contact->description,
|
"location" => $contact->location, "about" => $contact->description,
|
||||||
statusnet_address($contact));
|
"addr" => statusnet_address($contact), "generation" => 3));
|
||||||
|
else {
|
||||||
// Check if the unique contact is existing
|
// Old Code
|
||||||
// To-Do: only update once a while
|
|
||||||
$r = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1",
|
$r = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1",
|
||||||
dbesc(normalise_link($contact->statusnet_profile_url)));
|
dbesc(normalise_link($contact->statusnet_profile_url)));
|
||||||
|
|
||||||
|
@ -938,6 +937,7 @@ function statusnet_fetch_contact($uid, $contact, $create_user) {
|
||||||
dbesc($contact->location),
|
dbesc($contact->location),
|
||||||
dbesc($contact->description),
|
dbesc($contact->description),
|
||||||
dbesc(normalise_link($contact->statusnet_profile_url)));
|
dbesc(normalise_link($contact->statusnet_profile_url)));
|
||||||
|
}
|
||||||
|
|
||||||
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `alias` = '%s' AND `network` = '%s'LIMIT 1",
|
$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));
|
intval($uid), dbesc(normalise_link($contact->statusnet_profile_url)), dbesc(NETWORK_STATUSNET));
|
||||||
|
|
|
@ -926,6 +926,8 @@ function twitter_queue_hook(&$a,&$b) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function twitter_fix_avatar($avatar) {
|
function twitter_fix_avatar($avatar) {
|
||||||
|
require_once("include/Photo.php");
|
||||||
|
|
||||||
$new_avatar = str_replace("_normal.", ".", $avatar);
|
$new_avatar = str_replace("_normal.", ".", $avatar);
|
||||||
|
|
||||||
$info = get_photo_info($new_avatar);
|
$info = get_photo_info($new_avatar);
|
||||||
|
@ -936,29 +938,20 @@ function twitter_fix_avatar($avatar) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function twitter_fetch_contact($uid, $contact, $create_user) {
|
function twitter_fetch_contact($uid, $contact, $create_user) {
|
||||||
require_once("include/Photo.php");
|
|
||||||
|
|
||||||
if ($contact->id_str == "")
|
if ($contact->id_str == "")
|
||||||
return(-1);
|
return(-1);
|
||||||
|
|
||||||
$avatar = twitter_fix_avatar($contact->profile_image_url_https);
|
$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"))
|
if (function_exists("update_gcontact"))
|
||||||
update_gcontact("https://twitter.com/".$contact->screen_name,
|
update_gcontact(array("url" => "https://twitter.com/".$contact->screen_name,
|
||||||
NETWORK_TWITTER, $avatar,
|
"network" => NETWORK_TWITTER, "photo" => $avatar, "hide" => true,
|
||||||
$contact->name, $contact->screen_name,
|
"name" => $contact->name, "nick" => $contact->screen_name,
|
||||||
$contact->location, $contact->description,
|
"location" => $contact->location, "about" => $contact->description,
|
||||||
$contact->screen_name."@twitter.com");
|
"addr" => $contact->screen_name."@twitter.com", "generation" => 2));
|
||||||
|
else {
|
||||||
// Old stuff - will be removed later
|
// Old Code
|
||||||
// Check if the unique contact is existing
|
|
||||||
// To-Do: only update once a while
|
|
||||||
$r = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1",
|
$r = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1",
|
||||||
dbesc(normalise_link("https://twitter.com/".$contact->screen_name)));
|
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->location),
|
||||||
dbesc($contact->description),
|
dbesc($contact->description),
|
||||||
dbesc(normalise_link("https://twitter.com/".$contact->screen_name)));
|
dbesc(normalise_link("https://twitter.com/".$contact->screen_name)));
|
||||||
|
}
|
||||||
|
|
||||||
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `alias` = '%s' LIMIT 1",
|
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `alias` = '%s' LIMIT 1",
|
||||||
intval($uid), dbesc("twitter::".$contact->id_str));
|
intval($uid), dbesc("twitter::".$contact->id_str));
|
||||||
|
|
Loading…
Reference in a new issue