class MigratePush in CMS Content Sync 8
Same name and namespace in other branches
- 2.1.x modules/cms_content_sync_migrate_acquia_content_hub/src/Form/MigratePush.php \Drupal\cms_content_sync_migrate_acquia_content_hub\Form\MigratePush
- 2.0.x modules/cms_content_sync_migrate_acquia_content_hub/src/Form/MigratePush.php \Drupal\cms_content_sync_migrate_acquia_content_hub\Form\MigratePush
Content Sync advanced debug form.
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\cms_content_sync_migrate_acquia_content_hub\Form\MigrationBase
- class \Drupal\cms_content_sync_migrate_acquia_content_hub\Form\MigratePush
- class \Drupal\cms_content_sync_migrate_acquia_content_hub\Form\MigrationBase
Expanded class hierarchy of MigratePush
1 file declares its use of MigratePush
- cms_content_sync_migrate_acquia_content_hub.drush.inc in modules/
cms_content_sync_migrate_acquia_content_hub/ cms_content_sync_migrate_acquia_content_hub.drush.inc - Contains Drush commands for Content Sync.
1 string reference to 'MigratePush'
- cms_content_sync_migrate_acquia_content_hub.routing.yml in modules/
cms_content_sync_migrate_acquia_content_hub/ cms_content_sync_migrate_acquia_content_hub.routing.yml - modules/cms_content_sync_migrate_acquia_content_hub/cms_content_sync_migrate_acquia_content_hub.routing.yml
File
- modules/
cms_content_sync_migrate_acquia_content_hub/ src/ Form/ MigratePush.php, line 21
Namespace
Drupal\cms_content_sync_migrate_acquia_content_hub\FormView source
class MigratePush extends MigrationBase {
/**
*
*/
public function __construct(EntityManager $acquia_entity_manager, EntityTypeBundleInfoInterface $entity_type_bundle_info, FieldTypePluginManagerInterface $field_type_plugin_manager, ConfigFactoryInterface $config_factory, ModuleHandler $moduleHandler, EntityTypeManager $entity_type_manager) {
parent::__construct($acquia_entity_manager, $entity_type_bundle_info, $field_type_plugin_manager, $config_factory, $moduleHandler, $entity_type_manager);
}
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'cms_content_sync_migrate_acquia_content_hub.migrate_export';
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$this->migrationType = 'push';
$form = parent::buildForm($form, $form_state);
$url = Url::fromUri('https://edge-box.atlassian.net/wiki/spaces/SUP/pages/137232742/Export+and+Import+settings');
$link = Link::fromTextAndUrl(t('here'), $url);
$link = $link
->toRenderable();
$link['#attributes'] = [
'class' => [
'external',
],
];
$link = render($link);
$form['node_push_behavior'] = [
'#title' => $this
->t('Node push behavior'),
'#description' => $this
->t('This configuration allows to define if Nodes should be pushed automatically ("All") or manually ("Manually"). Further information about push behaviors could be found @link.', [
'@link' => $link,
]),
'#type' => 'select',
'#options' => [
PushIntent::PUSH_AUTOMATICALLY => $this
->t('Automatically'),
PushIntent::PUSH_MANUALLY => $this
->t('Manually'),
],
'#default_value' => PushIntent::PUSH_AUTOMATICALLY,
];
$form['#attached']['library'][] = 'cms_content_sync_migrate_acquia_content_hub/migrate-form';
return $form;
}
/**
* @param string $pool_id
* @param string $node_push_behavior
* @param string $pull_updates_behavior
*
* @param bool $force_update
*
* @return array|string
*/
public static function createFlow($pool_id, $node_push_behavior, $pull_updates_behavior, $force_update = FALSE, $override = NULL) {
// Get Acquia Content Hub configurations.
$content_hub_configrations = MigratePush::getAcquiaContentHubConfigrations();
// Create a new flow based on the given Acquia Content Hub configurations.
foreach ($content_hub_configrations as $entity_type_key => $content_hub_configration) {
// If no bundles are configured, the entity type can be skipped.
if (!in_array(TRUE, $content_hub_configration)) {
continue;
}
foreach ($content_hub_configration as $bundle_key => $bundle) {
if ($bundle) {
// @todo More Handler options?
// General configurations.
$configurations[$entity_type_key][$bundle_key]['push_configuration'] = [
'export_deletion_settings' => TRUE,
];
$configurations[$entity_type_key][$bundle_key]['push_configuration']['export_pools'] = [];
$usage = $entity_type_key == 'node' ? Pool::POOL_USAGE_ALLOW : Pool::POOL_USAGE_FORCE;
$configurations[$entity_type_key][$bundle_key]['push_configuration']['export_pools'][$pool_id] = $usage;
// Export everything beside nodes as dependencies, but allow overrides.
if (isset($override[$entity_type_key][$bundle_key]['push_configuration']['behavior'])) {
$configurations[$entity_type_key][$bundle_key]['push_configuration']['behavior'] = $override[$entity_type_key][$bundle_key]['push_configuration']['behavior'];
}
elseif ($entity_type_key == 'node') {
$configurations[$entity_type_key][$bundle_key]['push_configuration']['behavior'] = $node_push_behavior;
}
else {
$configurations[$entity_type_key][$bundle_key]['push_configuration']['behavior'] = PushIntent::PUSH_AS_DEPENDENCY;
}
}
}
}
if (!empty($configurations)) {
\Drupal::messenger()
->addMessage('The pushing flow has been created, please review your settings.');
return [
'flow_id' => Flow::createFlow('Push', 'push_migrated', TRUE, [
'config' => [
'cms_content_sync.pool.' . $pool_id,
],
], $configurations, $force_update),
'flow_configuration' => $configurations,
'type' => 'push',
];
}
else {
\Drupal::messenger()
->addMessage('Content Sync Pushing Flow has not been created.', 'warning');
return '';
}
}
/**
* Get Entity Type configurations of the Acquia Content Hub.
*
* @return array
*/
public static function getAcquiaContentHubConfigrations() {
$entity_types = \Drupal::service('acquia_contenthub.entity_manager')
->getAllowedEntityTypes();
$content_hub_configurations = [];
foreach ($entity_types as $entity_type_key => $entity_type) {
$contenthub_entity_config_id = \Drupal::service('acquia_contenthub.entity_manager')
->getContentHubEntityTypeConfigurationEntity($entity_type_key);
foreach ($entity_type as $bundle_key => $bundle) {
$content_hub_configurations[$entity_type_key][$bundle_key] = $contenthub_entity_config_id ? $contenthub_entity_config_id
->isEnableIndex($bundle_key) : FALSE;
}
}
return $content_hub_configurations;
}
}
Members
Name![]() |
Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
FormBase:: |
protected | property | The request stack. | 1 |
FormBase:: |
protected | property | The route match. | |
FormBase:: |
protected | function | Retrieves a configuration object. | |
FormBase:: |
protected | function | Gets the config factory for this form. | 1 |
FormBase:: |
private | function | Returns the service container. | |
FormBase:: |
protected | function | Gets the current user. | |
FormBase:: |
protected | function | Gets the request object. | |
FormBase:: |
protected | function | Gets the route match. | |
FormBase:: |
protected | function | Gets the logger for a specific channel. | |
FormBase:: |
protected | function |
Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: |
|
FormBase:: |
public | function | Resets the configuration factory. | |
FormBase:: |
public | function | Sets the config factory for this form. | |
FormBase:: |
public | function | Sets the request stack object to use. | |
FormBase:: |
public | function |
Form validation handler. Overrides FormInterface:: |
62 |
LinkGeneratorTrait:: |
protected | property | The link generator. | 1 |
LinkGeneratorTrait:: |
protected | function | Returns the link generator. | |
LinkGeneratorTrait:: |
protected | function | Renders a link to a route given a route name and its parameters. | |
LinkGeneratorTrait:: |
public | function | Sets the link generator service. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
MigratePush:: |
public | function |
Form constructor. Overrides MigrationBase:: |
|
MigratePush:: |
public static | function | ||
MigratePush:: |
public static | function | Get Entity Type configurations of the Acquia Content Hub. | |
MigratePush:: |
public | function |
Returns a unique string identifying the form. Overrides MigrationBase:: |
|
MigratePush:: |
public | function |
Constructs a new FieldStorageAddForm object. Overrides MigrationBase:: |
|
MigrationBase:: |
protected | property | The acquia content hub entity manager. | |
MigrationBase:: |
protected | property |
The configuration factory. Overrides FormBase:: |
|
MigrationBase:: |
protected | property | The entity type bundle info manager interface. | |
MigrationBase:: |
protected | property | The core entity type manager. | |
MigrationBase:: |
protected | property | The field type plugin manager. | |
MigrationBase:: |
protected | property | The Drupal module handler. | |
MigrationBase:: |
public static | function |
Instantiates a new instance of this class. Overrides FormBase:: |
|
MigrationBase:: |
public static | function | Create the pools based on the user selected terms. | |
MigrationBase:: |
constant | |||
MigrationBase:: |
constant | |||
MigrationBase:: |
public static | function | ||
MigrationBase:: |
public | function |
Form submission handler. Overrides FormInterface:: |
|
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. |