backport 24259
[civicrm-core.git] / CRM / Core / BAO / UFMatch.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
16 */
17
18/**
8eedd10a 19 * The basic class that interfaces with the external user framework.
6a488035
TO
20 */
21class CRM_Core_BAO_UFMatch extends CRM_Core_DAO_UFMatch {
22
b5c2afd0 23 /**
b44e3f84 24 * Create UF Match, Note that this function is here in it's simplest form @ the moment
b5c2afd0 25 *
ced9bfed
EM
26 * @param $params
27 *
28 * @return \CRM_Core_DAO_UFMatch
b5c2afd0 29 */
00be9182 30 public static function create($params) {
6a488035
TO
31 $hook = empty($params['id']) ? 'create' : 'edit';
32 CRM_Utils_Hook::pre($hook, 'UFMatch', CRM_Utils_Array::value('id', $params), $params);
22e263ad 33 if (empty($params['domain_id'])) {
e0e29b3c 34 $params['domain_id'] = CRM_Core_Config::domainID();
35 }
6a488035
TO
36 $dao = new CRM_Core_DAO_UFMatch();
37 $dao->copyValues($params);
ce4abc8e 38 // Fixme: this function cannot update records
69301426 39 if (!$dao->find(TRUE)) {
40 $dao->save();
ce4abc8e
CW
41 Civi::$statics[__CLASS__][$params['domain_id']][(int) $dao->contact_id] = (int) $dao->uf_id;
42 CRM_Utils_Hook::post($hook, 'UFMatch', $dao->id, $dao);
69301426 43 }
6a488035
TO
44 return $dao;
45 }
46
6a488035
TO
47 /**
48 * Given a UF user object, make sure there is a contact
49 * object for this user. If the user has new values, we need
50 * to update the CRM DB with the new values
51 *
6a0b768e
TO
52 * @param Object $user
53 * The drupal user object.
54 * @param bool $update
55 * Has the user object been edited.
77b97be7
EM
56 * @param $uf
57 *
58 * @param $ctype
59 * @param bool $isLogin
ac15829d
SL
60 *
61 * @throws CRM_Core_Exception
6a488035 62 */
00be9182 63 public static function synchronize(&$user, $update, $uf, $ctype, $isLogin = FALSE) {
2b617cb0 64 $userSystem = CRM_Core_Config::singleton()->userSystem;
6a488035
TO
65 $session = CRM_Core_Session::singleton();
66 if (!is_object($session)) {
ac15829d 67 throw new CRM_Core_Exception('wow, session is not an object?');
6a488035
TO
68 return;
69 }
70
2b617cb0
EM
71 $userSystemID = $userSystem->getBestUFID($user);
72 $uniqId = $userSystem->getBestUFUniqueIdentifier($user);
6a488035
TO
73
74 // if the id of the object is zero (true for anon users in drupal)
75 // have we already processed this user, if so early
76 // return.
77 $userID = $session->get('userID');
78 $ufID = $session->get('ufID');
79
32998c82 80 if (!$update && $ufID == $userSystemID) {
6a488035
TO
81 return;
82 }
83
84 //check do we have logged in user.
85 $isUserLoggedIn = CRM_Utils_System::isUserLoggedIn();
86
87 // reset the session if we are a different user
32998c82 88 if ($ufID && $ufID != $userSystemID) {
6a488035
TO
89 $session->reset();
90
91 //get logged in user ids, and set to session.
92 if ($isUserLoggedIn) {
93 $userIds = self::getUFValues();
94 $session->set('ufID', CRM_Utils_Array::value('uf_id', $userIds, ''));
95 $session->set('userID', CRM_Utils_Array::value('contact_id', $userIds, ''));
6a488035
TO
96 }
97 }
98
99 // return early
32998c82 100 if ($userSystemID == 0) {
6a488035
TO
101 return;
102 }
103
32998c82 104 $ufmatch = self::synchronizeUFMatch($user, $userSystemID, $uniqId, $uf, NULL, $ctype, $isLogin);
6a488035
TO
105 if (!$ufmatch) {
106 return;
107 }
108
109 //make sure we have session w/ consistent ids.
353ffa53
TO
110 $ufID = $ufmatch->uf_id;
111 $userID = $ufmatch->contact_id;
6a488035
TO
112 if ($isUserLoggedIn) {
113 $loggedInUserUfID = CRM_Utils_System::getLoggedInUfID();
114 //are we processing logged in user.
115 if ($loggedInUserUfID && $loggedInUserUfID != $ufID) {
353ffa53
TO
116 $userIds = self::getUFValues($loggedInUserUfID);
117 $ufID = CRM_Utils_Array::value('uf_id', $userIds, '');
118 $userID = CRM_Utils_Array::value('contact_id', $userIds, '');
6a488035
TO
119 }
120 }
121
122 //set user ids to session.
123 $session->set('ufID', $ufID);
124 $session->set('userID', $userID);
6a488035
TO
125
126 // add current contact to recently viewed
127 if ($ufmatch->contact_id) {
79d7553f 128 list($displayName, $contactImage, $contactType, $contactSubtype, $contactImageUrl)
129 = CRM_Contact_BAO_Contact::getDisplayAndImage($ufmatch->contact_id, TRUE, TRUE);
6a488035 130
be2fb01f 131 $otherRecent = [
6a488035
TO
132 'imageUrl' => $contactImageUrl,
133 'subtype' => $contactSubtype,
134 'editUrl' => CRM_Utils_System::url('civicrm/contact/add', "reset=1&action=update&cid={$ufmatch->contact_id}"),
be2fb01f 135 ];
6a488035
TO
136
137 CRM_Utils_Recent::add($displayName,
138 CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid={$ufmatch->contact_id}"),
139 $ufmatch->contact_id,
140 $contactType,
141 $ufmatch->contact_id,
142 $displayName,
143 $otherRecent
144 );
145 }
146 }
147
148 /**
149 * Synchronize the object with the UF Match entry. Can be called stand-alone from
150 * the drupalUsers script
151 *
6a0b768e
TO
152 * @param Object $user
153 * The drupal user object.
154 * @param string $userKey
155 * The id of the user from the uf object.
156 * @param string $uniqId
157 * The OpenID of the user.
158 * @param string $uf
159 * The name of the user framework.
160 * @param int $status
161 * Returns the status if user created or already exits (used for CMS sync).
72b3a70c
CW
162 * @param string $ctype
163 * contact type
fd31fa4c 164 * @param bool $isLogin
6a488035 165 *
72b3a70c 166 * @return CRM_Core_DAO_UFMatch|bool
6a488035 167 */
00be9182 168 public static function &synchronizeUFMatch(&$user, $userKey, $uniqId, $uf, $status = NULL, $ctype = NULL, $isLogin = FALSE) {
6a488035 169 $config = CRM_Core_Config::singleton();
6a488035
TO
170 $newContact = FALSE;
171
172 // make sure that a contact id exists for this user id
353ffa53 173 $ufmatch = new CRM_Core_DAO_UFMatch();
6a488035 174 $ufmatch->domain_id = CRM_Core_Config::domainID();
353ffa53 175 $ufmatch->uf_id = $userKey;
6a488035
TO
176
177 if (!$ufmatch->find(TRUE)) {
178 $transaction = new CRM_Core_Transaction();
179
180 $dao = NULL;
181 if (!empty($_POST) && !$isLogin) {
182 $params = $_POST;
183 $params['email'] = $uniqId;
49570419
SL
184 // dev/core#1858 Ensure that if we have a contactID parameter which is set in the Create user Record contact task form
185 // That this contacID value is passed through as the contact_id to the get duplicate contacts function. This is necessary because for Drupal 8 this function gets invoked
186 // Before the civicrm_uf_match record is added where as in D7 it isn't called until the user tries to actually login.
187 if (!empty($params['contactID'])) {
188 $params['contact_id'] = $params['contactID'];
189 }
6a488035 190
be2fb01f 191 $ids = CRM_Contact_BAO_Contact::getDuplicateContacts($params, 'Individual', 'Unsupervised', [], FALSE);
6a488035 192
aaffa79f 193 if (!empty($ids) && Civi::settings()->get('uniq_email_per_site')) {
6a488035
TO
194 // restrict dupeIds to ones that belong to current domain/site.
195 $siteContacts = CRM_Core_BAO_Domain::getContactList();
196 foreach ($ids as $index => $dupeId) {
197 if (!in_array($dupeId, $siteContacts)) {
198 unset($ids[$index]);
199 }
200 }
201 // re-index the array
202 $ids = array_values($ids);
203 }
204 if (!empty($ids)) {
205 $dao = new CRM_Core_DAO();
206 $dao->contact_id = $ids[0];
207 }
208 }
209 else {
210 $dao = CRM_Contact_BAO_Contact::matchContactOnEmail($uniqId, $ctype);
211 }
212
213 $found = FALSE;
214 if ($dao) {
215 // ensure there does not exists a contact_id / uf_id pair
216 // in the DB. This might be due to multiple emails per contact
217 // CRM-9091
218 $sql = "
219SELECT id
220FROM civicrm_uf_match
221WHERE contact_id = %1
222AND domain_id = %2
223";
be2fb01f
CW
224 $params = [
225 1 => [$dao->contact_id, 'Integer'],
226 2 => [CRM_Core_Config::domainID(), 'Integer'],
227 ];
6a488035
TO
228 $conflict = CRM_Core_DAO::singleValueQuery($sql, $params);
229
230 if (!$conflict) {
353ffa53 231 $found = TRUE;
6a488035 232 $ufmatch->contact_id = $dao->contact_id;
353ffa53 233 $ufmatch->uf_name = $uniqId;
6a488035
TO
234 }
235 }
236
237 if (!$found) {
3eb59ab5
AS
238 // Not sure why we're testing for this. Is there ever a case
239 // in which $user is not an object?
b7d765aa 240 if (is_object($user)) {
3eb59ab5
AS
241 if ($config->userSystem->is_drupal) {
242 $primary_email = $uniqId;
243 }
288eddac 244 elseif ($uf === 'WordPress') {
3eb59ab5
AS
245 $primary_email = $user->user_email;
246 }
247 else {
248 $primary_email = $user->email;
249 }
f8647bf9 250 $params['email'] = $primary_email;
6a488035
TO
251 }
252
288eddac 253 if ($ctype === 'Organization') {
6a488035
TO
254 $params['organization_name'] = $uniqId;
255 }
288eddac 256 elseif ($ctype === 'Household') {
6a488035
TO
257 $params['household_name'] = $uniqId;
258 }
259
288eddac 260 $params['contact_type'] = $ctype ?? 'Individual';
6a488035
TO
261
262 // extract first / middle / last name
263 // for joomla
288eddac 264 if ($uf === 'Joomla' && $user->name) {
6a488035
TO
265 CRM_Utils_String::extractName($user->name, $params);
266 }
267
288eddac 268 if ($uf === 'WordPress') {
6a488035
TO
269 if ($user->first_name) {
270 $params['first_name'] = $user->first_name;
271 }
272
273 if ($user->last_name) {
274 $params['last_name'] = $user->last_name;
275 }
276 }
277
288eddac 278 $contactId = civicrm_api3('Contact', 'create', $params)['id'];
6a488035 279 $ufmatch->contact_id = $contactId;
353ffa53 280 $ufmatch->uf_name = $uniqId;
6a488035
TO
281 }
282
283 // check that there are not two CMS IDs matching the same CiviCRM contact - this happens when a civicrm
284 // user has two e-mails and there is a cms match for each of them
285 // the gets rid of the nasty fata error but still reports the error
286 $sql = "
287SELECT uf_id
288FROM civicrm_uf_match
289WHERE ( contact_id = %1
290OR uf_name = %2
291OR uf_id = %3 )
292AND domain_id = %4
293";
be2fb01f
CW
294 $params = [
295 1 => [$ufmatch->contact_id, 'Integer'],
296 2 => [$ufmatch->uf_name, 'String'],
297 3 => [$ufmatch->uf_id, 'Integer'],
298 4 => [$ufmatch->domain_id, 'Integer'],
299 ];
6a488035
TO
300
301 $conflict = CRM_Core_DAO::singleValueQuery($sql, $params);
302
303 if (!$conflict) {
304 $ufmatch = CRM_Core_BAO_UFMatch::create((array) $ufmatch);
6a488035
TO
305 $newContact = TRUE;
306 $transaction->commit();
307 }
308 else {
309 $msg = ts("Contact ID %1 is a match for %2 user %3 but has already been matched to %4",
be2fb01f 310 [
6a488035
TO
311 1 => $ufmatch->contact_id,
312 2 => $uf,
313 3 => $ufmatch->uf_id,
21dfd5f5 314 4 => $conflict,
be2fb01f 315 ]
6a488035
TO
316 );
317 unset($conflict);
318 }
319 }
320
321 if ($status) {
322 return $newContact;
323 }
324 else {
325 return $ufmatch;
326 }
327 }
328
329 /**
fe482240 330 * Update the uf_name in the user object.
6a488035 331 *
6a0b768e
TO
332 * @param int $contactId
333 * Id of the contact to update.
6a488035 334 */
00be9182 335 public static function updateUFName($contactId) {
5e7f101a 336 if (!Civi::settings()->get('syncCMSEmail') || !$contactId) {
6a488035
TO
337 return;
338 }
5e7f101a 339
2f43fd45 340 // 1.do check for contact Id.
341 $ufmatch = new CRM_Core_DAO_UFMatch();
342 $ufmatch->contact_id = $contactId;
343 $ufmatch->domain_id = CRM_Core_Config::domainID();
344 if (!$ufmatch->find(TRUE)) {
345 return;
346 }
347
6a488035
TO
348 $config = CRM_Core_Config::singleton();
349 $ufName = CRM_Contact_BAO_Contact::getPrimaryEmail($contactId);
350
351 if (!$ufName) {
352 return;
353 }
354
355 $update = FALSE;
356
6a488035
TO
357 if ($ufmatch->uf_name != $ufName) {
358 $update = TRUE;
359 }
360
361 // CRM-6928
362 // 2.do check for duplicate ufName.
363 $ufDupeName = new CRM_Core_DAO_UFMatch();
364 $ufDupeName->uf_name = $ufName;
365 $ufDupeName->domain_id = CRM_Core_Config::domainID();
366 if ($ufDupeName->find(TRUE) &&
367 $ufDupeName->contact_id != $contactId
368 ) {
369 $update = FALSE;
370 }
371
372 if (!$update) {
373 return;
374 }
375
376 // save the updated ufmatch object
377 $ufmatch->uf_name = $ufName;
378 $ufmatch->save();
379 $config->userSystem->updateCMSName($ufmatch->uf_id, $ufName);
380 }
381
382 /**
fe482240 383 * Update the email value for the contact and user profile.
6a488035 384 *
5a4f6742
CW
385 * @param int $contactId
386 * Contact ID of the user.
8eedd10a 387 * @param string $emailAddress
6a0b768e 388 * Email to be modified for the user.
6a488035 389 */
00be9182 390 public static function updateContactEmail($contactId, $emailAddress) {
6a488035
TO
391 $strtolower = function_exists('mb_strtolower') ? 'mb_strtolower' : 'strtolower';
392 $emailAddress = $strtolower($emailAddress);
393
353ffa53 394 $ufmatch = new CRM_Core_DAO_UFMatch();
6a488035 395 $ufmatch->contact_id = $contactId;
353ffa53 396 $ufmatch->domain_id = CRM_Core_Config::domainID();
6a488035
TO
397 if ($ufmatch->find(TRUE)) {
398 // Save the email in UF Match table
399 $ufmatch->uf_name = $emailAddress;
400 CRM_Core_BAO_UFMatch::create((array) $ufmatch);
401
5e7f101a 402 // If CMS integration is disabled skip Civi email update if CMS user email is changed
403 if (Civi::settings()->get('syncCMSEmail') == FALSE) {
404 return;
405 }
406
6a488035
TO
407 //check if the primary email for the contact exists
408 //$contactDetails[1] - email
409 //$contactDetails[3] - email id
410 $contactDetails = CRM_Contact_BAO_Contact_Location::getEmailDetails($contactId);
411
412 if (trim($contactDetails[1])) {
56e50a8b 413 //update if record is found but different
6a488035 414 $emailID = $contactDetails[3];
56e50a8b
AS
415 if (trim($contactDetails[1]) != $emailAddress) {
416 civicrm_api3('Email', 'create', [
417 'id' => $emailID,
418 'email' => $emailAddress,
419 ]);
420 }
6a488035
TO
421 }
422 else {
423 //else insert a new email record
56e50a8b
AS
424 $result = civicrm_api3('Email', 'create', [
425 'contact_id' => $contactId,
426 'email' => $emailAddress,
427 'is_primary' => 1,
428 ]);
a650ed47 429 $emailID = $result['id'];
6a488035
TO
430 }
431
432 CRM_Core_BAO_Log::register($contactId,
433 'civicrm_email',
434 $emailID
435 );
436 }
437 }
438
439 /**
fe482240 440 * Delete the object records that are associated with this cms user.
6a488035 441 *
6a0b768e
TO
442 * @param int $ufID
443 * Id of the user to delete.
6a488035 444 */
00be9182 445 public static function deleteUser($ufID) {
6a488035
TO
446 $ufmatch = new CRM_Core_DAO_UFMatch();
447
448 $ufmatch->uf_id = $ufID;
ce4abc8e 449 $ufmatch->domain_id = $domainId = CRM_Core_Config::domainID();
6a488035 450 $ufmatch->delete();
ce4abc8e
CW
451
452 // Flush cache
453 Civi::$statics[__CLASS__][$domainId] = [];
6a488035
TO
454 }
455
456 /**
fe482240 457 * Get the contact_id given a uf_id.
6a488035 458 *
6a0b768e
TO
459 * @param int $ufID
460 * Id of UF for which related contact_id is required.
6a488035 461 *
e97c66ff 462 * @return int|null
a6c01b45 463 * contact_id on success, null otherwise
6a488035 464 */
00be9182 465 public static function getContactId($ufID) {
ce4abc8e 466 if (!$ufID) {
6a488035
TO
467 return NULL;
468 }
ce4abc8e 469 $domainId = CRM_Core_Config::domainID();
6a488035 470
ce4abc8e
CW
471 if (!isset(Civi::$statics[__CLASS__][$domainId])) {
472 Civi::$statics[__CLASS__][$domainId] = [];
473 }
474 $contactId = array_search($ufID, Civi::$statics[__CLASS__][$domainId]);
475 if ($contactId) {
476 return $contactId;
477 }
6a488035 478 $ufmatch = new CRM_Core_DAO_UFMatch();
6a488035 479 $ufmatch->uf_id = $ufID;
ce4abc8e 480 $ufmatch->domain_id = $domainId;
6a488035 481 if ($ufmatch->find(TRUE)) {
ce4abc8e
CW
482 $contactId = (int) $ufmatch->contact_id;
483 Civi::$statics[__CLASS__][$domainId][$contactId] = (int) $ufID;
484 return $contactId;
6a488035
TO
485 }
486 return NULL;
487 }
488
489 /**
fe482240 490 * Get the uf_id given a contact_id.
6a488035 491 *
6a0b768e
TO
492 * @param int $contactID
493 * ID of the contact for which related uf_id is required.
6a488035 494 *
e97c66ff 495 * @return int|null
a6c01b45 496 * uf_id of the given contact_id on success, null otherwise
6a488035 497 */
00be9182 498 public static function getUFId($contactID) {
ce4abc8e 499 if (!$contactID) {
6a488035
TO
500 return NULL;
501 }
ce4abc8e
CW
502 $domainId = CRM_Core_Config::domainID();
503 $contactID = (int) $contactID;
504
505 if (empty(Civi::$statics[__CLASS__][$domainId]) || !array_key_exists($contactID, Civi::$statics[__CLASS__][$domainId])) {
506 Civi::$statics[__CLASS__][$domainId][$contactID] = NULL;
507 $ufmatch = new CRM_Core_DAO_UFMatch();
508 $ufmatch->contact_id = $contactID;
509 $ufmatch->domain_id = $domainId;
510 if ($ufmatch->find(TRUE)) {
511 Civi::$statics[__CLASS__][$domainId][$contactID] = (int) $ufmatch->uf_id;
512 }
6a488035 513 }
ce4abc8e 514 return Civi::$statics[__CLASS__][$domainId][$contactID];
6a488035
TO
515 }
516
b5c2afd0 517 /**
f0612cdb 518 * @deprecated
b5c2afd0
EM
519 * @return bool
520 */
00be9182 521 public static function isEmptyTable() {
f0612cdb 522 CRM_Core_Error::deprecatedFunctionWarning('unused function to be removed');
6a488035
TO
523 $sql = "SELECT count(id) FROM civicrm_uf_match";
524 return CRM_Core_DAO::singleValueQuery($sql) > 0 ? FALSE : TRUE;
525 }
526
527 /**
fe482240 528 * Get the list of contact_id.
6a488035 529 *
f0612cdb 530 * @deprecated
a6c01b45
CW
531 * @return int
532 * contact_id on success, null otherwise
6a488035 533 */
00be9182 534 public static function getContactIDs() {
f0612cdb 535 CRM_Core_Error::deprecatedFunctionWarning('unused function to be removed');
be2fb01f 536 $id = [];
6a488035
TO
537 $dao = new CRM_Core_DAO_UFMatch();
538 $dao->find();
539 while ($dao->fetch()) {
540 $id[] = $dao->contact_id;
541 }
542 return $id;
543 }
544
545 /**
100fef9d 546 * See if this user exists, and if so, if they're allowed to login
6a488035 547 *
f0612cdb 548 * @deprecated
100fef9d 549 * @param int $openId
2a6da8d7 550 *
a6c01b45
CW
551 * @return bool
552 * true if allowed to login, false otherwise
6a488035 553 */
00be9182 554 public static function getAllowedToLogin($openId) {
f0612cdb 555 CRM_Core_Error::deprecatedFunctionWarning('unused function to be removed');
6a488035
TO
556 $ufmatch = new CRM_Core_DAO_UFMatch();
557 $ufmatch->uf_name = $openId;
558 $ufmatch->allowed_to_login = 1;
559 if ($ufmatch->find(TRUE)) {
560 return TRUE;
561 }
562 return FALSE;
563 }
564
565 /**
100fef9d 566 * Get the next unused uf_id value, since the standalone UF doesn't
6a488035
TO
567 * have id's (it uses OpenIDs, which go in a different field)
568 *
f0612cdb 569 * @deprecated
a6c01b45
CW
570 * @return int
571 * next highest unused value for uf_id
6a488035 572 */
00be9182 573 public static function getNextUfIdValue() {
f0612cdb 574 CRM_Core_Error::deprecatedFunctionWarning('unused function to be removed');
6a488035
TO
575 $query = "SELECT MAX(uf_id)+1 AS next_uf_id FROM civicrm_uf_match";
576 $dao = CRM_Core_DAO::executeQuery($query);
577 if ($dao->fetch()) {
578 $ufId = $dao->next_uf_id;
579 }
580
581 if (!isset($ufId)) {
582 $ufId = 1;
583 }
584 return $ufId;
585 }
586
b5c2afd0
EM
587 /**
588 * @param $email
f0612cdb 589 * @deprecated
b5c2afd0
EM
590 * @return bool
591 */
00be9182 592 public static function isDuplicateUser($email) {
f0612cdb 593 CRM_Core_Error::deprecatedFunctionWarning('unused function to be removed');
6a488035
TO
594 $session = CRM_Core_Session::singleton();
595 $contactID = $session->get('userID');
596 if (!empty($email) && isset($contactID)) {
597 $dao = new CRM_Core_DAO_UFMatch();
598 $dao->uf_name = $email;
599 if ($dao->find(TRUE) && $contactID != $dao->contact_id) {
600 return TRUE;
601 }
602 }
603 return FALSE;
604 }
605
606 /**
607 * Get uf match values for given uf id or logged in user.
608 *
6a0b768e
TO
609 * @param int $ufID
610 * Uf id.
6a488035 611 *
77b97be7 612 * @return array
76e7a76c 613 * uf values.
77b97be7 614 */
00be9182 615 public static function getUFValues($ufID = NULL) {
6a488035
TO
616 if (!$ufID) {
617 //get logged in user uf id.
618 $ufID = CRM_Utils_System::getLoggedInUfID();
619 }
620 if (!$ufID) {
be2fb01f 621 return [];
6a488035
TO
622 }
623
e6bf2d49 624 if (!isset(Civi::$statics[__CLASS__][__FUNCTION__][$ufID])) {
353ffa53
TO
625 $ufmatch = new CRM_Core_DAO_UFMatch();
626 $ufmatch->uf_id = $ufID;
6a488035
TO
627 $ufmatch->domain_id = CRM_Core_Config::domainID();
628 if ($ufmatch->find(TRUE)) {
e6bf2d49 629 Civi::$statics[__CLASS__][__FUNCTION__][$ufID] = [
6a488035
TO
630 'uf_id' => $ufmatch->uf_id,
631 'uf_name' => $ufmatch->uf_name,
632 'contact_id' => $ufmatch->contact_id,
633 'domain_id' => $ufmatch->domain_id,
be2fb01f 634 ];
6a488035
TO
635 }
636 }
e6bf2d49 637 return Civi::$statics[__CLASS__][__FUNCTION__][$ufID] ?? NULL;
6a488035 638 }
96025800 639
d343069c
CW
640 /**
641 * @inheritDoc
642 */
20e41014 643 public function addSelectWhereClause() {
d343069c 644 // Prevent default behavior of joining ACLs onto the contact_id field
be2fb01f 645 $clauses = [];
032346cc
CW
646 CRM_Utils_Hook::selectWhereClause($this, $clauses);
647 return $clauses;
d343069c
CW
648 }
649
6a488035 650}