Merge pull request #14316 from eileenmcnaughton/membershipRenewal
[civicrm-core.git] / CRM / Utils / System / WordPress.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * WordPress specific stuff goes here
38 */
39class CRM_Utils_System_WordPress extends CRM_Utils_System_Base {
6714d8d2 40
bb3a214a 41 /**
bb3a214a 42 */
00be9182 43 public function __construct() {
4caaa696
EM
44 /**
45 * 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
46 * functions and leave the codebase oblivious to the type of CMS
47 * @deprecated
48 * @var bool
49 */
6a488035 50 $this->is_drupal = FALSE;
fe17e8d1 51 $this->is_wordpress = TRUE;
6a488035
TO
52 }
53
54 /**
17f443df 55 * @inheritDoc
6a488035 56 */
00be9182 57 public function setTitle($title, $pageTitle = NULL) {
6a488035
TO
58 if (!$pageTitle) {
59 $pageTitle = $title;
60 }
1beae3b1 61
17f443df
CW
62 // FIXME: Why is this global?
63 global $civicrm_wp_title;
64 $civicrm_wp_title = $title;
1beae3b1 65
17f443df
CW
66 // yes, set page title, depending on context
67 $context = civi_wp()->civicrm_context_get();
68 switch ($context) {
69 case 'admin':
70 case 'shortcode':
71 $template = CRM_Core_Smarty::singleton();
72 $template->assign('pageTitle', $pageTitle);
6a488035
TO
73 }
74 }
75
7ba2c8ad
KC
76 /**
77 * Moved from CRM_Utils_System_Base
78 */
79 public function getDefaultFileStorage() {
8ce9d9d6
TO
80 $config = CRM_Core_Config::singleton();
81 $cmsUrl = CRM_Utils_System::languageNegotiationURL($config->userFrameworkBaseURL, FALSE, TRUE);
82 $cmsPath = $this->cmsRootPath();
83 $filesPath = CRM_Utils_File::baseFilePath();
84 $filesRelPath = CRM_Utils_File::relativize($filesPath, $cmsPath);
85 $filesURL = rtrim($cmsUrl, '/') . '/' . ltrim($filesRelPath, ' /');
be2fb01f 86 return [
8ce9d9d6
TO
87 'url' => CRM_Utils_File::addTrailingSlash($filesURL, '/'),
88 'path' => CRM_Utils_File::addTrailingSlash($filesPath),
be2fb01f 89 ];
8ce9d9d6
TO
90 }
91
92 /**
93 * Determine the location of the CiviCRM source tree.
94 *
95 * @return array
96 * - url: string. ex: "http://example.com/sites/all/modules/civicrm"
97 * - path: string. ex: "/var/www/sites/all/modules/civicrm"
98 */
99 public function getCiviSourceStorage() {
7ba2c8ad 100 global $civicrm_root;
7ba2c8ad 101
8ce9d9d6
TO
102 // Don't use $config->userFrameworkBaseURL; it has garbage on it.
103 // More generally, we shouldn't be using $config here.
104 if (!defined('CIVICRM_UF_BASEURL')) {
105 throw new RuntimeException('Undefined constant: CIVICRM_UF_BASEURL');
7ba2c8ad 106 }
8ce9d9d6
TO
107
108 $cmsPath = $this->cmsRootPath();
109
110 // $config = CRM_Core_Config::singleton();
111 // overkill? // $cmsUrl = CRM_Utils_System::languageNegotiationURL($config->userFrameworkBaseURL, FALSE, TRUE);
112 $cmsUrl = CIVICRM_UF_BASEURL;
113 if (CRM_Utils_System::isSSL()) {
114 $cmsUrl = str_replace('http://', 'https://', $cmsUrl);
7ba2c8ad 115 }
d8182404 116 $civiRelPath = CRM_Utils_File::relativize(realpath($civicrm_root), realpath($cmsPath));
8ce9d9d6 117 $civiUrl = rtrim($cmsUrl, '/') . '/' . ltrim($civiRelPath, ' /');
be2fb01f 118 return [
8ce9d9d6
TO
119 'url' => CRM_Utils_File::addTrailingSlash($civiUrl, '/'),
120 'path' => CRM_Utils_File::addTrailingSlash($civicrm_root),
be2fb01f 121 ];
7ba2c8ad
KC
122 }
123
6a488035 124 /**
17f443df 125 * @inheritDoc
6a488035 126 */
00be9182 127 public function appendBreadCrumb($breadCrumbs) {
6a488035
TO
128 $breadCrumb = wp_get_breadcrumb();
129
130 if (is_array($breadCrumbs)) {
131 foreach ($breadCrumbs as $crumbs) {
132 if (stripos($crumbs['url'], 'id%%')) {
be2fb01f 133 $args = ['cid', 'mid'];
6a488035
TO
134 foreach ($args as $a) {
135 $val = CRM_Utils_Request::retrieve($a, 'Positive', CRM_Core_DAO::$_nullObject,
136 FALSE, NULL, $_GET
137 );
138 if ($val) {
139 $crumbs['url'] = str_ireplace("%%{$a}%%", $val, $crumbs['url']);
140 }
141 }
142 }
143 $breadCrumb[] = "<a href=\"{$crumbs['url']}\">{$crumbs['title']}</a>";
144 }
145 }
146
147 $template = CRM_Core_Smarty::singleton();
148 $template->assign_by_ref('breadcrumb', $breadCrumb);
149 wp_set_breadcrumb($breadCrumb);
150 }
151
152 /**
17f443df 153 * @inheritDoc
6a488035 154 */
00be9182 155 public function resetBreadCrumb() {
be2fb01f 156 $bc = [];
6a488035
TO
157 wp_set_breadcrumb($bc);
158 }
159
160 /**
17f443df 161 * @inheritDoc
6a488035 162 */
00be9182 163 public function addHTMLHead($head) {
6a488035
TO
164 static $registered = FALSE;
165 if (!$registered) {
166 // front-end view
be2fb01f 167 add_action('wp_head', [__CLASS__, '_showHTMLHead']);
6a488035 168 // back-end views
be2fb01f 169 add_action('admin_head', [__CLASS__, '_showHTMLHead']);
6a488035 170 }
be2fb01f 171 CRM_Core_Region::instance('wp_head')->add([
6a488035 172 'markup' => $head,
be2fb01f 173 ]);
6a488035
TO
174 }
175
17f443df 176 /**
fe482240 177 * WP action callback.
17f443df 178 */
00be9182 179 public static function _showHTMLHead() {
6a488035
TO
180 $region = CRM_Core_Region::instance('wp_head', FALSE);
181 if ($region) {
182 echo $region->render('');
183 }
184 }
185
186 /**
17f443df 187 * @inheritDoc
6a488035 188 */
00be9182 189 public function mapConfigToSSL() {
6a488035
TO
190 global $base_url;
191 $base_url = str_replace('http://', 'https://', $base_url);
192 }
193
194 /**
17f443df 195 * @inheritDoc
6a488035 196 */
408b79bf 197 public function url(
6a488035
TO
198 $path = NULL,
199 $query = NULL,
200 $absolute = FALSE,
201 $fragment = NULL,
6a488035
TO
202 $frontend = FALSE,
203 $forceBackend = FALSE
204 ) {
353ffa53
TO
205 $config = CRM_Core_Config::singleton();
206 $script = '';
c80e2dbf 207 $separator = '&';
353ffa53 208 $wpPageParam = '';
887f5d81 209 $fragment = isset($fragment) ? ('#' . $fragment) : '';
6a488035
TO
210
211 $path = CRM_Utils_String::stripPathChars($path);
df17aa21 212 $basepage = FALSE;
6a488035
TO
213
214 //this means wp function we are trying to use is not available,
215 //so load bootStrap
d8182404 216 // FIXME: Why bootstrap in url()? Generally want to define 1-2 strategic places to put bootstrap
6a488035 217 if (!function_exists('get_option')) {
d8182404 218 $this->loadBootStrap();
6a488035 219 }
df17aa21 220
6a488035 221 if ($config->userFrameworkFrontend) {
df17aa21 222 global $post;
887f5d81 223 if (get_option('permalink_structure') != '') {
6a488035
TO
224 $script = get_permalink($post->ID);
225 }
df17aa21
CW
226 if ($config->wpBasePage == $post->post_name) {
227 $basepage = TRUE;
228 }
01aca362 229 // when shortcode is included in page
6a488035 230 // also make sure we have valid query object
df17aa21 231 // FIXME: $wpPageParam has no effect and is only set on the *basepage*
6a488035 232 global $wp_query;
df17aa21 233 if (get_option('permalink_structure') == '' && method_exists($wp_query, 'get')) {
6a488035 234 if (get_query_var('page_id')) {
887f5d81 235 $wpPageParam = "page_id=" . get_query_var('page_id');
6a488035
TO
236 }
237 elseif (get_query_var('p')) {
238 // when shortcode is inserted in post
887f5d81 239 $wpPageParam = "p=" . get_query_var('p');
6a488035
TO
240 }
241 }
242 }
243
887f5d81
TO
244 $base = $this->getBaseUrl($absolute, $frontend, $forceBackend);
245
246 if (!isset($path) && !isset($query)) {
247 // FIXME: This short-circuited codepath is the same as the general one below, except
248 // in that it ignores "permlink_structure" / $wpPageParam / $script . I don't know
249 // why it's different (and I can only find two obvious use-cases for this codepath,
250 // of which at least one looks gratuitous). A more ambitious person would simply remove
251 // this code.
252 return $base . $fragment;
253 }
254
255 if (!$forceBackend && get_option('permalink_structure') != '' && ($wpPageParam || $script != '')) {
256 $base = $script;
6a488035
TO
257 }
258
be2fb01f 259 $queryParts = [];
df17aa21 260
df17aa21
CW
261 if (
262 // not using clean URLs
263 !$config->cleanURL
264 // requesting an admin URL
265 || ((is_admin() && !$frontend) || $forceBackend)
266 // is shortcode
267 || (!$basepage && $script != '')
268 ) {
269
270 // pre-existing logic
271 if (isset($path)) {
272 $queryParts[] = 'page=CiviCRM';
273 // Encode all but the *path* placeholder
274 if ($path !== '*path*') {
275 $path = rawurlencode($path);
276 }
277 $queryParts[] = "q={$path}";
278 }
279 if ($wpPageParam) {
280 $queryParts[] = $wpPageParam;
281 }
ffa62912 282 if (!empty($query)) {
df17aa21
CW
283 $queryParts[] = $query;
284 }
285
286 $final = $base . '?' . implode($separator, $queryParts) . $fragment;
287
887f5d81 288 }
df17aa21
CW
289 else {
290
291 // clean URLs
292 if (isset($path)) {
293 $base = trailingslashit($base) . str_replace('civicrm/', '', $path) . '/';
294 }
295 if (isset($query)) {
296 $query = ltrim($query, '=?&');
297 $queryParts[] = $query;
298 }
299
300 if (!empty($queryParts)) {
301 $final = $base . '?' . implode($separator, $queryParts) . $fragment;
302 }
303 else {
304 $final = $base . $fragment;
305 }
306
6a488035
TO
307 }
308
df17aa21 309 return $final;
887f5d81
TO
310 }
311
bb3a214a 312 /**
f553d1ea
KC
313 * 27-09-2016
314 * CRM-16421 CRM-17633 WIP Changes to support WP in it's own directory
315 * https://wiki.civicrm.org/confluence/display/CRM/WordPress+installed+in+its+own+directory+issues
316 * For now leave hard coded wp-admin references.
317 * TODO: remove wp-admin references and replace with admin_url() in the future. Look at best way to get path to admin_url
318 *
bb3a214a
EM
319 * @param $absolute
320 * @param $frontend
321 * @param $forceBackend
322 *
323 * @return mixed|null|string
324 */
887f5d81 325 private function getBaseUrl($absolute, $frontend, $forceBackend) {
353ffa53 326 $config = CRM_Core_Config::singleton();
6a488035 327 if ((is_admin() && !$frontend) || $forceBackend) {
f553d1ea 328 return Civi::paths()->getUrl('[wp.backend]/.', $absolute ? 'absolute' : 'relative');
6a488035 329 }
f553d1ea
KC
330 else {
331 return Civi::paths()->getUrl('[wp.frontend]/.', $absolute ? 'absolute' : 'relative');
36b820ae 332 }
01aca362 333 }
6a488035
TO
334
335 /**
17f443df 336 * @inheritDoc
6a488035 337 */
00be9182 338 public function authenticate($name, $password, $loadCMSBootstrap = FALSE, $realPath = NULL) {
6a488035
TO
339 $config = CRM_Core_Config::singleton();
340
341 if ($loadCMSBootstrap) {
9ba02e3e
TO
342 $config->userSystem->loadBootStrap([
343 'name' => $name,
344 'pass' => $password,
345 ]);
6a488035
TO
346 }
347
348 $user = wp_authenticate($name, $password);
349 if (is_a($user, 'WP_Error')) {
350 return FALSE;
351 }
352
17f443df 353 // TODO: need to change this to make sure we matched only one row
6a488035
TO
354
355 CRM_Core_BAO_UFMatch::synchronizeUFMatch($user->data, $user->data->ID, $user->data->user_email, 'WordPress');
356 $contactID = CRM_Core_BAO_UFMatch::getContactId($user->data->ID);
357 if (!$contactID) {
358 return FALSE;
359 }
be2fb01f 360 return [$contactID, $user->data->ID, mt_rand()];
6a488035
TO
361 }
362
363 /**
17f443df 364 * FIXME: Do something
ea3ddccf 365 *
366 * @param string $message
6a488035 367 */
00be9182 368 public function setMessage($message) {
6a488035
TO
369 }
370
bb3a214a 371 /**
b596c3e9 372 * @param \string $user
ea3ddccf 373 *
374 * @return bool
bb3a214a 375 */
e7292422 376 public function loadUser($user) {
b596c3e9 377 $userdata = get_user_by('login', $user);
378 if (!$userdata->data->ID) {
7ca9cd52 379 return FALSE;
b596c3e9 380 }
381
382 $uid = $userdata->data->ID;
383 wp_set_current_user($uid);
384 $contactID = CRM_Core_BAO_UFMatch::getContactId($uid);
385
386 // lets store contact id and user id in session
387 $session = CRM_Core_Session::singleton();
388 $session->set('ufID', $uid);
389 $session->set('userID', $contactID);
e7292422 390 return TRUE;
6a488035
TO
391 }
392
17f443df
CW
393 /**
394 * FIXME: Use CMS-native approach
395 */
00be9182 396 public function permissionDenied() {
0499b0ad 397 CRM_Core_Error::fatal(ts('You do not have permission to access this page.'));
6a488035
TO
398 }
399
8ee9bea9
SL
400 /**
401 * Determine the native ID of the CMS user.
402 *
403 * @param string $username
e97c66ff 404 *
405 * @return int|null
8ee9bea9
SL
406 */
407 public function getUfId($username) {
408 $userdata = get_user_by('login', $username);
409 if (!$userdata->data->ID) {
410 return NULL;
411 }
412 return $userdata->data->ID;
413 }
414
17f443df
CW
415 /**
416 * @inheritDoc
417 */
00be9182 418 public function logout() {
6a488035
TO
419 // destroy session
420 if (session_id()) {
421 session_destroy();
422 }
423 wp_logout();
424 wp_redirect(wp_login_url());
425 }
426
6a488035 427 /**
17f443df 428 * @inheritDoc
6a488035 429 */
00be9182 430 public function getUFLocale() {
cba2601a
SV
431 // Polylang plugin
432 if (function_exists('pll_current_language')) {
433 $language = pll_current_language();
434 }
19780d2b 435 // WPML plugin
cba2601a 436 elseif (defined('ICL_LANGUAGE_CODE')) {
19780d2b
DL
437 $language = ICL_LANGUAGE_CODE;
438 }
439
440 // TODO: set language variable for others WordPress plugin
441
5a44748c 442 if (!empty($language)) {
19780d2b 443 return CRM_Core_I18n_PseudoConstant::longForShort(substr($language, 0, 2));
0db6c3e1
TO
444 }
445 else {
19780d2b
DL
446 return NULL;
447 }
6a488035
TO
448 }
449
fd1f3a26
SV
450 /**
451 * @inheritDoc
452 */
453 public function setUFLocale($civicrm_language) {
454 // TODO (probably not possible with WPML?)
455 return TRUE;
456 }
457
6a488035 458 /**
fe482240 459 * Load wordpress bootstrap.
6a488035 460 *
9ba02e3e
TO
461 * @param array $params
462 * Optional credentials
463 * - name: string, cms username
464 * - pass: string, cms password
6714d8d2
SL
465 * @param bool $loadUser
466 * @param bool $throwError
467 * @param mixed $realPath
f4aaa82a
EM
468 *
469 * @return bool
6a488035 470 */
be2fb01f 471 public function loadBootStrap($params = [], $loadUser = TRUE, $throwError = TRUE, $realPath = NULL) {
05fcde76 472 global $wp, $wp_rewrite, $wp_the_query, $wp_query, $wpdb, $current_site, $current_blog, $current_user;
6a488035 473
9ba02e3e
TO
474 $name = CRM_Utils_Array::value('name', $params);
475 $pass = CRM_Utils_Array::value('pass', $params);
9ba02e3e 476
7a44e49f 477 if (!defined('WP_USE_THEMES')) {
c5f77355 478 define('WP_USE_THEMES', FALSE);
7a44e49f 479 }
6a488035
TO
480
481 $cmsRootPath = $this->cmsRootPath();
482 if (!$cmsRootPath) {
483 CRM_Core_Error::fatal("Could not find the install directory for WordPress");
484 }
aaffa79f 485 $path = Civi::settings()->get('wpLoadPhp');
b299b1cc 486 if (!empty($path)) {
35da5d8d 487 require_once $path;
b299b1cc
KC
488 }
489 elseif (file_exists($cmsRootPath . DIRECTORY_SEPARATOR . 'wp-load.php')) {
35da5d8d 490 require_once $cmsRootPath . DIRECTORY_SEPARATOR . 'wp-load.php';
b299b1cc
KC
491 }
492 else {
493 CRM_Core_Error::fatal("Could not find the bootstrap file for WordPress");
35da5d8d 494 }
6491539b
DL
495 $wpUserTimezone = get_option('timezone_string');
496 if ($wpUserTimezone) {
497 date_default_timezone_set($wpUserTimezone);
498 CRM_Core_Config::singleton()->userSystem->setMySQLTimeZone();
499 }
e7292422 500 require_once $cmsRootPath . DIRECTORY_SEPARATOR . 'wp-includes/pluggable.php';
f25b78a4 501 $uid = CRM_Utils_Array::value('uid', $params);
17763922
WA
502 if (!$uid) {
503 $name = $name ? $name : trim(CRM_Utils_Array::value('name', $_REQUEST));
504 $pass = $pass ? $pass : trim(CRM_Utils_Array::value('pass', $_REQUEST));
505 if ($name) {
d8182404 506 $uid = wp_authenticate($name, $pass);
17763922
WA
507 if (!$uid) {
508 if ($throwError) {
509 echo '<br />Sorry, unrecognized username or password.';
510 exit();
511 }
512 return FALSE;
513 }
514 }
515 }
fe1e7958 516 if ($uid) {
a4111333
CW
517 if ($uid instanceof WP_User) {
518 $account = wp_set_current_user($uid->ID);
c5f77355
CW
519 }
520 else {
a4111333
CW
521 $account = wp_set_current_user($uid);
522 }
fe1e7958 523 if ($account && $account->data->ID) {
524 global $user;
525 $user = $account;
526 return TRUE;
527 }
528 }
e7292422 529 return TRUE;
6a488035
TO
530 }
531
bb3a214a
EM
532 /**
533 * @param $dir
534 *
535 * @return bool
536 */
00be9182 537 public function validInstallDir($dir) {
dfbcf0b7 538 $includePath = "$dir/wp-includes";
468176f6 539 if (@file_exists("$includePath/version.php")) {
dfbcf0b7
DL
540 return TRUE;
541 }
542 return FALSE;
543 }
544
bb3a214a
EM
545 /**
546 * Determine the location of the CMS root.
547 *
72b3a70c
CW
548 * @return string|NULL
549 * local file system path to CMS root, or NULL if it cannot be determined
bb3a214a 550 */
00be9182 551 public function cmsRootPath() {
a93a0366
TO
552 global $civicrm_paths;
553 if (!empty($civicrm_paths['cms.root']['path'])) {
554 return $civicrm_paths['cms.root']['path'];
555 }
556
6a488035 557 $cmsRoot = $valid = NULL;
dfbcf0b7
DL
558 if (defined('CIVICRM_CMSDIR')) {
559 if ($this->validInstallDir(CIVICRM_CMSDIR)) {
560 $cmsRoot = CIVICRM_CMSDIR;
561 $valid = TRUE;
562 }
6a488035 563 }
dfbcf0b7
DL
564 else {
565 $pathVars = explode('/', str_replace('\\', '/', $_SERVER['SCRIPT_FILENAME']));
6a488035 566
dfbcf0b7
DL
567 //might be windows installation.
568 $firstVar = array_shift($pathVars);
569 if ($firstVar) {
570 $cmsRoot = $firstVar;
571 }
572
573 //start w/ csm dir search.
574 foreach ($pathVars as $var) {
575 $cmsRoot .= "/$var";
576 if ($this->validInstallDir($cmsRoot)) {
577 //stop as we found bootstrap.
578 $valid = TRUE;
579 break;
580 }
6a488035
TO
581 }
582 }
583
584 return ($valid) ? $cmsRoot : NULL;
585 }
586
bb3a214a 587 /**
17f443df 588 * @inheritDoc
bb3a214a 589 */
00be9182 590 public function createUser(&$params, $mail) {
be2fb01f 591 $user_data = [
6a488035
TO
592 'ID' => '',
593 'user_pass' => $params['cms_pass'],
594 'user_login' => $params['cms_name'],
595 'user_email' => $params[$mail],
596 'nickname' => $params['cms_name'],
597 'role' => get_option('default_role'),
be2fb01f 598 ];
6a488035
TO
599 if (isset($params['contactID'])) {
600 $contactType = CRM_Contact_BAO_Contact::getContactType($params['contactID']);
601 if ($contactType == 'Individual') {
602 $user_data['first_name'] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact',
603 $params['contactID'], 'first_name'
604 );
605 $user_data['last_name'] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact',
606 $params['contactID'], 'last_name'
607 );
608 }
609 }
610
611 $uid = wp_insert_user($user_data);
612
be2fb01f 613 $creds = [];
6a488035
TO
614 $creds['user_login'] = $params['cms_name'];
615 $creds['user_password'] = $params['cms_pass'];
616 $creds['remember'] = TRUE;
617 $user = wp_signon($creds, FALSE);
618
619 wp_new_user_notification($uid, $user_data['user_pass']);
620 return $uid;
621 }
622
f4aaa82a 623 /**
17f443df 624 * @inheritDoc
6a488035 625 */
00be9182 626 public function updateCMSName($ufID, $ufName) {
6a488035
TO
627 // CRM-10620
628 if (function_exists('wp_update_user')) {
353ffa53 629 $ufID = CRM_Utils_Type::escape($ufID, 'Integer');
6a488035
TO
630 $ufName = CRM_Utils_Type::escape($ufName, 'String');
631
be2fb01f 632 $values = ['ID' => $ufID, 'user_email' => $ufName];
481a74f4
TO
633 if ($ufID) {
634 wp_update_user($values);
6a488035
TO
635 }
636 }
637 }
638
bb3a214a 639 /**
c490a46a 640 * @param array $params
bb3a214a
EM
641 * @param $errors
642 * @param string $emailName
643 */
00be9182 644 public function checkUserNameEmailExists(&$params, &$errors, $emailName = 'email') {
6a488035
TO
645 $config = CRM_Core_Config::singleton();
646
353ffa53
TO
647 $dao = new CRM_Core_DAO();
648 $name = $dao->escape(CRM_Utils_Array::value('name', $params));
6a488035
TO
649 $email = $dao->escape(CRM_Utils_Array::value('mail', $params));
650
a7488080 651 if (!empty($params['name'])) {
6a488035
TO
652 if (!validate_username($params['name'])) {
653 $errors['cms_name'] = ts("Your username contains invalid characters");
654 }
655 elseif (username_exists(sanitize_user($params['name']))) {
be2fb01f 656 $errors['cms_name'] = ts('The username %1 is already taken. Please select another username.', [1 => $params['name']]);
6a488035
TO
657 }
658 }
659
a7488080 660 if (!empty($params['mail'])) {
6a488035
TO
661 if (!is_email($params['mail'])) {
662 $errors[$emailName] = "Your email is invaid";
663 }
664 elseif (email_exists($params['mail'])) {
db18d815 665 $errors[$emailName] = ts('The email address %1 already has an account associated with it. <a href="%2">Have you forgotten your password?</a>',
be2fb01f 666 [1 => $params['mail'], 2 => wp_lostpassword_url()]
6a488035
TO
667 );
668 }
669 }
670 }
671
672 /**
17f443df 673 * @inheritDoc
6a488035
TO
674 */
675 public function isUserLoggedIn() {
676 $isloggedIn = FALSE;
677 if (function_exists('is_user_logged_in')) {
678 $isloggedIn = is_user_logged_in();
679 }
680
681 return $isloggedIn;
682 }
683
8caad0ce 684 /**
685 * @inheritDoc
686 */
687 public function isUserRegistrationPermitted() {
688 if (!get_option('users_can_register')) {
689 return FALSE;
690 }
691 return TRUE;
692 }
693
63df6889
HD
694 /**
695 * @inheritDoc
696 */
1a6630be 697 public function isPasswordUserGenerated() {
63df6889
HD
698 return TRUE;
699 }
700
bb3a214a
EM
701 /**
702 * @return mixed
703 */
00be9182 704 public function getLoggedInUserObject() {
2b617cb0 705 if (function_exists('is_user_logged_in') &&
353ffa53
TO
706 is_user_logged_in()
707 ) {
2b617cb0
EM
708 global $current_user;
709 }
710 return $current_user;
711 }
353ffa53 712
6a488035 713 /**
17f443df 714 * @inheritDoc
6a488035
TO
715 */
716 public function getLoggedInUfID() {
717 $ufID = NULL;
2b617cb0
EM
718 $current_user = $this->getLoggedInUserObject();
719 return isset($current_user->ID) ? $current_user->ID : NULL;
720 }
721
722 /**
17f443df 723 * @inheritDoc
2b617cb0 724 */
00be9182 725 public function getLoggedInUniqueIdentifier() {
2b617cb0
EM
726 $user = $this->getLoggedInUserObject();
727 return $this->getUniqueIdentifierFromUserObject($user);
6a488035
TO
728 }
729
32998c82
EM
730 /**
731 * Get User ID from UserFramework system (Joomla)
77855840
TO
732 * @param object $user
733 * Object as described by the CMS.
72b3a70c
CW
734 *
735 * @return int|null
32998c82 736 */
00be9182 737 public function getUserIDFromUserObject($user) {
32998c82
EM
738 return !empty($user->ID) ? $user->ID : NULL;
739 }
740
2b617cb0 741 /**
17f443df 742 * @inheritDoc
2b617cb0 743 */
00be9182 744 public function getUniqueIdentifierFromUserObject($user) {
2b617cb0
EM
745 return empty($user->user_email) ? NULL : $user->user_email;
746 }
747
6a488035 748 /**
17f443df 749 * @inheritDoc
6a488035
TO
750 */
751 public function getLoginURL($destination = '') {
752 $config = CRM_Core_Config::singleton();
153155d3 753 $loginURL = wp_login_url();
6a488035
TO
754 return $loginURL;
755 }
756
bb3a214a 757 /**
ad37ac8e 758 * FIXME: Do something.
759 *
760 * @param \CRM_Core_Form $form
761 *
762 * @return NULL|string
bb3a214a 763 */
6a488035 764 public function getLoginDestination(&$form) {
408b79bf 765 return NULL;
6a488035
TO
766 }
767
768 /**
17f443df 769 * @inheritDoc
6a488035 770 */
00be9182 771 public function getVersion() {
6a488035
TO
772 if (function_exists('get_bloginfo')) {
773 return get_bloginfo('version', 'display');
774 }
775 else {
776 return 'Unknown';
777 }
778 }
6491539b
DL
779
780 /**
17f443df 781 * @inheritDoc
6491539b 782 */
00be9182 783 public function getTimeZoneString() {
6491539b
DL
784 return get_option('timezone_string');
785 }
59f97da6
EM
786
787 /**
17f443df 788 * @inheritDoc
59f97da6 789 */
00be9182 790 public function getUserRecordUrl($contactID) {
59f97da6 791 $uid = CRM_Core_BAO_UFMatch::getUFId($contactID);
353ffa53 792 if (CRM_Core_Session::singleton()
6714d8d2 793 ->get('userID') == $contactID || CRM_Core_Permission::checkAnyPerm(['cms:administer users'])
353ffa53 794 ) {
59f97da6
EM
795 return CRM_Core_Config::singleton()->userFrameworkBaseURL . "wp-admin/user-edit.php?user_id=" . $uid;
796 }
797 }
96025800 798
469d8dab
CW
799 /**
800 * Append WP js to coreResourcesList.
ad37ac8e 801 *
303017a1 802 * @param \Civi\Core\Event\GenericHookEvent $e
469d8dab 803 */
303017a1
CW
804 public function appendCoreResources(\Civi\Core\Event\GenericHookEvent $e) {
805 $e->list[] = 'js/crm.wordpress.js';
469d8dab
CW
806 }
807
03d5592a
CW
808 /**
809 * @inheritDoc
62c20d1e
CW
810 */
811 public function alterAssetUrl(\Civi\Core\Event\GenericHookEvent $e) {
812 // Set menubar breakpoint to match WP admin theme
813 if ($e->asset == 'crm-menubar.css') {
814 $e->params['breakpoint'] = 783;
815 }
816 }
817
818 /**
819 * @inheritDoc
03d5592a
CW
820 */
821 public function synchronizeUsers() {
822 $config = CRM_Core_Config::singleton();
823 if (PHP_SAPI != 'cli') {
824 set_time_limit(300);
825 }
826 $id = 'ID';
827 $mail = 'user_email';
828
829 $uf = $config->userFramework;
830 $contactCount = 0;
831 $contactCreated = 0;
832 $contactMatching = 0;
833
834 global $wpdb;
835 $wpUserIds = $wpdb->get_col("SELECT $wpdb->users.ID FROM $wpdb->users");
836
837 foreach ($wpUserIds as $wpUserId) {
838 $wpUserData = get_userdata($wpUserId);
839 $contactCount++;
840 if ($match = CRM_Core_BAO_UFMatch::synchronizeUFMatch($wpUserData,
841 $wpUserData->$id,
842 $wpUserData->$mail,
843 $uf,
844 1,
845 'Individual',
846 TRUE
847 )
848 ) {
849 $contactCreated++;
850 }
851 else {
852 $contactMatching++;
853 }
854 if (is_object($match)) {
855 $match->free();
856 }
857 }
858
be2fb01f 859 return [
03d5592a
CW
860 'contactCount' => $contactCount,
861 'contactMatching' => $contactMatching,
862 'contactCreated' => $contactCreated,
be2fb01f 863 ];
03d5592a
CW
864 }
865
6a488035 866}