function acquia_search_requirements in Acquia Connector 8
Same name and namespace in other branches
- 7.3 acquia_search/acquia_search.install \acquia_search_requirements()
- 7 acquia_search/acquia_search.install \acquia_search_requirements()
- 7.2 acquia_search/acquia_search.install \acquia_search_requirements()
Implements hook_requirements().
File
- acquia_search/
acquia_search.install, line 29 - Install, update, and uninstall functions for the Acquia Connector module.
Code
function acquia_search_requirements($phase) {
$requirements = [];
// Ensure translations don't break at install time
// Skip install checks if install.php is running. The weak install profile
// API means install.php calls hook_requirements for every module in
// a profile.
if ($phase == 'install' && (!defined('MAINTENANCE_MODE') || MAINTENANCE_MODE != 'install')) {
if (class_exists('Drupal\\acquia_connector\\Subscription')) {
$subscription = new Subscription();
if ($subscription
->hasCredentials()) {
$severity = REQUIREMENT_OK;
}
else {
$severity = REQUIREMENT_ERROR;
}
$requirements['acquia_search_credentials'] = [
'description' => t('In order to use Acquia search module you must have an Acquia Subscription. Please enter your Acquia Subscription keys.'),
'severity' => $severity,
'value' => '',
];
}
else {
$severity = REQUIREMENT_ERROR;
$requirements['acquia_search_credentials'] = [
'description' => t('In order to use Acquia search module you must enable and configure the Acquia Connector module.'),
'severity' => $severity,
'value' => '',
];
}
}
if ($phase == 'runtime') {
// Check SSL support.
if (in_array('ssl', stream_get_transports(), TRUE)) {
$severity = REQUIREMENT_OK;
$requirements['acquia_search_ssl'] = [
'description' => t('The Acquia Search module is using SSL to protect the privacy of your content.'),
];
}
else {
$severity = REQUIREMENT_WARNING;
$requirements['acquia_search_ssl'] = [
'description' => t('In order to protect the privacy of your content with the Acquia Search module you must have SSL support enabled in PHP on your host.'),
];
}
$requirements['acquia_search_ssl']['title'] = t('Acquia Search security');
$requirements['acquia_search_ssl']['severity'] = $severity;
$requirements['acquia_search_ssl']['value'] = '';
$servers = Server::loadMultiple();
$acquia_servers = array_filter($servers, function ($server) {
return acquia_search_is_acquia_server($server
->getBackendConfig());
});
// Show available Acquia search indexes.
foreach ($acquia_servers as $server_id => $server) {
$requirements['acquia_search_status_' . $server_id] = [
'title' => t('Acquia Search connection status'),
'severity' => REQUIREMENT_OK,
'description' => [
'#markup' => acquia_search_get_search_status_message($server),
],
];
}
// Flag when read-only mode was forced because of not finding the right
// index.
if (acquia_search_should_set_read_only_mode()) {
$requirements['acquia_search_read_only'] = [
'title' => t('Acquia Search read-only warning'),
'severity' => REQUIREMENT_WARNING,
'value' => acquia_search_get_read_only_mode_warning(),
];
}
// Flag if acquia_search_multi_subs module is enabled.
if (\Drupal::moduleHandler()
->moduleExists('acquia_search_multi_subs')) {
$requirements['acquia_search_asms'] = [
'title' => t('Acquia Search module warning'),
'severity' => REQUIREMENT_WARNING,
'description' => t('Warning: acquia_search_multi_subs.module is enabled, but most of its functionality is now included in the Acquia Search module. Please read <a href="@url">our documentation</a>.', [
'@url' => 'https://docs.acquia.com/acquia-search/multiple-cores/',
]),
];
}
}
// Update the cached version whenever we may be updating the module.
if ($phase == 'runtime' || $phase == 'update') {
_acquia_search_set_version();
}
return $requirements;
}