View source
<?php
namespace Drupal\acquia_contenthub_subscriber\Commands;
use Drupal\acquia_contenthub\Client\ClientFactory;
use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Database\Connection;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Logger\LoggerChannelFactoryInterface;
use Drupal\Core\State\StateInterface;
use Drupal\Core\Url;
use Drush\Commands\DrushCommands;
use Drush\Log\LogLevel;
class AcquiaContentHubSubscriberCommands extends DrushCommands {
protected $database;
protected $config;
protected $clientFactory;
protected $logger;
protected $state;
protected $moduleHandler;
public function __construct(Connection $database, ConfigFactoryInterface $config_factory, ClientFactory $client_factory, LoggerChannelFactoryInterface $logger, StateInterface $state, ModuleHandlerInterface $module_handler) {
$this->database = $database;
$this->config = $config_factory
->get('acquia_contenthub.admin_settings');
$this->clientFactory = $client_factory;
$this->logger = $logger
->get('acquia_contenthub_publisher');
$this->state = $state;
$this->moduleHandler = $module_handler;
}
public function upgrade() {
if (!$this->database
->schema()
->tableExists('acquia_contenthub_entities_tracking')) {
$this->logger
->log(LogLevel::CANCEL, dt('Legacy tracking table does not exist.'));
return;
}
$settings = $this->clientFactory
->getSettings();
$client = $this->clientFactory
->getClient($settings);
if (!$client
->getSettings()
->getWebhook()) {
$webhook_url = Url::fromUri('internal:' . '/acquia-contenthub/webhook', [
'absolute' => TRUE,
])
->toString();
$webhook = $client
->getWebHook($webhook_url);
if (empty($webhook)) {
$connection_manager = \Drupal::service('acquia_contenthub.connection_manager');
$response = $connection_manager
->registerWebhook($webhook_url);
if (isset($response['success']) && FALSE === $response['success']) {
$message = dt('Registering webhooks encountered an error (code @code). @reason', [
'@code' => $response['error']['code'],
'@reason' => $response['error']['message'],
]);
$this->logger
->log(LogLevel::ERROR, $message);
return;
}
}
}
$filters = $this->state
->get('acquia_contenthub_subscriber_82002_acquia_contenthub_filters', []);
if (empty($filters)) {
$this->logger
->alert('This site has no filters to migrate.');
}
else {
module_load_include('inc', 'acquia_contenthub_subscriber', 'acquia_contenthub_subscriber.filters.migrate');
$unmigrated_filters = [];
$migrated_filters = [];
foreach ($filters as $contenthub_filter) {
$cloud_filter = acquia_contenthub_subscriber_migrate_filter($contenthub_filter);
if (!acquia_contenthub_subscriber_put_filter($cloud_filter)) {
$unmigrated_filters[] = $contenthub_filter;
}
else {
$migrated_filters[] = $contenthub_filter['name'];
}
}
if (!empty($migrated_filters)) {
$this->logger
->log(LogLevel::INFO, dt('Filters migrated successfully: %filters.', [
'%filters' => implode(',', $migrated_filters),
]));
}
if (!empty($unmigrated_filters)) {
$this->state
->set('acquia_contenthub_subscriber_82002_unmigrated_filters', $unmigrated_filters);
$this->logger
->log(LogLevel::WARNING, dt('The following filters could not be properly migrated: %filters.', [
'%filters' => implode(',', array_column($unmigrated_filters, 'name')),
]));
}
$this->state
->delete('acquia_contenthub_subscriber_82002_acquia_contenthub_filters');
}
$path = $this->moduleHandler
->getModule('acquia_contenthub_subscriber')
->getPath();
$batch = [
'title' => t('Adding Imported Entities to Interest List'),
'operations' => [
[
'acquia_contenthub_subscriber_track_imported_linked_entities',
[],
],
[
'acquia_contenthub_subscriber_track_imported_unlinked_entities',
[],
],
],
'file' => $path . '/acquia_contenthub_subscriber.migrate.inc',
];
batch_set($batch);
drush_backend_batch_process();
}
}