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
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from monishdeb/issue-10
Implement D8 initialization for civicrm-setup
- Loading branch information
Showing
3 changed files
with
132 additions
and
44 deletions.
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; | ||
} | ||
|
||
} |