X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModel%2FFContact.php;h=006a37a608510b3d3453a8ffb0ab4504d25ae94a;hb=2e05dac7dae0a3d028b442a2d5afbd4176a32e99;hp=f61100093455f7243c153735a1aacfa9343880a8;hpb=4733683e9178710923d4f5ba524419c84c4d0cbc;p=friendica.git diff --git a/src/Model/FContact.php b/src/Model/FContact.php index f611000934..006a37a608 100644 --- a/src/Model/FContact.php +++ b/src/Model/FContact.php @@ -1,6 +1,6 @@ Protocol::DIASPORA, 'addr' => $handle]); + $person = DBA::selectFirst('fcontact', [], ['network' => $network, 'addr' => $handle]); if (!DBA::isResult($person)) { $urls = [$handle, str_replace('http://', 'https://', $handle), Strings::normaliseLink($handle)]; - $person = DBA::selectFirst('fcontact', [], ['network' => Protocol::DIASPORA, 'url' => $urls]); + $person = DBA::selectFirst('fcontact', [], ['network' => $network, 'url' => $urls]); } if (DBA::isResult($person)) { @@ -61,7 +58,7 @@ class FContact $update = true; } - if ($person["guid"] == "") { + if (empty($person['guid']) || empty($person['uri-id'])) { $update = true; } } @@ -73,14 +70,14 @@ class FContact if ($update) { Logger::info('create or refresh', ['handle' => $handle]); - $r = Probe::uri($handle, Protocol::DIASPORA); + $r = Probe::uri($handle, $network); // Note that Friendica contacts will return a "Diaspora person" // if Diaspora connectivity is enabled on their server - if ($r && ($r["network"] === Protocol::DIASPORA)) { + if ($r && ($r["network"] === $network)) { self::updateFContact($r); - $person = self::getByURL($handle, false); + $person = self::getByURL($handle, false, $network); } } @@ -101,6 +98,7 @@ class FContact 'batch' => $arr["batch"], 'notify' => $arr["notify"], 'poll' => $arr["poll"], 'confirm' => $arr["confirm"], 'alias' => $arr["alias"], 'pubkey' => $arr["pubkey"], + 'uri-id' => ItemURI::insert(['uri' => $arr['url'], 'guid' => $arr['guid']]), 'updated' => DateTimeFormat::utcNow()]; $condition = ['url' => $arr["url"], 'network' => $arr["network"]]; @@ -121,92 +119,11 @@ class FContact { Logger::info('fcontact', ['guid' => $fcontact_guid]); - $r = q( - "SELECT `url` FROM `fcontact` WHERE `url` != '' AND `network` = '%s' AND `guid` = '%s'", - DBA::escape(Protocol::DIASPORA), - DBA::escape($fcontact_guid) - ); - - if (DBA::isResult($r)) { - return $r[0]['url']; - } - - return null; - } - - /** - * Add suggestions for a given contact - * - * @param integer $uid - * @param integer $cid - * @return bool Was the adding successful? - */ - public static function addSuggestion(int $uid, int $cid) - { - $owner = User::getOwnerDataById($uid); - $contact = Contact::getById($cid); - - if (DBA::exists('contact', ['nurl' => Strings::normaliseLink($contact['url']), 'uid' => $uid])) { - return false; - } - - $suggest = []; - $suggest['uid'] = $uid; - $suggest['cid'] = $contact['id']; - $suggest['url'] = $contact['url']; - $suggest['name'] = $contact['name']; - $suggest['photo'] = $contact['photo']; - $suggest['request'] = $contact['request']; - $suggest['title'] = ''; - $suggest['body'] = ''; - - // Do we already have an fcontact record for this person? - $fid = 0; - $fcontact = DBA::selectFirst('fcontact', ['id'], ['url' => $suggest['url']]); + $fcontact = DBA::selectFirst('fcontact', ['url'], ["`url` != ? AND `network` = ? AND `guid` = ?", '', Protocol::DIASPORA, $fcontact_guid]); if (DBA::isResult($fcontact)) { - $fid = $fcontact['id']; - - $fields = ['name' => $suggest['name'], 'photo' => $suggest['photo'], 'request' => $suggest['request']]; - DBA::update('fcontact', $fields, ['id' => $fid]); - - // Quit if we already have an introduction for this person - if (DBA::exists('intro', ['uid' => $suggest['uid'], 'fid' => $fid])) { - return false; - } + return $fcontact['url']; } - if (empty($fid)) { - $fields = ['name' => $suggest['name'], 'url' => $suggest['url'], - 'photo' => $suggest['photo'], 'request' => $suggest['request']]; - DBA::insert('fcontact', $fields); - $fid = DBA::lastInsertId(); - if (empty($fid)) { - Logger::warning('FContact had not been created', ['fcontact' => $fields]); - return false; - } - } - - $hash = Strings::getRandomHex(); - $fields = ['uid' => $suggest['uid'], 'fid' => $fid, 'contact-id' => $suggest['cid'], - 'note' => $suggest['body'], 'hash' => $hash, 'datetime' => DateTimeFormat::utcNow(), 'blocked' => false]; - DBA::insert('intro', $fields); - - notification([ - 'type' => Type::SUGGEST, - 'notify_flags' => $owner['notify-flags'], - 'language' => $owner['language'], - 'to_name' => $owner['name'], - 'to_email' => $owner['email'], - 'uid' => $owner['uid'], - 'item' => $suggest, - 'link' => DI::baseUrl().'/notifications/intros', - 'source_name' => $contact['name'], - 'source_link' => $contact['url'], - 'source_photo' => $contact['photo'], - 'verb' => Activity::REQ_FRIEND, - 'otype' => 'intro' - ]); - - return true; + return null; } }