taxonomy_csv.drush.inc in Taxonomy CSV import/export 7.5
Same filename and directory in other branches
Drush commands for taxonomy CSV import/export.
File
taxonomy_csv.drush.incView source
<?php
/**
* @file
* Drush commands for taxonomy CSV import/export.
*/
/**
* Implements hook_drush_command().
*/
function taxonomy_csv_drush_command() {
$items = array();
$items['taxocsv-import'] = array(
'aliases' => array(
'vocimp',
),
'callback' => 'drush_taxonomy_csv_import',
'description' => 'Import taxonomies and hierarchical structures with CSV file.',
'examples' => array(
'drush taxocsv-import my_file flat' => 'Import my_file using the default settings.',
'drush taxocsv-import my_file tree --keep_order --delimiter=";" --check_line --vocabulary_target=existing --vocabulary_id=3 --update_or_ignore=update --result_terms' => 'Import my_file as a tree structure into vocabulary with vid 2, a semicolon for delimiter and default settings for other options, and display imported terms after process.',
),
'arguments' => array(
'file_path' => 'Required. The full path or url to CSV file to import',
'import_format' => "Optional. CSV format: 'flat' (default), 'tree', 'polyhierarchy', 'fields', 'translate', 'tid_flat', 'tid_tree', 'tid_polyhierarchy'",
),
'options' => array(
'fields_format' => "List of comma separated fields (default: 'name')",
'translate_by' => "First item ('name' or 'tid') of a translation import (default: 'name')",
'translate_languages' => "List of comma separated languages of terms (default: '')",
'keep_order' => 'Keep order of imported terms',
'delimiter' => 'CSV delimiter (default: ",")',
'enclosure' => "CSV enclosure (default: none or '\"')",
'filter_format' => 'Default format of the description (default: "plain_text")',
'filter_format_custom' => 'Default format of custom fields (default: "none", as fixed plain text)',
'language' => 'Default language of terms (default: "und" (undefined))',
'check_line' => 'Check format of lines',
'check_utf8' => 'Check utf8 format',
'locale_custom' => 'Specific locale of imported file',
'vocabulary_target' => "'autocreate' (default) or 'existing' (default if a vocabulary_id is set)",
'vocabulary_id' => 'vid or machine_name of the vocabulary to import into',
'i18n_mode' => 'Internationalization mode of autocreated voc (default: 0 (none))',
'vocabulary_language' => 'Language of autocreated voc (default: "und" (undefined))',
'fields_custom' => 'Custom comma separated fields to add or create',
'delete_terms' => 'Delete all terms before import',
'check_hierarchy' => 'Check vocabulary hierarchy',
'set_hierarchy' => "If hierarchy isn't checked, set it (0, 1 or 2 (default))",
'update_or_ignore' => "What to do with existing items: 'update' (default) or 'ignore'",
// Level of result process infos.
'result_stats' => 'Display import stats',
'result_terms' => 'Display list of imported terms',
'result_level' => "Level of displayed messages: 'first' (default), 'warnings', 'notices' or 'infos'",
'result_type' => "Group infos 'by_message' (default) or 'by_line'",
),
);
$items['taxocsv-export'] = array(
'aliases' => array(
'vocexp',
),
'callback' => 'drush_taxonomy_csv_export',
'description' => 'Export terms and properties to a CSV file.',
'examples' => array(
'drush taxocsv-export 2 flat' => "Export all terms names of the vocabulary with vid 2, using the default settings.",
'drush taxocsv-export 2 tree --delimiter=";" --order=name' => 'Export vocabulary with vid 2 as a CSV tree structure ordered by name, with a semicolon for delimiter, and default settings for other options.',
),
'arguments' => array(
'vocabulary_id' => 'Required. vid or machine_name of the vocabulary to export (0 means all)',
'export_format' => "Optional. CSV format: 'flat' (default), 'flat_tid', 'tid_flat', 'tree', 'tid_tree', 'fields', 'tree_fields', 'translate'",
'file_path' => "Optional. Full path or filename of exported csv file (default: [current directory]/taxocsv.csv)",
),
'options' => array(
'fields_format' => "List of comma separated fields (default: 'name')",
'delimiter' => 'One character csv delimiter (default: ",")',
'enclosure' => "Zero or one character csv enclosure (default: '\"')",
'line_ending' => "'Unix' (default), 'Mac' or 'MS-DOS'",
'order' => "Order of terms: 'name' (default), 'tid' or 'weight'",
// Level of result process infos.
'result_duplicates' => "Display duplicate terms",
),
);
return $items;
}
/**
* Implements hook_drush_help().
*/
function taxonomy_csv_drush_help($section) {
switch ($section) {
case 'drush:taxocsv-import':
return dt('Import taxonomies and hierarchical structures with CSV file.');
case 'drush:taxocsv-export':
return dt('Export terms and properties to a CSV file.');
}
}
/**
* Process the import of an input.
*
* @see drush_invoke()
* @see drush.api.php
*/
function drush_taxonomy_csv_import($file_path, $import_format = 'flat') {
// Start process.
drush_print('Checking options...');
if (!$file_path || !file_exists($file_path)) {
drush_log('You need to set the correct path or url of the file to import.', 'error');
return;
}
require_once drupal_get_path('module', 'taxonomy_csv') . '/import/taxonomy_csv.import.api.inc';
// Set arguments.
$options = array();
$options['url'] = $file_path;
$options['import_format'] = $import_format;
// Get the defaults options and update them with user ones.
$options += _taxonomy_csv_values('import_default_api');
// Set simple options.
foreach (array(
'delimiter',
'enclosure',
'locale_custom',
'vocabulary_target',
'vocabulary_id',
'set_hierarchy',
'update_or_ignore',
// Level of result process infos.
'result_level',
'result_type',
) as $value) {
$option = drush_get_option($value);
if ($option !== NULL) {
$options[$value] = $option;
}
}
// If user don't use 'vocabulary_target' but only 'vocabulary_id', this
// vocabulary will be used. See https://drupal.org/node/1475952.
if (drush_get_option('vocabulary_target') === NULL && drush_get_option('vocabulary_id') !== NULL) {
$options['vocabulary_target'] = 'existing';
}
// Set boolean options.
foreach (array(
'keep_order',
'check_line',
'check_utf8',
'delete_terms',
'check_hierarchy',
'set_hierarchy',
// Level of result process infos.
'result_stats',
'result_terms',
) as $value) {
$options[$value] = drush_get_option($value) === NULL ? FALSE : TRUE;
}
// Set array options.
foreach (array(
'translate_languages',
'fields_format',
'fields_custom',
) as $value) {
$option = drush_get_option_list($value);
if ($option !== array()) {
$options[$value] = $option;
}
}
// Set general options.
$options['check_options'] = TRUE;
$options['result_display'] = TRUE;
// Prepare import.
$messages = taxonomy_csv_import($options);
if (count($messages)) {
foreach ($messages as $message) {
$msg = str_replace('<br />', " \n", $message);
drush_log('- ' . $msg, 'error');
}
return;
}
// Process the batch.
drush_log('Options are good.', 'status');
drush_print('Launch import process. Please wait...');
$batch =& batch_get();
$batch['progressive'] = FALSE;
drush_backend_batch_process();
// End of drush process.
drush_print('End of drush import batch.');
}
/**
* Process the export of a vocabulary.
*
* @see drush_invoke()
* @see drush.api.php
*/
function drush_taxonomy_csv_export($vocabulary_id, $export_format = 'flat', $file_path = '') {
// Start process.
drush_print('Checking options...');
if ($vocabulary_id === NULL) {
drush_log('You need to set a vocabulary id (0 means all).', 'error');
return;
}
// Set the destination file path.
if ($file_path == '') {
$file_path = getcwd() . '/taxocsv.csv';
}
require_once drupal_get_path('module', 'taxonomy_csv') . '/export/taxonomy_csv.export.api.inc';
// Set arguments.
$options = array();
$options['vocabulary_id'] = $vocabulary_id;
$options['export_format'] = $export_format;
// Get the defaults options and update them with user ones.
$options += _taxonomy_csv_values('export_default_api');
// Set simple options.
foreach (array(
'delimiter',
'enclosure',
'line_ending',
'order',
) as $value) {
$option = drush_get_option($value);
if ($option !== NULL) {
$options[$value] = $option;
}
}
// Set boolean options.
foreach (array(
'result_duplicates',
) as $value) {
$options[$value] = drush_get_option($value) === NULL ? FALSE : TRUE;
}
// Set array options.
foreach (array() as $value) {
$option = drush_get_option_list($value);
if ($option !== array()) {
$options[$value] = $option;
}
}
// Set general options.
$options['check_options'] = TRUE;
$options['result_display'] = TRUE;
// Prepare export.
$messages = taxonomy_csv_export($options);
$file = '';
if (is_object($messages)) {
$file = $messages;
$messages = array();
}
if (count($messages)) {
foreach ($messages as $message) {
$msg = str_replace('<br />', " \n", $message);
drush_log('- ' . $msg, 'error');
}
return;
}
// Process the batch.
drush_log('Options are good.', 'status');
drush_print('Launch export process. Please wait...');
$batch =& batch_get();
$batch['progressive'] = FALSE;
drush_backend_batch_process();
// Move file to chosen directory if needed.
if (file_exists($file->filepath)) {
rename($file->filepath, $file_path);
drush_log("The vocabulary has been exported to {$file_path}.", 'status');
}
// End of drush process.
drush_print('End of drush export batch.');
}
Functions
Name![]() |
Description |
---|---|
drush_taxonomy_csv_export | Process the export of a vocabulary. |
drush_taxonomy_csv_import | Process the import of an input. |
taxonomy_csv_drush_command | Implements hook_drush_command(). |
taxonomy_csv_drush_help | Implements hook_drush_help(). |