Merge pull request #17522 from seamuslee001/remove_deprecated_methods
[civicrm-core.git] / setup / plugins / init / Drupal8.civi-setup.php
1 <?php
2 /**
3 * @file
4 *
5 * Determine default settings for Drupal 8.
6 */
7
8 if (!defined('CIVI_SETUP')) {
9 exit("Installation plugins must only be loaded by the installer.\n");
10 }
11
12 \Civi\Setup::dispatcher()
13 ->addListener('civi.setup.checkAuthorized', function (\Civi\Setup\Event\CheckAuthorizedEvent $e) {
14 $model = $e->getModel();
15 if ($model->cms !== 'Drupal8' || !is_callable(['Drupal', 'currentUser'])) {
16 return;
17 }
18
19 \Civi\Setup::log()->info(sprintf('[%s] Handle %s', basename(__FILE__), 'checkAuthorized'));
20 $e->setAuthorized(\Civi\Setup\DrupalUtil::isDrush() || \Drupal::currentUser()->hasPermission('administer modules'));
21 });
22
23 \Civi\Setup::dispatcher()
24 ->addListener('civi.setup.init', function (\Civi\Setup\Event\InitEvent $e) {
25 $model = $e->getModel();
26 if ($model->cms !== 'Drupal8' || !is_callable(['Drupal', 'currentUser'])) {
27 return;
28 }
29 \Civi\Setup::log()->info(sprintf('[%s] Handle %s', basename(__FILE__), 'init'));
30
31 $cmsPath = \Drupal::root();
32
33 // Compute settingsPath.
34 $siteDir = \Civi\Setup\DrupalUtil::getDrupalSiteDir($cmsPath);
35 $model->settingsPath = implode(DIRECTORY_SEPARATOR, [$cmsPath, 'sites', $siteDir, 'civicrm.settings.php']);
36
37 if (($loadGenerated = \Drupal\Core\Site\Settings::get('civicrm_load_generated', NULL)) !== NULL) {
38 $model->loadGenerated = $loadGenerated;
39 }
40
41 // Compute DSN.
42 $connectionOptions = \Drupal::database()->getConnectionOptions();
43 $model->db = $model->cmsDb = array(
44 'server' => \Civi\Setup\DbUtil::encodeHostPort($connectionOptions['host'], $connectionOptions['port'] ?: NULL),
45 'username' => $connectionOptions['username'],
46 'password' => $connectionOptions['password'],
47 'database' => $connectionOptions['database'],
48 );
49
50 // Compute cmsBaseUrl.
51 if (empty($model->cmsBaseUrl)) {
52 global $base_url, $base_path;
53 $model->cmsBaseUrl = $base_url . $base_path;
54 }
55
56 // Compute general paths
57 $model->paths['civicrm.files']['url'] = implode('/', [$model->cmsBaseUrl, \Drupal\Core\StreamWrapper\PublicStream::basePath(), 'civicrm']);
58 $model->paths['civicrm.files']['path'] = implode(DIRECTORY_SEPARATOR, [_drupal8_civisetup_getPublicFiles(), 'civicrm']);
59
60 // Compute templateCompileDir.
61 $model->templateCompilePath = implode(DIRECTORY_SEPARATOR, [_drupal8_civisetup_getPrivateFiles(), 'civicrm', 'templates_c']);
62
63 // Compute default locale.
64 $langcode = \Drupal::languageManager()->getCurrentLanguage()->getId();
65 $model->lang = \Civi\Setup\LocaleUtil::pickClosest($langcode, $model->getField('lang', 'options'));
66 });
67
68 function _drupal8_civisetup_getPublicFiles() {
69 $filePublicPath = \Drupal\Core\StreamWrapper\PublicStream::basePath();
70
71 if (!$filePublicPath) {
72 throw new \Civi\Setup\Exception\InitException("Failed to identify public files path");
73 }
74 elseif (!CRM_Utils_File::isAbsolute($filePublicPath)) {
75 $filePublicPath = \Drupal::root() . DIRECTORY_SEPARATOR . $filePublicPath;
76 }
77
78 return $filePublicPath;
79 }
80
81 function _drupal8_civisetup_getPrivateFiles() {
82 $filePrivatePath = \Drupal\Core\StreamWrapper\PrivateStream::basePath();
83
84 if (!$filePrivatePath) {
85 $filePrivatePath = _drupal8_civisetup_getPublicFiles();
86 }
87 elseif ($filePrivatePath && !CRM_Utils_File::isAbsolute($filePrivatePath)) {
88 $filePrivatePath = \Drupal::root() . DIRECTORY_SEPARATOR . $filePrivatePath;
89 }
90
91 return $filePrivatePath;
92 }