migrate_materio.company.inc 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. <?php
  2. /**
  3. * MaterioIndustrialUserMigration
  4. *
  5. */
  6. class MaterioCompanyMigration extends MaterioBasicMigration {
  7. public function __construct() {
  8. parent::__construct();
  9. $this->description = t('Migrate Materio Company Node');
  10. // provide better description for source fields
  11. // and add new field source not from sql
  12. $source_fields = array(
  13. 'id_industrial' => t('Industrial id from source'),
  14. 'department'=> t('en-fr department implemented on prepare'),
  15. 'language'=> t('en-fr langauge description, used in prepare'),
  16. );
  17. $query = db_select(MIG_MAT_SRC_DB .'.industrial_id', 'iid');
  18. $query->join(MIG_MAT_SRC_DB .'.industrial_info', 'iinf', 'iid.id_industrial = iinf.id_industrial');
  19. $ilfr_select = db_select(MIG_MAT_SRC_DB .'.industrial_lang', 'ilfr_select')
  20. ->fields('ilfr_select')->condition('ilfr_select.id_locale',1)->orderBy('ilfr_select.id_industrial', 'DESC')->distinct();
  21. $query->join($ilfr_select, 'ilfr', 'iid.id_industrial = ilfr.id_industrial');
  22. $ilen_select = db_select(MIG_MAT_SRC_DB .'.industrial_lang', 'ilen_select')
  23. ->fields('ilen_select')->condition('ilen_select.id_locale',2)->orderBy('ilen_select.id_industrial', 'ASC')->distinct();
  24. $query->join($ilen_select, 'ilen', 'iid.id_industrial = ilen.id_industrial');
  25. $query
  26. ->fields('iid', array('id_industrial', 'date_creation', 'date_modif', 'memo'))
  27. ->fields('iinf', array('company', 'address', 'city', 'zip', 'web', 'ccode1', 'tel1', 'ccode2', 'tel2', 'ccode3', 'tel3'))
  28. ->orderBy('id_industrial', 'DESC');
  29. $query->addField('ilfr', 'department', 'department_fr');
  30. $query->addField('ilfr', 'country', 'country_fr');
  31. $query->addField('ilen', 'department', 'department_en');
  32. $query->addField('ilen', 'country', 'country_en');
  33. $query->groupBy('id_industrial')
  34. ->orderBy('id_industrial', 'DESC');
  35. $this->source = new MigrateSourceSQL($query, $source_fields);
  36. $this->destination = new MigrateDestinationNode('company');
  37. $this->map = new MigrateSQLMap($this->machineName,
  38. array(
  39. 'id_industrial' => array(
  40. 'type' => 'int',
  41. 'unsigned' => TRUE,
  42. 'not null' => TRUE,
  43. 'description' => 'OLD Unique industrial ID',
  44. 'alias' => 'iid',
  45. )
  46. ),
  47. MigrateDestinationNode::getKeySchema()
  48. );
  49. // Make the mappings
  50. $this->addFieldMapping('language')->defaultValue('');
  51. $this->addFieldMapping('is_new')->defaultValue(TRUE);
  52. $this->addFieldMapping('created', 'date_creation');
  53. $this->addFieldMapping('changed', 'date_modif');
  54. $this->addFieldMapping('status')->defaultValue(1);
  55. $this->addFieldMapping('promote')->defaultValue(0);
  56. $this->addFieldMapping('sticky')->defaultValue(0);
  57. $this->addFieldMapping('field_tode_company', 'company')
  58. ->arguments(array('create_term' => TRUE));
  59. // see on prepareRow()
  60. $this->addFieldMapping('field_department', 'department');
  61. $this->addFieldMapping('field_department:language', 'language');
  62. $this->addFieldMapping(NULL, 'department_en');
  63. $this->addFieldMapping(NULL, 'department_fr');
  64. $arguments = array(
  65. // 'name_line' => array('source_field' => 'name'),
  66. 'thoroughfare' => array('source_field' => 'address'),
  67. 'locality' => array('source_field' => 'city'),
  68. 'postal_code' => array('source_field' => 'zip'),
  69. );
  70. $this->addFieldMapping('field_public_address', 'country_en')
  71. ->arguments($arguments);
  72. $this->addFieldMapping(NULL, 'address');
  73. $this->addFieldMapping(NULL, 'city');
  74. $this->addFieldMapping(NULL, 'zip');
  75. $this->addFieldMapping(NULL, 'country_fr');
  76. $arguments = MigrateLinkFieldHandler::arguments(array('source_field' => 'web_title'));
  77. $this->addFieldMapping('field_website', 'web')
  78. ->arguments($arguments);
  79. $this->addFieldMapping('body')->defaultValue('');
  80. $this->addFieldMapping('field_infos_from_company')->defaultValue('');
  81. $arguments = array(
  82. 'number' => array('source_field' => 'tel1'),
  83. // 'extension' => array('source_field' => 'ccode1_contact'),
  84. );
  85. $this->addFieldMapping('field_public_phone', 'ccode1')
  86. ->arguments($arguments);
  87. $this->addFieldMapping(NULL, 'tel1');
  88. // $this->addFieldMapping(NULL, 'ccode1_contact');
  89. $this->addFieldMapping(NULL, 'tel2');
  90. $this->addFieldMapping(NULL, 'ccode2');
  91. $this->addFieldMapping(NULL, 'tel3');
  92. $this->addFieldMapping(NULL, 'ccode3');
  93. /*
  94. TODO
  95. multiple field phone number ?? tel2 ccode2 tel3 ccode3
  96. for now added to memo
  97. */
  98. $this->addFieldMapping('field_note')->defaultValue(2);
  99. $this->addFieldMapping('field_memo', 'memo');
  100. $this->addFieldMapping('pathauto')->defaultValue(1);
  101. $this->addFieldMapping('comment')->defaultValue(0);
  102. $this->addFieldMapping('revision')->defaultValue(0);
  103. }
  104. public function prepareRow($cr) {
  105. $cr->address = preg_replace('/\\n/', ', ', $cr->address);
  106. $cr->city = preg_replace('/\\n/', ' ', $cr->city);
  107. $cr->department = array($cr->department_en, $cr->department_fr);
  108. // $cr->contact_quality = array($cr->contact_quality_en, $cr->contact_quality_fr);
  109. // $cr->admin_quality = array($cr->admin_quality_en, $cr->admin_quality_fr);
  110. $cr->language = array('en', 'fr');
  111. $cr->web_title = str_replace('http://', '', $cr->web);
  112. $cr->web = 'http://' . $cr->web_title;
  113. $cr->company = trim($cr->company);
  114. // if($cr->email_general != "")
  115. // $cr->email_sample .= ','.$cr->email_general;
  116. $ccs = cck_phone_countrycodes();
  117. $match = 0;
  118. foreach ($ccs as $cc => $cc_values) {
  119. if('+'.$cr->ccode1 == $cc_values['code']){
  120. $cr->ccode1 = $cc;
  121. $match++;
  122. }
  123. if('+'.$cr->ccode2 == $cc_values['code']){
  124. $cr->ccode2 = $cc;
  125. $match++;
  126. }
  127. if('+'.$cr->ccode3 == $cc_values['code']){
  128. $cr->ccode3 = $cc;
  129. $match++;
  130. }
  131. if($match == 4)
  132. break;
  133. }
  134. // do this because i don't know how to insert multiple phone fields
  135. if($cr->tel2 != ''){
  136. $cc = cck_phone_countrycodes($cr->ccode2);
  137. $cr->memo .= "\n".'tel2 : '. $cc['country'] . ' (' . $cc['code'] . ')' .' '. $cr->tel2;
  138. }
  139. if($cr->tel3 != ''){
  140. $cc = cck_phone_countrycodes($cr->ccode3);
  141. $cr->memo .= "\n".'tel3 : '. $cc['country'] . ' (' . $cc['code'] . ')' .' '. $cr->tel3;
  142. }
  143. // dsm($cr, '- - - - $cr - - - -');
  144. return TRUE;
  145. // return FALSE if you wish to skip a particular row
  146. }
  147. public function prepare($node, stdClass $row) {
  148. // dsm('-- prepare --');
  149. // dsm($node, '$node');
  150. // dsm($row, '$row');
  151. $node->workflow = 4;
  152. // $node->field_public_email = array('und'=>array($row->email_contact));
  153. }
  154. }