web-dev-qa-db-ja.com

drupal 6のmigrate 2モジュールで画像フィールドを移行する方法

.moduleと.info、(1つの).incファイルを作成しました。

また、drush miを使用してデータから画像を除いたデータをインポートすることに成功しました。

イメージはデータベースの関連テーブルにあり、migrateクラスを実行してもコピーされません。これが私のコードです:

    abstract class RoRMigration extends Migration {
     public function __construct() {
     parent::__construct();


     }
   }


    class RoRPagesMigration extends RoRMigration {
      public function __construct() {
      parent::__construct(MigrateGroup::getInstance('pages'));
      $this->description = t('Ruby on Rails Pages');


$this->map = new MigrateSQLMap($this->machineName,
  array(
    'page_id' => array(
      'type' => 'int',
      'unsigned' => TRUE,
      'not null' => TRUE,
      'description' => 'Page ID',
      'alias' => 'pid',
    )
  ),
  MigrateDestinationNode::getKeySchema()
);

$query = db_select('migrate_ror_pages', 'pid')
         ->fields('pid', array('page_id', 'title', 'content_subtitle', 'body_html', 'page_type',
          'redirect_url', 'published', 'meta_data', 'pretty_url'));



$source_fields = array(
 // TODO: Will add these other files later 
 // 'banners' => t('Banners attached to this page; populated in prepareRow()'),
 // 'files' => t('Files attached to this page; populated in prepareRow()'),
  'images' => t('Images attached to this page; populated in prepareRow()'),
);


$this->source = new MigrateSourceSQL($query, $source_fields);
$this->destination = new MigrateDestinationNode('page_data');

// Mapped fields
$this->addFieldMapping('title', 'title');
$this->addFieldMapping('field_legacy_guid', 'page_id');
$this->addFieldMapping('field_legacy_content_subtitle', 'content_subtitle');
$this->addFieldMapping('field_legacy_html_body', 'body_html');
$this->addFieldMapping('field_legacy_page_type', 'page_type');
$this->addFieldMapping('field_legacy_redirect_url', 'redirect_url');
$this->addFieldMapping('field_legacy_published', 'published');
$this->addFieldMapping('body', 'meta_data');
$this->addFieldMapping('field_pathauto', 'pretty_url');


// We will get the image data from a related table in prepareRow()
$arguments = MigrateFileFieldHandler::arguments('file_copy', FILE_EXISTS_REPLACE);
$this->addFieldMapping('field_gallery_images', 'images')
     ->arguments($arguments);


// No unmapped source fields

// Unmapped destination fields
$this->addUnmigratedDestinations(array('status', 'promote',
  'revision', 'language', 'uid', 'revision_uid', 'created', 'changed', 'teaser', 'sticky', 'field_file_attached_file', 'field_legacy_link', 'field_legacy_byline', 'field_banner_image', 'path', 'pathauto_perform_alias'));
      }

      public function prepareRow($current_row) {

        $source_id = $current_row->page_id;


// This adds the images to the image_gallery field
$result = db_select('migrate_ror_pages_images', 'pic')
          ->fields('pic', array('filename_path', 'title'))
          ->condition('page_id', $source_id)
          ->execute();
$current_row->images = array();
foreach ($result as $row) {
  $image_data = array(
    'path' => $row->filename_path,
    'alt' => $row->title,
    'title' => $row->title,
    'description' => $row->title,
  );
  $current_row->images[] = drupal_to_js($image_data);
}

return TRUE;
    }
   }

明確にするために。 2つのデータテーブルmigrate_ror_pagesとmigrate_ror_pages_imagesがあります。最初のテーブルは正常にインポートされますが、画像はインポートされません。画像テーブルには、/ sites/all/default/files/uploads/page_assets/images/filename.jpgのような画像へのURLがあり、タイトル列、page_id、image_idがあります。 1ページに複数の画像があります。

2
Craig Bertrand

わかりましたので、私は何が悪いのかを理解しました。私は私のデータベースのパスの前にサイトのURLを置く必要がありました。

  public function prepareRow($current_row) {

    $source_id = $current_row->page_id;


    // This adds the images to the image_gallery field
    $result = db_select('migrate_ror_pages_images', 'pic')
      ->fields('pic', array('filename_path', 'title'))
      ->condition('page_id', $source_id)
      ->execute();
    $current_row->images = array();
    foreach ($result as $row) {
      $image_data = array(
       'path' => $row->$GLOBALS['base_url'] . filename_path,
       'alt' => $row->title,
       'title' => $row->title,
       'description' => $row->title,
      );
      $current_row->images[] = drupal_to_js($image_data);
     }

変更が必要な行は、画像へのパスに関する行でした。私は相対パス/sites/default/.../filname.jpgを使用しており、フルパスを使用する必要がありました:

           'path' => $row->$GLOBALS['base_url'] . filename_path,

したがって、画像/ファイルをインポートしようとしている場合は、リリータブではなく画像へのフルパスが必要になります!

これが誰かを助けることを願っています。

//クレイグ

2
Craig Bertrand