Merge pull request #15989 from seamuslee001/dev_core_523
[civicrm-core.git] / CRM / Utils / System / Joomla.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
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 |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC https://civicrm.org/licensing
16 */
17
18 /**
19 * Joomla specific stuff goes here.
20 */
21 class CRM_Utils_System_Joomla extends CRM_Utils_System_Base {
22
23 /**
24 * Class constructor.
25 */
26 public function __construct() {
27 /**
28 * deprecated property to check if this is a drupal install. The correct method is to have functions on the UF classes for all UF specific
29 * functions and leave the codebase oblivious to the type of CMS
30 * @deprecated
31 * @var bool
32 */
33 $this->is_drupal = FALSE;
34 }
35
36 /**
37 * @inheritDoc
38 */
39 public function createUser(&$params, $mail) {
40 $baseDir = JPATH_SITE;
41 require_once $baseDir . '/components/com_users/models/registration.php';
42
43 $userParams = JComponentHelper::getParams('com_users');
44 $model = new UsersModelRegistration();
45 $ufID = NULL;
46
47 // get the default usertype
48 $userType = $userParams->get('new_usertype');
49 if (!$userType) {
50 $userType = 2;
51 }
52
53 if (isset($params['name'])) {
54 $fullname = trim($params['name']);
55 }
56 elseif (isset($params['contactID'])) {
57 $fullname = trim(CRM_Contact_BAO_Contact::displayName($params['contactID']));
58 }
59 else {
60 $fullname = trim($params['cms_name']);
61 }
62
63 // Prepare the values for a new Joomla user.
64 $values = [];
65 $values['name'] = $fullname;
66 $values['username'] = trim($params['cms_name']);
67 $values['password1'] = $values['password2'] = $params['cms_pass'];
68 $values['email1'] = $values['email2'] = trim($params[$mail]);
69
70 $lang = JFactory::getLanguage();
71 $lang->load('com_users', $baseDir);
72
73 $register = $model->register($values);
74
75 $ufID = JUserHelper::getUserId($values['username']);
76 return $ufID;
77 }
78
79 /**
80 * @inheritDoc
81 */
82 public function updateCMSName($ufID, $ufName) {
83 $ufID = CRM_Utils_Type::escape($ufID, 'Integer');
84 $ufName = CRM_Utils_Type::escape($ufName, 'String');
85
86 $values = [];
87 $user = JUser::getInstance($ufID);
88
89 $values['email'] = $ufName;
90 $user->bind($values);
91
92 $user->save();
93 }
94
95 /**
96 * Check if username and email exists in the Joomla db.
97 *
98 * @param array $params
99 * Array of name and mail values.
100 * @param array $errors
101 * Array of errors.
102 * @param string $emailName
103 * Field label for the 'email'.
104 */
105 public function checkUserNameEmailExists(&$params, &$errors, $emailName = 'email') {
106 $config = CRM_Core_Config::singleton();
107
108 $dao = new CRM_Core_DAO();
109 $name = $dao->escape(CRM_Utils_Array::value('name', $params));
110 $email = $dao->escape(CRM_Utils_Array::value('mail', $params));
111 //don't allow the special characters and min. username length is two
112 //regex \\ to match a single backslash would become '/\\\\/'
113 $isNotValid = (bool) preg_match('/[\<|\>|\"|\'|\%|\;|\(|\)|\&|\\\\|\/]/im', $name);
114 if ($isNotValid || strlen($name) < 2) {
115 $errors['cms_name'] = ts('Your username contains invalid characters or is too short');
116 }
117
118 $JUserTable = &JTable::getInstance('User', 'JTable');
119
120 $db = $JUserTable->getDbo();
121 $query = $db->getQuery(TRUE);
122 $query->select('username, email');
123 $query->from($JUserTable->getTableName());
124
125 // LOWER in query below roughly translates to 'hurt my database without deriving any benefit' See CRM-19811.
126 $query->where('(LOWER(username) = LOWER(\'' . $name . '\')) OR (LOWER(email) = LOWER(\'' . $email . '\'))');
127 $db->setQuery($query, 0, 10);
128 $users = $db->loadAssocList();
129
130 $row = [];
131 if (count($users)) {
132 $row = $users[0];
133 }
134
135 if (!empty($row)) {
136 $dbName = CRM_Utils_Array::value('username', $row);
137 $dbEmail = CRM_Utils_Array::value('email', $row);
138 if (strtolower($dbName) == strtolower($name)) {
139 $errors['cms_name'] = ts('The username %1 is already taken. Please select another username.',
140 [1 => $name]
141 );
142 }
143 if (strtolower($dbEmail) == strtolower($email)) {
144 $resetUrl = str_replace('administrator/', '', $config->userFrameworkBaseURL) . 'index.php?option=com_users&view=reset';
145 $errors[$emailName] = ts('The email address %1 already has an account associated with it. <a href="%2">Have you forgotten your password?</a>',
146 [1 => $email, 2 => $resetUrl]
147 );
148 }
149 }
150 }
151
152 /**
153 * @inheritDoc
154 */
155 public function setTitle($title, $pageTitle = NULL) {
156 if (!$pageTitle) {
157 $pageTitle = $title;
158 }
159
160 $template = CRM_Core_Smarty::singleton();
161 $template->assign('pageTitle', $pageTitle);
162
163 $document = JFactory::getDocument();
164 $document->setTitle($title);
165 }
166
167 /**
168 * @inheritDoc
169 */
170 public function appendBreadCrumb($breadCrumbs) {
171 $template = CRM_Core_Smarty::singleton();
172 $bc = $template->get_template_vars('breadcrumb');
173
174 if (is_array($breadCrumbs)) {
175 foreach ($breadCrumbs as $crumbs) {
176 if (stripos($crumbs['url'], 'id%%')) {
177 $args = ['cid', 'mid'];
178 foreach ($args as $a) {
179 $val = CRM_Utils_Request::retrieve($a, 'Positive', CRM_Core_DAO::$_nullObject,
180 FALSE, NULL, $_GET
181 );
182 if ($val) {
183 $crumbs['url'] = str_ireplace("%%{$a}%%", $val, $crumbs['url']);
184 }
185 }
186 }
187 $bc[] = $crumbs;
188 }
189 }
190 $template->assign_by_ref('breadcrumb', $bc);
191 }
192
193 /**
194 * @inheritDoc
195 */
196 public function resetBreadCrumb() {
197 }
198
199 /**
200 * @inheritDoc
201 */
202 public function addHTMLHead($string = NULL) {
203 if ($string) {
204 $document = JFactory::getDocument();
205 $document->addCustomTag($string);
206 }
207 }
208
209 /**
210 * @inheritDoc
211 */
212 public function addStyleUrl($url, $region) {
213 if ($region == 'html-header') {
214 $document = JFactory::getDocument();
215 $document->addStyleSheet($url);
216 return TRUE;
217 }
218 return FALSE;
219 }
220
221 /**
222 * @inheritDoc
223 */
224 public function addStyle($code, $region) {
225 if ($region == 'html-header') {
226 $document = JFactory::getDocument();
227 $document->addStyleDeclaration($code);
228 return TRUE;
229 }
230 return FALSE;
231 }
232
233 /**
234 * @inheritDoc
235 */
236 public function url(
237 $path = NULL,
238 $query = NULL,
239 $absolute = FALSE,
240 $fragment = NULL,
241 $frontend = FALSE,
242 $forceBackend = FALSE
243 ) {
244 $config = CRM_Core_Config::singleton();
245 $separator = '&';
246 $Itemid = '';
247 $script = '';
248 $path = CRM_Utils_String::stripPathChars($path);
249
250 if ($config->userFrameworkFrontend) {
251 $script = 'index.php';
252
253 // Get Itemid using JInput::get()
254 $input = Joomla\CMS\Factory::getApplication()->input;
255 $itemIdNum = $input->get("Itemid");
256 if ($itemIdNum && (strpos($path, 'civicrm/payment/ipn') === FALSE)) {
257 $Itemid = "{$separator}Itemid=" . $itemIdNum;
258 }
259 }
260
261 if (isset($fragment)) {
262 $fragment = '#' . $fragment;
263 }
264
265 $base = $absolute ? $config->userFrameworkBaseURL : $config->useFrameworkRelativeBase;
266
267 if (!empty($query)) {
268 $url = "{$base}{$script}?option=com_civicrm{$separator}task={$path}{$Itemid}{$separator}{$query}{$fragment}";
269 }
270 else {
271 $url = "{$base}{$script}?option=com_civicrm{$separator}task={$path}{$Itemid}{$fragment}";
272 }
273
274 // gross hack for joomla, we are in the backend and want to send a frontend url
275 if ($frontend && $config->userFramework == 'Joomla') {
276 // handle both joomla v1.5 and v1.6, CRM-7939
277 $url = str_replace('/administrator/index2.php', '/index.php', $url);
278 $url = str_replace('/administrator/index.php', '/index.php', $url);
279
280 // CRM-8215
281 $url = str_replace('/administrator/', '/index.php', $url);
282 }
283 elseif ($forceBackend) {
284 if (defined('JVERSION')) {
285 $joomlaVersion = JVERSION;
286 }
287 else {
288 $jversion = new JVersion();
289 $joomlaVersion = $jversion->getShortVersion();
290 }
291
292 if (version_compare($joomlaVersion, '1.6') >= 0) {
293 $url = str_replace('/index.php', '/administrator/index.php', $url);
294 }
295 }
296 return $url;
297 }
298
299 /**
300 * Set the email address of the user.
301 *
302 * @param object $user
303 * Handle to the user object.
304 */
305 public function setEmail(&$user) {
306 global $database;
307 $query = $db->getQuery(TRUE);
308 $query->select($db->quoteName('email'))
309 ->from($db->quoteName('#__users'))
310 ->where($db->quoteName('id') . ' = ' . $user->id);
311 $database->setQuery($query);
312 $user->email = $database->loadResult();
313 }
314
315 /**
316 * @inheritDoc
317 */
318 public function authenticate($name, $password, $loadCMSBootstrap = FALSE, $realPath = NULL) {
319 require_once 'DB.php';
320
321 $config = CRM_Core_Config::singleton();
322 $user = NULL;
323
324 if ($loadCMSBootstrap) {
325 $bootStrapParams = [];
326 if ($name && $password) {
327 $bootStrapParams = [
328 'name' => $name,
329 'pass' => $password,
330 ];
331 }
332 CRM_Utils_System::loadBootStrap($bootStrapParams, TRUE, TRUE, FALSE);
333 }
334
335 jimport('joomla.application.component.helper');
336 jimport('joomla.database.table');
337 jimport('joomla.user.helper');
338
339 $JUserTable = JTable::getInstance('User', 'JTable');
340
341 $db = $JUserTable->getDbo();
342 $query = $db->getQuery(TRUE);
343 $query->select('id, name, username, email, password');
344 $query->from($JUserTable->getTableName());
345 $query->where('(LOWER(username) = LOWER(\'' . $name . '\')) AND (block = 0)');
346 $db->setQuery($query, 0, 0);
347 $users = $db->loadObjectList();
348
349 $row = [];
350 if (count($users)) {
351 $row = $users[0];
352 }
353
354 $joomlaBase = self::getBasePath();
355 self::getJVersion($joomlaBase);
356
357 if (!empty($row)) {
358 $dbPassword = $row->password;
359 $dbId = $row->id;
360 $dbEmail = $row->email;
361
362 if (version_compare(JVERSION, '2.5.18', 'lt') ||
363 (version_compare(JVERSION, '3.0', 'ge') && version_compare(JVERSION, '3.2.1', 'lt'))
364 ) {
365 // now check password
366 list($hash, $salt) = explode(':', $dbPassword);
367 $cryptpass = md5($password . $salt);
368 if ($hash != $cryptpass) {
369 return FALSE;
370 }
371 }
372 else {
373 if (!JUserHelper::verifyPassword($password, $dbPassword, $dbId)) {
374 return FALSE;
375 }
376
377 if (version_compare(JVERSION, '3.8.0', 'ge')) {
378 jimport('joomla.application.helper');
379 jimport('joomla.application.cms');
380 jimport('joomla.application.administrator');
381 }
382 //include additional files required by Joomla 3.2.1+
383 elseif (version_compare(JVERSION, '3.2.1', 'ge')) {
384 require_once $joomlaBase . '/libraries/cms/application/helper.php';
385 require_once $joomlaBase . '/libraries/cms/application/cms.php';
386 require_once $joomlaBase . '/libraries/cms/application/administrator.php';
387 }
388 }
389
390 CRM_Core_BAO_UFMatch::synchronizeUFMatch($row, $dbId, $dbEmail, 'Joomla');
391 $contactID = CRM_Core_BAO_UFMatch::getContactId($dbId);
392 if (!$contactID) {
393 return FALSE;
394 }
395 return [$contactID, $dbId, mt_rand()];
396 }
397
398 return FALSE;
399 }
400
401 /**
402 * Set a init session with user object.
403 *
404 * @param array $data
405 * Array with user specific data.
406 */
407 public function setUserSession($data) {
408 list($userID, $ufID) = $data;
409 $user = new JUser($ufID);
410 $session = JFactory::getSession();
411 $session->set('user', $user);
412
413 parent::setUserSession($data);
414 }
415
416 /**
417 * FIXME: Do something
418 *
419 * @param string $message
420 */
421 public function setMessage($message) {
422 }
423
424 /**
425 * @param \string $username
426 * @param \string $password
427 *
428 * @return bool
429 */
430 public function loadUser($username, $password = NULL) {
431 $uid = JUserHelper::getUserId($username);
432 if (empty($uid)) {
433 return FALSE;
434 }
435 $contactID = CRM_Core_BAO_UFMatch::getContactId($uid);
436 if (!empty($password)) {
437 $instance = JFactory::getApplication('site');
438 $params = [
439 'username' => $username,
440 'password' => $password,
441 ];
442 //perform the login action
443 $instance->login($params);
444 }
445
446 // Save details in Joomla session
447 $user = JFactory::getUser($uid);
448 $jsession = JFactory::getSession();
449 $jsession->set('user', $user);
450
451 // Save details in Civi session
452 $session = CRM_Core_Session::singleton();
453 $session->set('ufID', $uid);
454 $session->set('userID', $contactID);
455 return TRUE;
456 }
457
458 /**
459 * FIXME: Use CMS-native approach
460 * @throws \CRM_Core_Exception.
461 */
462 public function permissionDenied() {
463 throw new CRM_Core_Exception(ts('You do not have permission to access this page.'));
464 }
465
466 /**
467 * @inheritDoc
468 */
469 public function logout() {
470 session_destroy();
471 CRM_Utils_System::setHttpHeader("Location", "index.php");
472 }
473
474 /**
475 * @inheritDoc
476 */
477 public function getUFLocale() {
478 if (defined('_JEXEC')) {
479 $conf = JFactory::getConfig();
480 $locale = $conf->get('language');
481 return str_replace('-', '_', $locale);
482 }
483 return NULL;
484 }
485
486 /**
487 * @inheritDoc
488 */
489 public function setUFLocale($civicrm_language) {
490 // TODO
491 return TRUE;
492 }
493
494 /**
495 * @inheritDoc
496 */
497 public function getVersion() {
498 if (class_exists('JVersion')) {
499 $version = new JVersion();
500 return $version->getShortVersion();
501 }
502 else {
503 return 'Unknown';
504 }
505 }
506
507 public function getJVersion($joomlaBase) {
508 // Files may be in different places depending on Joomla version
509 if (!defined('JVERSION')) {
510 // Joomla 3.8.0+
511 $versionPhp = $joomlaBase . '/libraries/src/Version.php';
512 if (!file_exists($versionPhp)) {
513 // Joomla < 3.8.0
514 $versionPhp = $joomlaBase . '/libraries/cms/version/version.php';
515 }
516 require $versionPhp;
517 $jversion = new JVersion();
518 define('JVERSION', $jversion->getShortVersion());
519 }
520 }
521
522 /**
523 * Setup the base path related constant.
524 * @return mixed
525 */
526 public function getBasePath() {
527 global $civicrm_root;
528 $joomlaPath = explode(DIRECTORY_SEPARATOR . 'administrator', $civicrm_root);
529 $joomlaBase = $joomlaPath[0];
530 return $joomlaBase;
531 }
532
533 /**
534 * Load joomla bootstrap.
535 *
536 * @param array $params
537 * with uid or name and password.
538 * @param bool $loadUser
539 * load cms user?.
540 * @param bool|\throw $throwError throw error on failure?
541 * @param null $realPath
542 * @param bool $loadDefines
543 *
544 * @return bool
545 */
546 public function loadBootStrap($params = [], $loadUser = TRUE, $throwError = TRUE, $realPath = NULL, $loadDefines = TRUE) {
547 $joomlaBase = self::getBasePath();
548
549 // load BootStrap here if needed
550 // We are a valid Joomla entry point.
551 // dev/core#1384 Use DS to ensure a correct JPATH_BASE in Windows
552 if (!defined('_JEXEC') && $loadDefines) {
553 define('_JEXEC', 1);
554 define('DS', DIRECTORY_SEPARATOR);
555 define('JPATH_BASE', $joomlaBase . DS . 'administrator');
556 require $joomlaBase . '/administrator/includes/defines.php';
557 }
558
559 // Get the framework.
560 if (file_exists($joomlaBase . '/libraries/import.legacy.php')) {
561 require $joomlaBase . '/libraries/import.legacy.php';
562 }
563 require $joomlaBase . '/libraries/cms.php';
564 self::getJVersion($joomlaBase);
565
566 if (version_compare(JVERSION, '3.8', 'lt')) {
567 require $joomlaBase . '/libraries/import.php';
568 require $joomlaBase . '/libraries/joomla/event/dispatcher.php';
569 }
570
571 require_once $joomlaBase . '/configuration.php';
572
573 if (version_compare(JVERSION, '3.0', 'lt')) {
574 require $joomlaBase . '/libraries/joomla/environment/uri.php';
575 require $joomlaBase . '/libraries/joomla/application/component/helper.php';
576 }
577 elseif (version_compare(JVERSION, '3.8', 'lt')) {
578 jimport('joomla.environment.uri');
579 }
580
581 if (version_compare(JVERSION, '3.8', 'lt')) {
582 jimport('joomla.application.cli');
583 }
584
585 if (!defined('JDEBUG')) {
586 define('JDEBUG', FALSE);
587 }
588
589 // Set timezone for Joomla on Cron
590 $config = JFactory::getConfig();
591 $timezone = $config->get('offset');
592 if ($timezone) {
593 date_default_timezone_set($timezone);
594 CRM_Core_Config::singleton()->userSystem->setMySQLTimeZone();
595 }
596
597 // CRM-14281 Joomla wasn't available during bootstrap, so hook_civicrm_config never executes.
598 $config = CRM_Core_Config::singleton();
599 CRM_Utils_Hook::config($config);
600
601 return TRUE;
602 }
603
604 /**
605 * @inheritDoc
606 */
607 public function isUserLoggedIn() {
608 $user = JFactory::getUser();
609 return ($user->guest) ? FALSE : TRUE;
610 }
611
612 /**
613 * @inheritDoc
614 */
615 public function isUserRegistrationPermitted() {
616 $userParams = JComponentHelper::getParams('com_users');
617 if (!$userParams->get('allowUserRegistration')) {
618 return FALSE;
619 }
620 return TRUE;
621 }
622
623 /**
624 * @inheritDoc
625 */
626 public function isPasswordUserGenerated() {
627 return TRUE;
628 }
629
630 /**
631 * @inheritDoc
632 */
633 public function getLoggedInUfID() {
634 $user = JFactory::getUser();
635 return ($user->guest) ? NULL : $user->id;
636 }
637
638 /**
639 * @inheritDoc
640 */
641 public function getLoggedInUniqueIdentifier() {
642 $user = JFactory::getUser();
643 return $this->getUniqueIdentifierFromUserObject($user);
644 }
645
646 /**
647 * @inheritDoc
648 */
649 public function getUser($contactID) {
650 $user_details = parent::getUser($contactID);
651 $user = JFactory::getUser($user_details['id']);
652 $user_details['name'] = $user->name;
653 return $user_details;
654 }
655
656 /**
657 * @inheritDoc
658 */
659 public function getUserIDFromUserObject($user) {
660 return !empty($user->id) ? $user->id : NULL;
661 }
662
663 /**
664 * @inheritDoc
665 */
666 public function getUniqueIdentifierFromUserObject($user) {
667 return ($user->guest) ? NULL : $user->email;
668 }
669
670 /**
671 * @inheritDoc
672 */
673 public function getTimeZoneString() {
674 $timezone = JFactory::getConfig()->get('offset');
675 return !$timezone ? date_default_timezone_get() : $timezone;
676 }
677
678 /**
679 * Get a list of all installed modules, including enabled and disabled ones
680 *
681 * @return array
682 * CRM_Core_Module
683 */
684 public function getModules() {
685 $result = [];
686
687 $db = JFactory::getDbo();
688 $query = $db->getQuery(TRUE);
689 $query->select('type, folder, element, enabled')
690 ->from('#__extensions')
691 ->where('type =' . $db->Quote('plugin'));
692 $plugins = $db->setQuery($query)->loadAssocList();
693 foreach ($plugins as $plugin) {
694 // question: is the folder really a critical part of the plugin's name?
695 $name = implode('.', ['joomla', $plugin['type'], $plugin['folder'], $plugin['element']]);
696 $result[] = new CRM_Core_Module($name, $plugin['enabled'] ? TRUE : FALSE);
697 }
698
699 return $result;
700 }
701
702 /**
703 * @inheritDoc
704 */
705 public function getLoginURL($destination = '') {
706 $config = CRM_Core_Config::singleton();
707 $loginURL = $config->userFrameworkBaseURL;
708 $loginURL = str_replace('administrator/', '', $loginURL);
709 $loginURL .= 'index.php?option=com_users&view=login';
710
711 //CRM-14872 append destination
712 if (!empty($destination)) {
713 $loginURL .= '&return=' . urlencode(base64_encode($destination));
714 }
715 return $loginURL;
716 }
717
718 /**
719 * @inheritDoc
720 */
721 public function getLoginDestination(&$form) {
722 $args = NULL;
723
724 $id = $form->get('id');
725 if ($id) {
726 $args .= "&id=$id";
727 }
728 else {
729 $gid = $form->get('gid');
730 if ($gid) {
731 $args .= "&gid=$gid";
732 }
733 else {
734 // Setup Personal Campaign Page link uses pageId
735 $pageId = $form->get('pageId');
736 if ($pageId) {
737 $component = $form->get('component');
738 $args .= "&pageId=$pageId&component=$component&action=add";
739 }
740 }
741 }
742
743 $destination = NULL;
744 if ($args) {
745 // append destination so user is returned to form they came from after login
746 $args = 'reset=1' . $args;
747 $destination = CRM_Utils_System::url(CRM_Utils_System::currentPath(), $args, TRUE, NULL, FALSE, TRUE);
748 }
749
750 return $destination;
751 }
752
753 /**
754 * Determine the location of the CMS root.
755 *
756 * @return string|NULL
757 * local file system path to CMS root, or NULL if it cannot be determined
758 */
759 public function cmsRootPath() {
760 global $civicrm_paths;
761 if (!empty($civicrm_paths['cms.root']['path'])) {
762 return $civicrm_paths['cms.root']['path'];
763 }
764
765 list($url, $siteName, $siteRoot) = $this->getDefaultSiteSettings();
766 if (file_exists("$siteRoot/administrator/index.php")) {
767 return $siteRoot;
768 }
769 return NULL;
770 }
771
772 /**
773 * @inheritDoc
774 */
775 public function getDefaultSiteSettings($dir = NULL) {
776 $config = CRM_Core_Config::singleton();
777 $url = preg_replace(
778 '|/administrator|',
779 '',
780 $config->userFrameworkBaseURL
781 );
782 // CRM-19453 revisited. Under Windows, the pattern wasn't recognised.
783 // This is the original pattern, but it doesn't work under Windows.
784 // By setting the pattern to the one used before the change first and only
785 // changing it means that the change code only affects Windows users.
786 $pattern = '|/media/civicrm/.*$|';
787 if (DIRECTORY_SEPARATOR == '\\') {
788 // This regular expression will handle Windows as well as Linux
789 // and any combination of forward and back slashes in directory
790 // separators. We only apply it if the directory separator is the one
791 // used by Windows.
792 $pattern = '|[\\\\/]media[\\\\/]civicrm[\\\\/].*$|';
793 }
794 $siteRoot = preg_replace(
795 $pattern,
796 '',
797 $config->imageUploadDir
798 );
799 return [$url, NULL, $siteRoot];
800 }
801
802 /**
803 * @inheritDoc
804 */
805 public function getUserRecordUrl($contactID) {
806 $uid = CRM_Core_BAO_UFMatch::getUFId($contactID);
807 $userRecordUrl = NULL;
808 // if logged in user has user edit access, then allow link to other users joomla profile
809 if (JFactory::getUser()->authorise('core.edit', 'com_users')) {
810 return CRM_Core_Config::singleton()->userFrameworkBaseURL . "index.php?option=com_users&view=user&task=user.edit&id=" . $uid;
811 }
812 elseif (CRM_Core_Session::singleton()->get('userID') == $contactID) {
813 return CRM_Core_Config::singleton()->userFrameworkBaseURL . "index.php?option=com_admin&view=profile&layout=edit&id=" . $uid;
814 }
815 }
816
817 /**
818 * @inheritDoc
819 */
820 public function checkPermissionAddUser() {
821 if (JFactory::getUser()->authorise('core.create', 'com_users')) {
822 return TRUE;
823 }
824 }
825
826 /**
827 * @inheritDoc
828 */
829 public function synchronizeUsers() {
830 $config = CRM_Core_Config::singleton();
831 if (PHP_SAPI != 'cli') {
832 set_time_limit(300);
833 }
834 $id = 'id';
835 $mail = 'email';
836 $name = 'name';
837
838 $JUserTable = &JTable::getInstance('User', 'JTable');
839
840 $db = $JUserTable->getDbo();
841 $query = $db->getQuery(TRUE);
842 $query->select($id . ', ' . $mail . ', ' . $name);
843 $query->from($JUserTable->getTableName());
844 $query->where($mail != '');
845
846 $db->setQuery($query);
847 $users = $db->loadObjectList();
848
849 $user = new StdClass();
850 $uf = $config->userFramework;
851 $contactCount = 0;
852 $contactCreated = 0;
853 $contactMatching = 0;
854 for ($i = 0; $i < count($users); $i++) {
855 $user->$id = $users[$i]->$id;
856 $user->$mail = $users[$i]->$mail;
857 $user->$name = $users[$i]->$name;
858 $contactCount++;
859 if ($match = CRM_Core_BAO_UFMatch::synchronizeUFMatch($user,
860 $users[$i]->$id,
861 $users[$i]->$mail,
862 $uf,
863 1,
864 'Individual',
865 TRUE
866 )
867 ) {
868 $contactCreated++;
869 }
870 else {
871 $contactMatching++;
872 }
873 }
874
875 return [
876 'contactCount' => $contactCount,
877 'contactMatching' => $contactMatching,
878 'contactCreated' => $contactCreated,
879 ];
880 }
881
882 }