da01c706b3d19db7b5131f4eb975c8fe65771f8a
[yaffs-website] / web / core / modules / node / src / Plugin / migrate / D7NodeDeriver.php
1 <?php
2
3 namespace Drupal\node\Plugin\migrate;
4
5 use Drupal\Component\Plugin\Derivative\DeriverBase;
6 use Drupal\Component\Plugin\Exception\PluginNotFoundException;
7 use Drupal\Core\Database\DatabaseExceptionWrapper;
8 use Drupal\Core\Plugin\Discovery\ContainerDeriverInterface;
9 use Drupal\migrate\Exception\RequirementsException;
10 use Drupal\migrate\Plugin\MigrationDeriverTrait;
11 use Drupal\migrate_drupal\Plugin\MigrateCckFieldPluginManagerInterface;
12 use Drupal\migrate_drupal\Plugin\MigrateFieldPluginManagerInterface;
13 use Symfony\Component\DependencyInjection\ContainerInterface;
14
15 /**
16  * Deriver for Drupal 7 node and node revision migrations based on node types.
17  */
18 class D7NodeDeriver extends DeriverBase implements ContainerDeriverInterface {
19   use MigrationDeriverTrait;
20
21   /**
22    * The base plugin ID this derivative is for.
23    *
24    * @var string
25    */
26   protected $basePluginId;
27
28   /**
29    * Already-instantiated cckfield plugins, keyed by ID.
30    *
31    * @var \Drupal\migrate_drupal\Plugin\MigrateCckFieldInterface[]
32    */
33   protected $cckPluginCache;
34
35   /**
36    * The CCK plugin manager.
37    *
38    * @var \Drupal\migrate_drupal\Plugin\MigrateCckFieldPluginManagerInterface
39    */
40   protected $cckPluginManager;
41
42   /**
43    * Already-instantiated field plugins, keyed by ID.
44    *
45    * @var \Drupal\migrate_drupal\Plugin\MigrateFieldInterface[]
46    */
47   protected $fieldPluginCache;
48
49   /**
50    * The field plugin manager.
51    *
52    * @var \Drupal\migrate_drupal\Plugin\MigrateFieldPluginManagerInterface
53    */
54   protected $fieldPluginManager;
55
56   /**
57    * Whether or not to include translations.
58    *
59    * @var bool
60    */
61   protected $includeTranslations;
62
63   /**
64    * D7NodeDeriver constructor.
65    *
66    * @param string $base_plugin_id
67    *   The base plugin ID for the plugin ID.
68    * @param \Drupal\migrate_drupal\Plugin\MigrateCckFieldPluginManagerInterface $cck_manager
69    *   The CCK plugin manager.
70    * @param \Drupal\migrate_drupal\Plugin\MigrateFieldPluginManagerInterface $field_manager
71    *   The field plugin manager.
72    * @param bool $translations
73    *   Whether or not to include translations.
74    */
75   public function __construct($base_plugin_id, MigrateCckFieldPluginManagerInterface $cck_manager, MigrateFieldPluginManagerInterface $field_manager, $translations) {
76     $this->basePluginId = $base_plugin_id;
77     $this->cckPluginManager = $cck_manager;
78     $this->fieldPluginManager = $field_manager;
79     $this->includeTranslations = $translations;
80   }
81
82   /**
83    * {@inheritdoc}
84    */
85   public static function create(ContainerInterface $container, $base_plugin_id) {
86     // Translations don't make sense unless we have content_translation.
87     return new static(
88       $base_plugin_id,
89       $container->get('plugin.manager.migrate.cckfield'),
90       $container->get('plugin.manager.migrate.field'),
91       $container->get('module_handler')->moduleExists('content_translation')
92     );
93   }
94
95   /**
96    * {@inheritdoc}
97    */
98   public function getDerivativeDefinitions($base_plugin_definition) {
99     if (in_array('translation', $base_plugin_definition['migration_tags']) && !$this->includeTranslations) {
100       // Refuse to generate anything.
101       return $this->derivatives;
102     }
103
104     $node_types = static::getSourcePlugin('d7_node_type');
105     try {
106       $node_types->checkRequirements();
107     }
108     catch (RequirementsException $e) {
109       // If the d7_node_type requirements failed, that means we do not have a
110       // Drupal source database configured - there is nothing to generate.
111       return $this->derivatives;
112     }
113
114     $fields = [];
115     try {
116       $source_plugin = static::getSourcePlugin('d7_field_instance');
117       $source_plugin->checkRequirements();
118
119       // Read all field instance definitions in the source database.
120       foreach ($source_plugin as $row) {
121         if ($row->getSourceProperty('entity_type') == 'node') {
122           $fields[$row->getSourceProperty('bundle')][$row->getSourceProperty('field_name')] = $row->getSource();
123         }
124       }
125     }
126     catch (RequirementsException $e) {
127       // If checkRequirements() failed then the field module did not exist and
128       // we do not have any fields. Therefore, $fields will be empty and below
129       // we'll create a migration just for the node properties.
130     }
131
132     try {
133       foreach ($node_types as $row) {
134         $node_type = $row->getSourceProperty('type');
135         $values = $base_plugin_definition;
136
137         $values['label'] = t('@label (@type)', [
138           '@label' => $values['label'],
139           '@type' => $row->getSourceProperty('name'),
140         ]);
141         $values['source']['node_type'] = $node_type;
142         $values['destination']['default_bundle'] = $node_type;
143
144         // If this migration is based on the d7_node_revision migration or
145         // is for translations of nodes, it should explicitly depend on the
146         // corresponding d7_node variant.
147         if ($base_plugin_definition['id'] == ['d7_node_revision'] || in_array('translation', $base_plugin_definition['migration_tags'])) {
148           $values['migration_dependencies']['required'][] = 'd7_node:' . $node_type;
149         }
150
151         $migration = \Drupal::service('plugin.manager.migration')->createStubMigration($values);
152         if (isset($fields[$node_type])) {
153           foreach ($fields[$node_type] as $field_name => $info) {
154             $field_type = $info['type'];
155             try {
156               $plugin_id = $this->fieldPluginManager->getPluginIdFromFieldType($field_type, ['core' => 7], $migration);
157               if (!isset($this->fieldPluginCache[$field_type])) {
158                 $this->fieldPluginCache[$field_type] = $this->fieldPluginManager->createInstance($plugin_id, ['core' => 7], $migration);
159               }
160               $this->fieldPluginCache[$field_type]
161                 ->processFieldValues($migration, $field_name, $info);
162             }
163             catch (PluginNotFoundException $ex) {
164               try {
165                 $plugin_id = $this->cckPluginManager->getPluginIdFromFieldType($field_type, ['core' => 7], $migration);
166                 if (!isset($this->cckPluginCache[$field_type])) {
167                   $this->cckPluginCache[$field_type] = $this->cckPluginManager->createInstance($plugin_id, ['core' => 7], $migration);
168                 }
169                 $this->cckPluginCache[$field_type]
170                   ->processCckFieldValues($migration, $field_name, $info);
171               }
172               catch (PluginNotFoundException $ex) {
173                 $migration->setProcessOfProperty($field_name, $field_name);
174               }
175             }
176           }
177         }
178         $this->derivatives[$node_type] = $migration->getPluginDefinition();
179       }
180     }
181     catch (DatabaseExceptionWrapper $e) {
182       // Once we begin iterating the source plugin it is possible that the
183       // source tables will not exist. This can happen when the
184       // MigrationPluginManager gathers up the migration definitions but we do
185       // not actually have a Drupal 7 source database.
186     }
187     return $this->derivatives;
188   }
189
190 }