From 40661bcb1191d359b3f3170cfb6cc2ac0cb8ee5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kurucz=20Istv=C3=A1n?= <kurucz.istvan@gmail.com> Date: Tue, 26 Oct 2021 00:39:51 +0200 Subject: [PATCH] d5_node_type migration source plugin added --- migrations/d5_node_type.yml | 2 +- src/Plugin/migrate/source/d5/NodeType.php | 155 ++++++++++++++++++++++ 2 files changed, 156 insertions(+), 1 deletion(-) create mode 100644 src/Plugin/migrate/source/d5/NodeType.php diff --git a/migrations/d5_node_type.yml b/migrations/d5_node_type.yml index e5fe3f2..d5c5bb4 100644 --- a/migrations/d5_node_type.yml +++ b/migrations/d5_node_type.yml @@ -4,7 +4,7 @@ migration_tags: - Drupal 5 - Configuration source: - plugin: d6_node_type + plugin: d5_node_type constants: preview: 1 # DRUPAL_OPTIONAL create_body: false diff --git a/src/Plugin/migrate/source/d5/NodeType.php b/src/Plugin/migrate/source/d5/NodeType.php new file mode 100644 index 0000000..25ad863 --- /dev/null +++ b/src/Plugin/migrate/source/d5/NodeType.php @@ -0,0 +1,155 @@ +<?php + +namespace Drupal\migrate_drupal_d5\Plugin\migrate\source\d5; + +use Drupal\migrate\Row; +use Drupal\migrate_drupal\Plugin\migrate\source\DrupalSqlBase; + +/** + * Drupal 5 Node types source from database. + * + * For available configuration keys, refer to the parent classes. + * + * @see \Drupal\migrate\Plugin\migrate\source\SqlBase + * @see \Drupal\migrate\Plugin\migrate\source\SourcePluginBase + * + * @MigrateSource( + * id = "d5_node_type", + * source_module = "node" + * ) + */ +class NodeType extends DrupalSqlBase { + + /** + * The teaser length. + * + * @var int + */ + protected $teaserLength; + + /** + * Node preview optional / required. + * + * @var int + */ + protected $nodePreview; + + /** + * An array of theme settings. + * + * @var array + */ + protected $themeSettings; + + /** + * {@inheritdoc} + */ + public function query() { + return $this->select('node_type', 't') + ->fields('t', [ + 'type', + 'name', + 'module', + 'description', + 'help', + 'title_label', + 'has_body', + 'body_label', + 'min_word_count', + 'custom', + 'modified', + 'locked', + 'orig_type', + ]) + ->orderBy('t.type'); + } + + /** + * {@inheritdoc} + */ + public function fields() { + $fields = [ + 'type' => $this->t('Machine name of the node type.'), + 'name' => $this->t('Human name of the node type.'), + 'module' => $this->t('The module providing the node type.'), + 'description' => $this->t('Description of the node type.'), + 'help' => $this->t('Help text for the node type.'), + 'title_label' => $this->t('Title label.'), + 'has_body' => $this->t('Flag indicating the node type has a body field.'), + 'body_label' => $this->t('Body label.'), + 'min_word_count' => $this->t('Minimum word count for the body field.'), + 'custom' => $this->t('Flag.'), + 'modified' => $this->t('Flag.'), + 'locked' => $this->t('Flag.'), + 'orig_type' => $this->t('The original type.'), + 'teaser_length' => $this->t('Teaser length'), + ]; + if ($this->moduleExists('comment')) { + $fields += $this->getCommentFields(); + } + return $fields; + } + + /** + * Returns the fields containing comment settings for each node type. + * + * @return string[] + * An associative array of field descriptions, keyed by field. + */ + protected function getCommentFields() { + return [ + 'comment' => $this->t('Default comment setting'), + 'comment_default_mode' => $this->t('Default display mode'), + 'comment_default_per_page' => $this->t('Default comments per page'), + 'comment_anonymous' => $this->t('Anonymous commenting'), + 'comment_subject_field' => $this->t('Comment subject field'), + 'comment_preview' => $this->t('Preview comment'), + 'comment_form_location' => $this->t('Location of comment submission form'), + ]; + } + + /** + * {@inheritdoc} + */ + protected function initializeIterator() { + $this->teaserLength = $this->variableGet('teaser_length', 600); + $this->nodePreview = $this->variableGet('node_preview', 0); + $this->themeSettings = $this->variableGet('theme_settings', []); + return parent::initializeIterator(); + } + + /** + * {@inheritdoc} + */ + public function prepareRow(Row $row) { + $row->setSourceProperty('teaser_length', $this->teaserLength); + $row->setSourceProperty('node_preview', $this->nodePreview); + + $type = $row->getSourceProperty('type'); + $source_options = $this->variableGet('node_options_' . $type, ['promote', 'sticky']); + $options = []; + foreach (['promote', 'sticky', 'status', 'revision'] as $item) { + $options[$item] = in_array($item, $source_options); + } + $row->setSourceProperty('options', $options); + $submitted = isset($this->themeSettings['toggle_node_info_' . $type]) ? $this->themeSettings['toggle_node_info_' . $type] : FALSE; + $row->setSourceProperty('display_submitted', $submitted); + + if ($this->moduleExists('comment')) { + foreach (array_keys($this->getCommentFields()) as $field) { + $row->setSourceProperty($field, $this->variableGet($field . '_' . $type, NULL)); + } + } + + return parent::prepareRow($row); + } + + /** + * {@inheritdoc} + */ + public function getIds() { + $ids['type']['type'] = 'string'; + return $ids; + } + +} -- GitLab