-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmigrate_views.views.inc
456 lines (424 loc) · 12.4 KB
/
migrate_views.views.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
<?php
/**
* @file
* Contains hooks for Views.
*/
use Drupal\migrate_views\Plugin\migrate\id_map\MigrateViewsSql;
use Drupal\migrate\Plugin\migrate\destination\EntityContentBase;
use Drupal\migrate\Plugin\migrate\id_map\Sql;
use Drupal\migrate\Plugin\Migration;
/**
* Implements hook_views_data_alter().
*/
function migrate_views_views_data_alter(&$data) {
$plugin_manager = \Drupal::service('plugin.manager.migration');
$migrations = $plugin_manager->createInstances([]);
/** @var \Drupal\migrate\Plugin\Migration $migration */
foreach ($migrations as $migration) {
/** @var \Drupal\migrate\Plugin\migrate\id_map\Sql $id_map */
$id_map = $migration->getIdMap();
if (!is_a($id_map, Sql::class)) {
continue;
}
// Define migrate map tables and fields.
_migrate_views_views_data_alter_migrate_map_definitions($data, $migration);
// Add source_data and destination_data fields to migrate map tables for
// the "migrate_views_sql" id_map plugin.
_migrate_views_views_data_alter_migrate_map_migrate_views_sql_definitions($data, $migration);
// Define relationships from migrate map tables to entity tables.
_migrate_views_views_data_alter_migrate_map_relationship_definitions($data, $migration);
// Define relationships from entity tables to migrate map tables.
_migrate_views_views_data_alter_entity_migrate_map_definitions($data, $migration);
// Define migrate message tables and fields.
_migrate_views_views_data_alter_migrate_message_definitions($data, $migration);
}
}
/**
* Defines migrate map tables and fields.
*
* @param array $data
* The array of all information about Views tables and fields, collected from
* hook_views_data(), passed by reference.
* @param \Drupal\migrate\Plugin\Migration $migration
* The migration plugin used to build the migrate map declaration.
*/
function _migrate_views_views_data_alter_migrate_map_definitions(array &$data, Migration $migration) {
$id_map = $migration->getIdMap();
$map_table = $id_map->mapTableName();
// Migrate map table definition.
$data[$map_table]['table']['group'] = t('Migrate');
$data[$map_table]['table']['base'] = [
'field' => 'sourceid1',
'title' => $map_table,
'help' => t('Migrate map.'),
];
$source_id_field_names = array_keys($migration->getSourcePlugin()->getIds());
$count = 0;
foreach ($source_id_field_names as $id_definition) {
$count++;
$title = t('Source ID @count (@name)', [
'@count' => $count,
'@name' => $id_definition,
]);
$data[$map_table]['sourceid' . $count] = [
'title' => $title,
'help' => $title,
'field' => [
'id' => 'standard',
],
'filter' => [
'id' => 'numeric',
],
'argument' => [
'id' => 'numeric',
],
'sort' => [
'id' => 'standard',
],
];
}
$destination_id_field_names = $migration->getDestinationPlugin()->getIds();
$count = 0;
foreach ($destination_id_field_names as $id_definition => $schema) {
$count++;
$title = t('Destination ID @count (@name)', [
'@count' => $count,
'@name' => $id_definition,
]);
$data[$map_table]['destid' . $count] = [
'title' => $title,
'help' => $title,
'field' => [
'id' => 'standard',
],
'filter' => [
'id' => 'numeric',
],
'argument' => [
'id' => 'numeric',
],
'sort' => [
'id' => 'standard',
],
];
}
$data[$map_table]['source_row_status'] = [
'title' => 'Source row status',
'help' => 'Source row status',
'field' => [
'id' => 'migrate_map_source_row_status',
],
'filter' => [
'id' => 'migrate_map_source_row_status',
],
'argument' => [
'id' => 'numeric',
],
'sort' => [
'id' => 'standard',
],
];
$data[$map_table]['rollback_action'] = [
'title' => 'Rollback action',
'help' => 'Rollback action',
'field' => [
'id' => 'standard',
],
'filter' => [
'id' => 'numeric',
],
'argument' => [
'id' => 'numeric',
],
'sort' => [
'id' => 'standard',
],
];
$data[$map_table]['last_imported'] = [
'title' => 'Last imported',
'help' => 'Last imported',
'field' => [
'id' => 'date',
],
'argument' => [
'id' => 'date',
],
'filter' => [
'id' => 'date',
],
'sort' => [
'id' => 'date',
],
];
$data[$map_table]['source_ids_hash'] = [
'title' => 'Source IDs hash',
'help' => 'Source IDs hash',
'field' => [
'id' => 'standard',
],
'argument' => [
'id' => 'string',
],
'filter' => [
'id' => 'string',
],
'sort' => [
'id' => 'standard',
],
'relationship' => [
'title' => t('Migrate messages'),
'help' => t('Migrate messages logged.'),
'base' => $id_map->messageTableName(),
'base field' => 'source_ids_hash',
'id' => 'standard',
],
];
$data[$map_table]['migrate_messages'] = [
'title' => t('Migrate messages'),
'help' => t('Returns all migrate messages for this migrate_map entry.'),
'field' => [
'id' => 'migrate_messages',
'real field' => 'source_ids_hash',
'message_table' => $id_map->messageTableName(),
],
];
}
/**
* Adds source_data and destination_data fields to migrate map tables.
*
* @param array $data
* The array of all information about Views tables and fields, collected from
* hook_views_data(), passed by reference.
* @param \Drupal\migrate\Plugin\Migration $migration
* The migration plugin used to build the migrate map declaration.
*/
function _migrate_views_views_data_alter_migrate_map_migrate_views_sql_definitions(array &$data, Migration $migration) {
$id_map = $migration->getIdMap();
if (!is_a($id_map, MigrateViewsSql::class)) {
return;
}
$map_table = $id_map->mapTableName();
$data[$map_table]['source_data'] = [
'title' => 'Source data array',
'help' => 'The raw source data (as array) from the migrate source plugin',
'field' => [
'id' => 'serialized',
'click sortable' => FALSE,
],
'argument' => [
'id' => 'string',
],
'filter' => [
'id' => 'string',
],
'sort' => [
'id' => 'standard',
],
];
$data[$map_table]['destination_data'] = [
'title' => 'Destination data array',
'help' => 'The raw destination data (as array) after the migrate process',
'field' => [
'id' => 'serialized',
'click sortable' => FALSE,
],
'argument' => [
'id' => 'string',
],
'filter' => [
'id' => 'string',
],
'sort' => [
'id' => 'standard',
],
];
}
/**
* Defines migrate map tables relationships to Views.
*
* @param array $data
* The array of all information about Views tables and fields, collected from
* hook_views_data(), passed by reference.
* @param \Drupal\migrate\Plugin\Migration $migration
* The migration plugin used to build the migrate map declaration.
*/
function _migrate_views_views_data_alter_migrate_map_relationship_definitions(array &$data, Migration $migration) {
$id_map = $migration->getIdMap();
$map_table = $id_map->mapTableName();
$destination_plugin = $migration->getDestinationPlugin();
if (is_a($destination_plugin, EntityContentBase::class)) {
list (, $entity_type_id) = explode(':', $destination_plugin->getPluginId());
$entity_type = \Drupal::entityTypeManager()->getDefinition($entity_type_id);
$base_table = $entity_type->getDataTable() ?: $entity_type->getBaseTable();
if (isset($data[$base_table])) {
$extra = [];
// Handle the JOIN on language.
if ($entity_type->isTranslatable()) {
/** @var \Drupal\migrate\Plugin\migrate\destination\EntityContentBase $destination_plugin */
if ($destination_plugin->isTranslationDestination()) {
$destid_field = 'destid' . count($destination_plugin->getIds());
$extra[] = [
'field' => 'langcode',
'left_field' => $destid_field,
];
}
else {
$extra[] = [
'field' => 'default_langcode',
'value' => 1,
];
}
}
$id_field = $entity_type->getKey('id');
$data[$map_table]['migrate_map_' . $base_table] = [
'real field' => 'destid1',
'title' => t('Relate each migrate mapping with a @entity_label entity', ['@entity_label' => $entity_type->getLabel()]),
'help' => t('Relate this migrate map table to an entity table.'),
'relationship' => [
'id' => 'standard',
'entity_type' => $entity_type_id,
'base' => $base_table,
'base field' => $id_field,
'extra' => $extra,
],
];
}
}
}
/**
* Defines relationships from entity tables to migrate map tables.
*
* @param array $data
* The array of all information about Views tables and fields, collected from
* hook_views_data(), passed by reference.
* @param \Drupal\migrate\Plugin\Migration $migration
* The migration plugin used to build the migrate map declaration.
*/
function _migrate_views_views_data_alter_entity_migrate_map_definitions(array &$data, Migration $migration) {
$id_map = $migration->getIdMap();
$map_table = $id_map->mapTableName();
$entity_types = \Drupal::entityTypeManager()->getDefinitions();
foreach ($entity_types as $entity_type_id => $entity_type) {
$base_table = $entity_type->getBaseTable();
if (isset($data[$base_table])) {
$id_field = $entity_type->getKey('id');
$data[$base_table]['migrate_map_' . $map_table] = [
'real field' => $id_field,
'title' => t('Migration map @map_table', ['@map_table' => $map_table]),
'help' => t('Relate this entity to a migration map table.'),
'relationship' => [
'id' => 'standard',
'base' => $map_table,
'base field' => 'destid1',
],
];
}
}
}
/**
* Defines migrate messages tables and fields.
*
* @param array $data
* The array of all information about Views tables and fields, collected from
* hook_views_data(), passed by reference.
* @param \Drupal\migrate\Plugin\Migration $migration
* The migration plugin used to build the migrate message declaration.
*/
function _migrate_views_views_data_alter_migrate_message_definitions(array &$data, Migration $migration) {
$id_map = $migration->getIdMap();
$message_table = $id_map->messageTableName();
// Migrate map table definition.
$data[$message_table]['table']['group'] = t('Migrate');
$data[$message_table]['table']['base'] = [
'field' => 'msgid',
'title' => $message_table,
'help' => t('Migrate message.'),
];
$data[$message_table]['msgid'] = [
'title' => t('MSGID'),
'help' => t('Unique message ID.'),
'field' => [
'id' => 'standard',
],
'filter' => [
'id' => 'numeric',
],
'argument' => [
'id' => 'numeric',
],
'sort' => [
'id' => 'standard',
],
];
$data[$message_table]['source_ids_hash'] = [
'title' => 'Source IDs hash',
'help' => 'Source IDs hash',
'field' => [
'id' => 'standard',
],
'argument' => [
'id' => 'string',
],
'filter' => [
'id' => 'string',
],
'sort' => [
'id' => 'standard',
],
'relationship' => [
'title' => t('Migrate map'),
'help' => t('Migrate map entry.'),
'base' => $id_map->mapTableName(),
'base field' => 'source_ids_hash',
'id' => 'standard',
],
];
$data[$message_table]['level'] = [
'title' => 'Message level',
'help' => 'Message level',
'field' => [
'id' => 'migrate_message_level',
],
'argument' => [
'id' => 'migrate_message_level',
],
'filter' => [
'id' => 'string',
],
'sort' => [
'id' => 'standard',
],
];
$data[$message_table]['source_row_status'] = [
'title' => 'Source row status',
'help' => 'Source row status',
'field' => [
'id' => 'migrate_map_source_row_status',
],
'filter' => [
'id' => 'migrate_map_source_row_status',
],
'argument' => [
'id' => 'numeric',
],
'sort' => [
'id' => 'standard',
],
];
$data[$message_table]['message'] = [
'title' => 'Message',
'help' => 'Message',
'field' => [
'id' => 'standard',
],
'argument' => [
'id' => 'string',
],
'filter' => [
'id' => 'string',
],
'sort' => [
'id' => 'standard',
],
];
}