This repository has been archived by the owner on Aug 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Implement D8 initialization for civicrm-setup #11
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
<?php | ||
/** | ||
* @file | ||
* | ||
* Determine default settings for Drupal 8. | ||
*/ | ||
|
||
if (!defined('CIVI_SETUP')) { | ||
exit("Installation plugins must only be loaded by the installer.\n"); | ||
} | ||
|
||
\Civi\Setup::dispatcher() | ||
->addListener('civi.setup.checkAuthorized', function (\Civi\Setup\Event\CheckAuthorizedEvent $e) { | ||
$model = $e->getModel(); | ||
if ($model->cms !== 'Drupal8' || !function_exists('user_access')) { | ||
return; | ||
} | ||
|
||
\Civi\Setup::log()->info(sprintf('[%s] Handle %s', basename(__FILE__), 'checkAuthorized')); | ||
$e->setAuthorized(user_access('administer modules')); | ||
}); | ||
|
||
\Civi\Setup::dispatcher() | ||
->addListener('civi.setup.init', function (\Civi\Setup\Event\InitEvent $e) { | ||
$model = $e->getModel(); | ||
if ($model->cms !== 'Drupal8') { | ||
return; | ||
} | ||
\Civi\Setup::log()->info(sprintf('[%s] Handle %s', basename(__FILE__), 'init')); | ||
|
||
$cmsPath = \Drupal::root(); | ||
|
||
// Compute settingsPath. | ||
$siteDir = \Civi\Setup\DrupalUtil::getDrupalSiteDir($cmsPath); | ||
$model->settingsPath = implode(DIRECTORY_SEPARATOR, [$cmsPath, 'sites', $siteDir, 'civicrm.settings.php']); | ||
|
||
// Compute DSN. | ||
$databases = \Drupal\Core\Database\Database::getConnectionInfo(); | ||
$model->db = $model->cmsDb = array( | ||
'server' => \Civi\Setup\DbUtil::encodeHostPort($databases['default']['host'], $databases['default']['port'] ?: NULL), | ||
'username' => $databases['default']['username'], | ||
'password' => $databases['default']['password'], | ||
'database' => $databases['default']['database'], | ||
); | ||
|
||
// Compute cmsBaseUrl. | ||
global $base_url, $base_path; | ||
$model->cmsBaseUrl = $base_url . $base_path; | ||
|
||
// Compute general paths | ||
$model->paths['civicrm.files']['url'] = implode(DIRECTORY_SEPARATOR, [$base_url, \Drupal\Core\StreamWrapper\PublicStream::basePath(), 'civicrm']); | ||
$model->paths['civicrm.files']['path'] = implode(DIRECTORY_SEPARATOR, [_drupal8_civisetup_getPublicFiles(), 'civicrm']); | ||
|
||
// Compute templateCompileDir. | ||
$model->templateCompilePath = implode(DIRECTORY_SEPARATOR, [_drupal8_civisetup_getPrivateFiles(), 'civicrm', 'templates_c']); | ||
|
||
// Compute default locale. | ||
global $language; | ||
$model->lang = \Civi\Setup\LocaleUtil::pickClosest($language->langcode, $model->getField('lang', 'options')); | ||
}); | ||
|
||
function _drupal8_civisetup_getPublicFiles() { | ||
$filePublicPath = realpath(\Drupal\Core\StreamWrapper\PublicStream::basePath()); | ||
|
||
if (!CRM_Utils_File::isAbsolute($filePublicPath)) { | ||
$filePublicPath = \Drupal::root() . DIRECTORY_SEPARATOR . $filePublicPath; | ||
} | ||
|
||
return $filePublicPath; | ||
} | ||
|
||
function _drupal8_civisetup_getPrivateFiles() { | ||
$filePrivatePath = realpath(\Drupal\Core\StreamWrapper\PrivateStream::basePath()); | ||
|
||
if (!$filePrivatePath) { | ||
$filePrivatePath = _drupal8_civisetup_getPublicFiles(); | ||
} | ||
elseif ($filePrivatePath && !CRM_Utils_File::isAbsolute($filePrivatePath)) { | ||
$filePrivatePath = \Drupal::root() . DIRECTORY_SEPARATOR . $filePrivatePath; | ||
} | ||
|
||
return $filePrivatePath; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<?php | ||
namespace Civi\Setup; | ||
|
||
class DrupalUtil { | ||
|
||
/** | ||
* @param $cmsPath | ||
* | ||
* @return string | ||
*/ | ||
public static function getDrupalSiteDir($cmsPath) { | ||
static $siteDir = ''; | ||
|
||
if ($siteDir) { | ||
return $siteDir; | ||
} | ||
|
||
$sites = CIVICRM_DIRECTORY_SEPARATOR . 'sites' . CIVICRM_DIRECTORY_SEPARATOR; | ||
$modules = CIVICRM_DIRECTORY_SEPARATOR . 'modules' . CIVICRM_DIRECTORY_SEPARATOR; | ||
preg_match("/" . preg_quote($sites, CIVICRM_DIRECTORY_SEPARATOR) . | ||
"([\-a-zA-Z0-9_.]+)" . | ||
preg_quote($modules, CIVICRM_DIRECTORY_SEPARATOR) . "/", | ||
$_SERVER['SCRIPT_FILENAME'], $matches | ||
); | ||
$siteDir = isset($matches[1]) ? $matches[1] : 'default'; | ||
|
||
if (strtolower($siteDir) == 'all') { | ||
// For this case - use drupal's way of finding out multi-site directory | ||
$uri = explode(CIVICRM_DIRECTORY_SEPARATOR, $_SERVER['SCRIPT_FILENAME']); | ||
$server = explode('.', implode('.', array_reverse(explode(':', rtrim($_SERVER['HTTP_HOST'], '.'))))); | ||
for ($i = count($uri) - 1; $i > 0; $i--) { | ||
for ($j = count($server); $j > 0; $j--) { | ||
$dir = implode('.', array_slice($server, -$j)) . implode('.', array_slice($uri, 0, $i)); | ||
if (file_exists($cmsPath . CIVICRM_DIRECTORY_SEPARATOR . | ||
'sites' . CIVICRM_DIRECTORY_SEPARATOR . $dir | ||
)) { | ||
$siteDir = $dir; | ||
return $siteDir; | ||
} | ||
} | ||
} | ||
$siteDir = 'default'; | ||
} | ||
|
||
return $siteDir; | ||
} | ||
|
||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@totten Done :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍