X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModel%2FContact.php;h=5ae99552235fae196192adf784edd6eb6873296a;hb=3940e804e3ee4ac921e109f62a73fac2becaa611;hp=b18ebc22d6391272e35da6b8d66d047202c23693;hpb=f293e352ecd70b9745ec366d1ab49641503c40d8;p=friendica.git diff --git a/src/Model/Contact.php b/src/Model/Contact.php index b18ebc22d6..5ae9955223 100644 --- a/src/Model/Contact.php +++ b/src/Model/Contact.php @@ -13,6 +13,7 @@ use Friendica\Core\L10n; use Friendica\Core\Logger; use Friendica\Core\Protocol; use Friendica\Core\System; +use Friendica\Core\Session; use Friendica\Core\Worker; use Friendica\Database\DBA; use Friendica\Network\Probe; @@ -270,14 +271,17 @@ class Contact extends BaseObject * @param string $url The contact link * * @return string basepath + * @return boolean $dont_update Don't update the contact * @throws \Friendica\Network\HTTPException\InternalServerErrorException * @throws \ImagickException */ - public static function getBasepath($url) + public static function getBasepath($url, $dont_update = false) { $contact = DBA::selectFirst('contact', ['baseurl'], ['uid' => 0, 'nurl' => Strings::normaliseLink($url)]); if (!empty($contact['baseurl'])) { return $contact['baseurl']; + } elseif ($dont_update) { + return ''; } self::updateFromProbeByURL($url, true); @@ -290,6 +294,18 @@ class Contact extends BaseObject return ''; } + /** + * Check if the given contact url is on the same server + * + * @param string $url The contact link + * + * @return boolean Is it the same server? + */ + public static function isLocal($url) + { + return Strings::compareLink(self::getBasepath($url, true), System::baseUrl()); + } + /** * Returns the public contact id of the given user id * @@ -668,21 +684,21 @@ class Contact extends BaseObject public static function updateSelfFromUserID($uid, $update_avatar = false) { $fields = ['id', 'name', 'nick', 'location', 'about', 'keywords', 'gender', 'avatar', - 'xmpp', 'contact-type', 'forum', 'prv', 'avatar-date', 'url', 'nurl', + 'xmpp', 'contact-type', 'forum', 'prv', 'avatar-date', 'url', 'nurl', 'unsearchable', 'photo', 'thumb', 'micro', 'addr', 'request', 'notify', 'poll', 'confirm', 'poco']; $self = DBA::selectFirst('contact', $fields, ['uid' => $uid, 'self' => true]); if (!DBA::isResult($self)) { return; } - $fields = ['nickname', 'page-flags', 'account-type']; + $fields = ['nickname', 'page-flags', 'account-type', 'hidewall']; $user = DBA::selectFirst('user', $fields, ['uid' => $uid]); if (!DBA::isResult($user)) { return; } $fields = ['name', 'photo', 'thumb', 'about', 'address', 'locality', 'region', - 'country-name', 'gender', 'pub_keywords', 'xmpp']; + 'country-name', 'gender', 'pub_keywords', 'xmpp', 'net-publish']; $profile = DBA::selectFirst('profile', $fields, ['uid' => $uid, 'is-default' => true]); if (!DBA::isResult($profile)) { return; @@ -727,6 +743,7 @@ class Contact extends BaseObject $fields['avatar'] = System::baseUrl() . '/photo/profile/' .$uid . '.' . $file_suffix; $fields['forum'] = $user['page-flags'] == User::PAGE_FLAGS_COMMUNITY; $fields['prv'] = $user['page-flags'] == User::PAGE_FLAGS_PRVGROUP; + $fields['unsearchable'] = $user['hidewall'] || !$profile['net-publish']; // it seems as if ported accounts can have wrong values, so we make sure that now everything is fine. $fields['url'] = System::baseUrl() . '/profile/' . $user['nickname']; @@ -904,9 +921,9 @@ class Contact extends BaseObject public static function unmarkForArchival(array $contact) { // Always unarchive the relay contact entry - if (!empty($contact['batch'])) { + if (!empty($contact['batch']) && !empty($contact['term-date']) && ($contact['term-date'] > DBA::NULL_DATETIME)) { $fields = ['term-date' => DBA::NULL_DATETIME, 'archive' => false]; - $condition = ['batch' => $contact['batch'], 'contact-type' => self::TYPE_RELAY]; + $condition = ['uid' => 0, 'network' => Protocol::FEDERATED, 'batch' => $contact['batch'], 'contact-type' => self::TYPE_RELAY]; DBA::update('contact', $fields, $condition); } @@ -1175,9 +1192,9 @@ class Contact extends BaseObject } $sparkle = false; - if (($contact['network'] === Protocol::DFRN) && !$contact['self']) { + if (($contact['network'] === Protocol::DFRN) && !$contact['self'] && empty($contact['pending'])) { $sparkle = true; - $profile_link = System::baseUrl() . '/redir/' . $contact['id'] . '?url=' . $contact['url']; + $profile_link = System::baseUrl() . '/redir/' . $contact['id']; } else { $profile_link = $contact['url']; } @@ -1192,12 +1209,12 @@ class Contact extends BaseObject $profile_link = $profile_link . '?tab=profile'; } - if (self::canReceivePrivateMessages($contact)) { + if (self::canReceivePrivateMessages($contact) && empty($contact['pending'])) { $pm_url = System::baseUrl() . '/message/new/' . $contact['id']; } - if (($contact['network'] == Protocol::DFRN) && !$contact['self']) { - $poke_link = System::baseUrl() . '/poke/?f=&c=' . $contact['id']; + if (($contact['network'] == Protocol::DFRN) && !$contact['self'] && empty($contact['pending'])) { + $poke_link = System::baseUrl() . '/poke/?c=' . $contact['id']; } $contact_url = System::baseUrl() . '/contact/' . $contact['id']; @@ -1231,6 +1248,13 @@ class Contact extends BaseObject 'pm' => [L10n::t('Send PM'), $pm_url, false], 'poke' => [L10n::t('Poke'), $poke_link, false], ]; + + if (!empty($contact['pending'])) { + $intro = DBA::selectFirst('intro', ['id'], ['contact-id' => $contact['id']]); + if (DBA::isResult($intro)) { + $menu['follow'] = [L10n::t('Approve'), 'notifications/intros/' . $intro['id'], true]; + } + } } $args = ['contact' => $contact, 'menu' => &$menu]; @@ -1455,10 +1479,9 @@ class Contact extends BaseObject if (empty($data)) { $data = Probe::uri($url, "", $uid); - // Ensure that there is a gserver entry if (!empty($data['baseurl']) && ($data['network'] != Protocol::PHANTOM)) { - PortableContact::checkServer($data['baseurl']); + GServer::check($data['baseurl']); } } @@ -1620,7 +1643,8 @@ class Contact extends BaseObject // Check status of Diaspora endpoints if (!empty($contact['batch'])) { - return DBA::exists('contact', ['archive' => true, 'batch' => $contact['batch'], 'contact-type' => self::TYPE_RELAY]); + $condition = ['archive' => true, 'uid' => 0, 'network' => Protocol::FEDERATED, 'batch' => $contact['batch'], 'contact-type' => self::TYPE_RELAY]; + return DBA::exists('contact', $condition); } return false; @@ -2013,9 +2037,8 @@ class Contact extends BaseObject return true; } - // If Probe::uri fails the network code will be different (mostly "feed" or "unkn") - if (!in_array($ret['network'], Protocol::NATIVE_SUPPORT) || - (in_array($ret['network'], [Protocol::FEED, Protocol::PHANTOM]) && ($ret['network'] != $contact['network']))) { + // If Probe::uri fails the network code will be different ("feed" or "unkn") + if (in_array($ret['network'], [Protocol::FEED, Protocol::PHANTOM]) && ($ret['network'] != $contact['network'])) { if ($force && ($uid == 0)) { self::updateContact($id, $uid, $ret['url'], ['last-update' => $updated, 'failure_update' => $updated]); } @@ -2055,7 +2078,7 @@ class Contact extends BaseObject } } - if ($ret['network'] != Protocol::FEED) { + if (!empty($ret['photo']) && ($ret['network'] != Protocol::FEED)) { self::updateAvatar($ret['photo'], $uid, $id, $update || $force); } @@ -2479,6 +2502,9 @@ class Contact extends BaseObject ['id' => $contact['id'], 'uid' => $importer['uid']]); } + // Ensure to always have the correct network type, independent from the connection request method + self::updateFromProbe($contact['id'], '', true); + return true; } else { // send email notification to owner? @@ -2504,15 +2530,14 @@ class Contact extends BaseObject 'writable' => 1, ]); - $contact_record = [ - 'id' => DBA::lastInsertId(), - 'network' => $network, - 'name' => $name, - 'url' => $url, - 'photo' => $photo - ]; + $contact_id = DBA::lastInsertId(); + + // Ensure to always have the correct network type, independent from the connection request method + self::updateFromProbe($contact_id, '', true); - Contact::updateAvatar($photo, $importer["uid"], $contact_record["id"], true); + Contact::updateAvatar($photo, $importer["uid"], $contact_id, true); + + $contact_record = DBA::selectFirst('contact', ['id', 'network', 'name', 'url', 'photo'], ['id' => $contact_id]); /// @TODO Encapsulate this into a function/method $fields = ['uid', 'username', 'email', 'page-flags', 'notify-flags', 'language']; @@ -2655,7 +2680,7 @@ class Contact extends BaseObject */ public static function magicLink($contact_url, $url = '') { - if (!local_user() && !remote_user()) { + if (!Session::isAuthenticated()) { return $url ?: $contact_url; // Equivalent to: ($url != '') ? $url : $contact_url; } @@ -2667,7 +2692,7 @@ class Contact extends BaseObject // Prevents endless loop in case only a non-public contact exists for the contact URL unset($data['uid']); - return self::magicLinkByContact($data, $contact_url); + return self::magicLinkByContact($data, $url ?: $contact_url); } /** @@ -2699,8 +2724,10 @@ class Contact extends BaseObject */ public static function magicLinkByContact($contact, $url = '') { - if ((!local_user() && !remote_user()) || ($contact['network'] != Protocol::DFRN)) { - return $url ?: $contact['url']; // Equivalent to ($url != '') ? $url : $contact['url']; + $destination = $url ?: $contact['url']; // Equivalent to ($url != '') ? $url : $contact['url']; + + if (!Session::isAuthenticated() || ($contact['network'] != Protocol::DFRN)) { + return $destination; } // Only redirections to the same host do make sense @@ -2713,12 +2740,12 @@ class Contact extends BaseObject } if (empty($contact['id'])) { - return $url ?: $contact['url']; + return $destination; } $redirect = 'redir/' . $contact['id']; - if ($url != '') { + if (($url != '') && !Strings::compareLink($contact['url'], $url)) { $redirect .= '?url=' . $url; }