Merge pull request #12203 from eileenmcnaughton/api_tester
[civicrm-core.git] / CRM / Utils / System / DrupalBase.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2018 |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2018
32 * $Id$
33 *
34 */
35
36 /**
37 * Drupal specific stuff goes here
38 */
39 abstract class CRM_Utils_System_DrupalBase extends CRM_Utils_System_Base {
40
41 /**
42 * Does this CMS / UF support a CMS specific logging mechanism?
43 * @todo - we should think about offering up logging mechanisms in a way that is also extensible by extensions
44 * @var bool
45 */
46 var $supports_UF_Logging = TRUE;
47
48 /**
49 */
50 public function __construct() {
51 /**
52 * 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
53 * functions and leave the codebase oblivious to the type of CMS
54 * @deprecated
55 * @var bool
56 */
57 $this->is_drupal = TRUE;
58 $this->supports_form_extensions = TRUE;
59 }
60
61 /**
62 * @inheritdoc
63 */
64 public function getDefaultFileStorage() {
65 $config = CRM_Core_Config::singleton();
66 $baseURL = CRM_Utils_System::languageNegotiationURL($config->userFrameworkBaseURL, FALSE, TRUE);
67
68 $siteName = $this->parseDrupalSiteNameFromRequest('/files/civicrm');
69 if ($siteName) {
70 $filesURL = $baseURL . "sites/$siteName/files/civicrm/";
71 }
72 else {
73 $filesURL = $baseURL . "sites/default/files/civicrm/";
74 }
75
76 return array(
77 'url' => $filesURL,
78 'path' => CRM_Utils_File::baseFilePath(),
79 );
80 }
81
82 /**
83 * @inheritDoc
84 */
85 public function getDefaultSiteSettings($dir) {
86 $config = CRM_Core_Config::singleton();
87 $siteName = $siteRoot = NULL;
88 $matches = array();
89 if (preg_match(
90 '|/sites/([\w\.\-\_]+)/|',
91 $config->templateCompileDir,
92 $matches
93 )) {
94 $siteName = $matches[1];
95 if ($siteName) {
96 $siteName = "/sites/$siteName/";
97 $siteNamePos = strpos($dir, $siteName);
98 if ($siteNamePos !== FALSE) {
99 $siteRoot = substr($dir, 0, $siteNamePos);
100 }
101 }
102 }
103 $url = $config->userFrameworkBaseURL;
104 return array($url, $siteName, $siteRoot);
105 }
106
107 /**
108 * Check if a resource url is within the drupal directory and format appropriately.
109 *
110 * @param $url (reference)
111 *
112 * @return bool
113 * TRUE for internal paths, FALSE for external. The drupal_add_js fn is able to add js more
114 * efficiently if it is known to be in the drupal site
115 */
116 public function formatResourceUrl(&$url) {
117 $internal = FALSE;
118 $base = CRM_Core_Config::singleton()->resourceBase;
119 global $base_url;
120 // Handle absolute urls
121 // compares $url (which is some unknown/untrusted value from a third-party dev) to the CMS's base url (which is independent of civi's url)
122 // to see if the url is within our drupal dir, if it is we are able to treated it as an internal url
123 if (strpos($url, $base_url) === 0) {
124 $file = trim(str_replace($base_url, '', $url), '/');
125 // CRM-18130: Custom CSS URL not working if aliased or rewritten
126 if (file_exists(DRUPAL_ROOT . $file)) {
127 $url = $file;
128 $internal = TRUE;
129 }
130 }
131 // Handle relative urls that are within the CiviCRM module directory
132 elseif (strpos($url, $base) === 0) {
133 $internal = TRUE;
134 $url = $this->appendCoreDirectoryToResourceBase(dirname(drupal_get_path('module', 'civicrm')) . '/') . trim(substr($url, strlen($base)), '/');
135 }
136 // Strip query string
137 $q = strpos($url, '?');
138 if ($q && $internal) {
139 $url = substr($url, 0, $q);
140 }
141 return $internal;
142 }
143
144 /**
145 * In instance where civicrm folder has a drupal folder & a civicrm core folder @ the same level append the
146 * civicrm folder name to the url
147 * See CRM-13737 for discussion of how this allows implementers to alter the folder structure
148 * @todo - this only provides a limited amount of flexiblity - it still expects a 'civicrm' folder with a 'drupal' folder
149 * and is only flexible as to the name of the civicrm folder.
150 *
151 * @param string $url
152 * Potential resource url based on standard folder assumptions.
153 * @return string
154 * with civicrm-core directory appended if not standard civi dir
155 */
156 public function appendCoreDirectoryToResourceBase($url) {
157 global $civicrm_root;
158 $lastDirectory = basename($civicrm_root);
159 if ($lastDirectory != 'civicrm') {
160 return $url .= $lastDirectory . '/';
161 }
162 return $url;
163 }
164
165 /**
166 * Generate an internal CiviCRM URL (copied from DRUPAL/includes/common.inc#url)
167 *
168 * @inheritDoc
169 */
170 public function url(
171 $path = NULL,
172 $query = NULL,
173 $absolute = FALSE,
174 $fragment = NULL,
175 $frontend = FALSE,
176 $forceBackend = FALSE
177 ) {
178 $config = CRM_Core_Config::singleton();
179 $script = 'index.php';
180
181 $path = CRM_Utils_String::stripPathChars($path);
182
183 if (isset($fragment)) {
184 $fragment = '#' . $fragment;
185 }
186
187 $base = $absolute ? $config->userFrameworkBaseURL : $config->useFrameworkRelativeBase;
188
189 $separator = '&';
190
191 if (!$config->cleanURL) {
192 if (isset($path)) {
193 if (isset($query)) {
194 return $base . $script . '?q=' . $path . $separator . $query . $fragment;
195 }
196 else {
197 return $base . $script . '?q=' . $path . $fragment;
198 }
199 }
200 else {
201 if (isset($query)) {
202 return $base . $script . '?' . $query . $fragment;
203 }
204 else {
205 return $base . $fragment;
206 }
207 }
208 }
209 else {
210 if (isset($path)) {
211 if (isset($query)) {
212 return $base . $path . '?' . $query . $fragment;
213 }
214 else {
215 return $base . $path . $fragment;
216 }
217 }
218 else {
219 if (isset($query)) {
220 return $base . $script . '?' . $query . $fragment;
221 }
222 else {
223 return $base . $fragment;
224 }
225 }
226 }
227 }
228
229 /**
230 * @inheritDoc
231 */
232 public function getUserIDFromUserObject($user) {
233 return !empty($user->uid) ? $user->uid : NULL;
234 }
235
236 /**
237 * @inheritDoc
238 */
239 public function setMessage($message) {
240 drupal_set_message($message);
241 }
242
243 /**
244 * @inheritDoc
245 */
246 public function getUniqueIdentifierFromUserObject($user) {
247 return empty($user->mail) ? NULL : $user->mail;
248 }
249
250 /**
251 * @inheritDoc
252 */
253 public function getLoggedInUniqueIdentifier() {
254 global $user;
255 return $this->getUniqueIdentifierFromUserObject($user);
256 }
257
258 /**
259 * @inheritDoc
260 */
261 public function permissionDenied() {
262 drupal_access_denied();
263 }
264
265 /**
266 * @inheritDoc
267 */
268 public function getUserRecordUrl($contactID) {
269 $uid = CRM_Core_BAO_UFMatch::getUFId($contactID);
270 if (CRM_Core_Session::singleton()
271 ->get('userID') == $contactID || CRM_Core_Permission::checkAnyPerm(array(
272 'cms:administer users',
273 'cms:view user account',
274 ))
275 ) {
276 return $this->url('user/' . $uid);
277 };
278 }
279
280 /**
281 * @inheritDoc
282 */
283 public function checkPermissionAddUser() {
284 return CRM_Core_Permission::check('administer users');
285 }
286
287 /**
288 * @inheritDoc
289 */
290 public function logger($message) {
291 if (CRM_Core_Config::singleton()->userFrameworkLogging && function_exists('watchdog')) {
292 watchdog('civicrm', '%message', array('%message' => $message), NULL, WATCHDOG_DEBUG);
293 }
294 }
295
296 /**
297 * @inheritDoc
298 */
299 public function clearResourceCache() {
300 _drupal_flush_css_js();
301 }
302
303 /**
304 * Append Drupal js to coreResourcesList.
305 *
306 * @param array $list
307 */
308 public function appendCoreResources(&$list) {
309 $list[] = 'js/crm.drupal.js';
310 }
311
312 /**
313 * @inheritDoc
314 */
315 public function flush() {
316 drupal_flush_all_caches();
317 }
318
319 /**
320 * @inheritDoc
321 */
322 public function getModules() {
323 $result = array();
324 $q = db_query('SELECT name, status FROM {system} WHERE type = \'module\' AND schema_version <> -1');
325 foreach ($q as $row) {
326 $result[] = new CRM_Core_Module('drupal.' . $row->name, ($row->status == 1) ? TRUE : FALSE);
327 }
328 return $result;
329 }
330
331 /**
332 * Find any users/roles/security-principals with the given permission
333 * and replace it with one or more permissions.
334 *
335 * @param string $oldPerm
336 * @param array $newPerms
337 * Array, strings.
338 *
339 * @return void
340 */
341 public function replacePermission($oldPerm, $newPerms) {
342 $roles = user_roles(FALSE, $oldPerm);
343 if (!empty($roles)) {
344 foreach (array_keys($roles) as $rid) {
345 user_role_revoke_permissions($rid, array($oldPerm));
346 user_role_grant_permissions($rid, $newPerms);
347 }
348 }
349 }
350
351 /**
352 * @inheritDoc
353 */
354 public function languageNegotiationURL($url, $addLanguagePart = TRUE, $removeLanguagePart = FALSE) {
355 if (empty($url)) {
356 return $url;
357 }
358
359 //CRM-7803 -from d7 onward.
360 $config = CRM_Core_Config::singleton();
361 if (function_exists('variable_get') &&
362 module_exists('locale') &&
363 function_exists('language_negotiation_get')
364 ) {
365 global $language;
366
367 //does user configuration allow language
368 //support from the URL (Path prefix or domain)
369 if (language_negotiation_get('language') == 'locale-url') {
370 $urlType = variable_get('locale_language_negotiation_url_part');
371
372 //url prefix
373 if ($urlType == LOCALE_LANGUAGE_NEGOTIATION_URL_PREFIX) {
374 if (isset($language->prefix) && $language->prefix) {
375 if ($addLanguagePart) {
376 $url .= $language->prefix . '/';
377 }
378 if ($removeLanguagePart) {
379 $url = str_replace("/{$language->prefix}/", '/', $url);
380 }
381 }
382 }
383 //domain
384 if ($urlType == LOCALE_LANGUAGE_NEGOTIATION_URL_DOMAIN) {
385 if (isset($language->domain) && $language->domain) {
386 if ($addLanguagePart) {
387 $url = (CRM_Utils_System::isSSL() ? 'https' : 'http') . '://' . $language->domain . base_path();
388 }
389 if ($removeLanguagePart && defined('CIVICRM_UF_BASEURL')) {
390 $url = str_replace('\\', '/', $url);
391 $parseUrl = parse_url($url);
392
393 //kinda hackish but not sure how to do it right
394 //hope http_build_url() will help at some point.
395 if (is_array($parseUrl) && !empty($parseUrl)) {
396 $urlParts = explode('/', $url);
397 $hostKey = array_search($parseUrl['host'], $urlParts);
398 $ufUrlParts = parse_url(CIVICRM_UF_BASEURL);
399 $urlParts[$hostKey] = $ufUrlParts['host'];
400 $url = implode('/', $urlParts);
401 }
402 }
403 }
404 }
405 }
406 }
407 return $url;
408 }
409
410 /**
411 * @inheritDoc
412 */
413 public function getVersion() {
414 return defined('VERSION') ? VERSION : 'Unknown';
415 }
416
417 /**
418 * @inheritDoc
419 */
420 public function isUserRegistrationPermitted() {
421 if (!variable_get('user_register', TRUE)) {
422 return FALSE;
423 }
424 return TRUE;
425 }
426
427 /**
428 * @inheritDoc
429 */
430 public function isPasswordUserGenerated() {
431 if (variable_get('user_email_verification', TRUE)) {
432 return FALSE;
433 }
434 return TRUE;
435 }
436
437 /**
438 * @inheritDoc
439 */
440 public function updateCategories() {
441 // copied this from profile.module. Seems a bit inefficient, but i don't know a better way
442 cache_clear_all();
443 menu_rebuild();
444 }
445
446 /**
447 * @inheritDoc
448 */
449 public function getUFLocale() {
450 // return CiviCRM’s xx_YY locale that either matches Drupal’s Chinese locale
451 // (for CRM-6281), Drupal’s xx_YY or is retrieved based on Drupal’s xx
452 // sometimes for CLI based on order called, this might not be set and/or empty
453 $language = $this->getCurrentLanguage();
454
455 if (empty($language)) {
456 return NULL;
457 }
458
459 if ($language == 'zh-hans') {
460 return 'zh_CN';
461 }
462
463 if ($language == 'zh-hant') {
464 return 'zh_TW';
465 }
466
467 if (preg_match('/^.._..$/', $language)) {
468 return $language;
469 }
470
471 return CRM_Core_I18n_PseudoConstant::longForShort(substr($language, 0, 2));
472 }
473
474 /**
475 * @inheritDoc
476 */
477 public function setUFLocale($civicrm_language) {
478 global $language;
479
480 $langcode = substr($civicrm_language, 0, 2);
481 $languages = language_list();
482
483 if (isset($languages[$langcode])) {
484 $language = $languages[$langcode];
485
486 // Config must be re-initialized to reset the base URL
487 // otherwise links will have the wrong language prefix/domain.
488 $config = CRM_Core_Config::singleton();
489 $config->free();
490
491 return TRUE;
492 }
493
494 return FALSE;
495 }
496
497 /**
498 * Perform any post login activities required by the UF -
499 * e.g. for drupal: records a watchdog message about the new session, saves the login timestamp,
500 * calls hook_user op 'login' and generates a new session.
501 *
502 * @param array $params
503 *
504 * FIXME: Document values accepted/required by $params
505 */
506 public function userLoginFinalize($params = array()) {
507 user_login_finalize($params);
508 }
509
510 /**
511 * @inheritDoc
512 */
513 public function getLoginDestination(&$form) {
514 $args = NULL;
515
516 $id = $form->get('id');
517 if ($id) {
518 $args .= "&id=$id";
519 }
520 else {
521 $gid = $form->get('gid');
522 if ($gid) {
523 $args .= "&gid=$gid";
524 }
525 else {
526 // Setup Personal Campaign Page link uses pageId
527 $pageId = $form->get('pageId');
528 if ($pageId) {
529 $component = $form->get('component');
530 $args .= "&pageId=$pageId&component=$component&action=add";
531 }
532 }
533 }
534
535 $destination = NULL;
536 if ($args) {
537 // append destination so user is returned to form they came from after login
538 $destination = CRM_Utils_System::currentPath() . '?reset=1' . $args;
539 }
540 return $destination;
541 }
542
543 /**
544 * Fixme: Why are we overriding the parent function? Seems inconsistent.
545 * This version supplies slightly different params to $this->url (not absolute and html encoded) but why?
546 *
547 * @param string $action
548 *
549 * @return string
550 */
551 public function postURL($action) {
552 if (!empty($action)) {
553 return $action;
554 }
555 return $this->url($_GET['q']);
556 }
557
558 /**
559 * Get an array of user details for a contact, containing at minimum the user ID & name.
560 *
561 * @param int $contactID
562 *
563 * @return array
564 * CMS user details including
565 * - id
566 * - name (ie the system user name.
567 */
568 public function getUser($contactID) {
569 $userDetails = parent::getUser($contactID);
570 $user = $this->getUserObject($userDetails['id']);
571 $userDetails['name'] = $user->name;
572 $userDetails['email'] = $user->mail;
573 return $userDetails;
574 }
575
576 /**
577 * Load the user object.
578 *
579 * Note this function still works in drupal 6, 7 & 8 but is deprecated in Drupal 8.
580 *
581 * @param $userID
582 *
583 * @return object
584 */
585 public function getUserObject($userID) {
586 return user_load($userID);
587 }
588
589 /**
590 * Parse the name of the drupal site.
591 *
592 * @param string $civicrm_root
593 *
594 * @return null|string
595 * @deprecated
596 */
597 public function parseDrupalSiteNameFromRoot($civicrm_root) {
598 $siteName = NULL;
599 if (strpos($civicrm_root,
600 DIRECTORY_SEPARATOR . 'sites' . DIRECTORY_SEPARATOR . 'all' . DIRECTORY_SEPARATOR . 'modules'
601 ) === FALSE
602 ) {
603 $startPos = strpos($civicrm_root,
604 DIRECTORY_SEPARATOR . 'sites' . DIRECTORY_SEPARATOR
605 );
606 $endPos = strpos($civicrm_root,
607 DIRECTORY_SEPARATOR . 'modules' . DIRECTORY_SEPARATOR
608 );
609 if ($startPos && $endPos) {
610 // if component is in sites/SITENAME/modules
611 $siteName = substr($civicrm_root,
612 $startPos + 7,
613 $endPos - $startPos - 7
614 );
615 }
616 }
617 return $siteName;
618 }
619
620 /**
621 * Determine if Drupal multi-site applies to the current request -- and,
622 * specifically, determine the name of the multisite folder.
623 *
624 * @param string $flagFile
625 * Check if $flagFile exists inside the site dir.
626 * @return null|string
627 * string, e.g. `bar.example.com` if using multisite.
628 * NULL if using the default site.
629 */
630 private function parseDrupalSiteNameFromRequest($flagFile = '') {
631 $phpSelf = array_key_exists('PHP_SELF', $_SERVER) ? $_SERVER['PHP_SELF'] : '';
632 $httpHost = array_key_exists('HTTP_HOST', $_SERVER) ? $_SERVER['HTTP_HOST'] : '';
633 if (empty($httpHost)) {
634 $httpHost = parse_url(CIVICRM_UF_BASEURL, PHP_URL_HOST);
635 if (parse_url(CIVICRM_UF_BASEURL, PHP_URL_PORT)) {
636 $httpHost .= ':' . parse_url(CIVICRM_UF_BASEURL, PHP_URL_PORT);
637 }
638 }
639
640 $confdir = $this->cmsRootPath() . '/sites';
641
642 if (file_exists($confdir . "/sites.php")) {
643 include $confdir . "/sites.php";
644 }
645 else {
646 $sites = array();
647 }
648
649 $uri = explode('/', $phpSelf);
650 $server = explode('.', implode('.', array_reverse(explode(':', rtrim($httpHost, '.')))));
651 for ($i = count($uri) - 1; $i > 0; $i--) {
652 for ($j = count($server); $j > 0; $j--) {
653 $dir = implode('.', array_slice($server, -$j)) . implode('.', array_slice($uri, 0, $i));
654 if (file_exists("$confdir/$dir" . $flagFile)) {
655 \Civi::$statics[__CLASS__]['drupalSiteName'] = $dir;
656 return \Civi::$statics[__CLASS__]['drupalSiteName'];
657 }
658 // check for alias
659 if (isset($sites[$dir]) && file_exists("$confdir/{$sites[$dir]}" . $flagFile)) {
660 \Civi::$statics[__CLASS__]['drupalSiteName'] = $sites[$dir];
661 return \Civi::$statics[__CLASS__]['drupalSiteName'];
662 }
663 }
664 }
665 }
666
667 /**
668 * Function to return current language of Drupal
669 *
670 * @return string
671 */
672 public function getCurrentLanguage() {
673 global $language;
674 return (!empty($language->language)) ? $language->language : $language;
675 }
676
677 }