GdprSqlMysql.php in General Data Protection Regulation 8
File
modules/gdpr_dump/src/Sql/GdprSqlMysql.php
View source
<?php
namespace Drupal\gdpr_dump\Sql;
use Drupal\gdpr_dump\Form\SettingsForm;
use Drupal\gdpr_dump\Service\GdprSqlDump;
use Drush\Log\LogLevel;
use Drush\Sql\Sqlmysql;
class GdprSqlMysql extends Sqlmysql {
protected $gdprDumpConfig;
protected $tablesToSkip = [];
protected $tablesToAnonymize = [];
public function __construct($db_spec = NULL) {
parent::__construct($db_spec);
$this->gdprDumpConfig = \Drupal::config(SettingsForm::GDPR_DUMP_CONF_KEY);
$this->tablesToAnonymize = $this->gdprDumpConfig
->get('mapping');
$this->tablesToSkip = \array_keys($this->gdprDumpConfig
->get('empty_tables'));
}
public function dump($file = '') {
$file_suffix = '';
$table_selection = $this
->get_expanded_table_selection();
$file = $this
->dumpFile($file);
$cmd = '{ ';
$cmd .= $this
->dumpCmd($table_selection);
$cmd .= ' ; ' . $this
->createRenameCommands($table_selection) . '}';
if (drush_get_option('gzip')) {
$cmd .= ' | gzip -f';
$file_suffix .= '.gz';
}
if ($file) {
$file .= $file_suffix;
$cmd .= ' > ' . drush_escapeshellarg($file);
}
if (drush_op_system($cmd)) {
return drush_set_error('DRUSH_SQL_DUMP_FAIL', 'Database dump failed');
}
if ($file) {
drush_log(dt('Database dump saved to !path', [
'!path' => $file,
]), LogLevel::SUCCESS);
drush_backend_set_result($file);
}
}
protected function createRenameCommands(array $tableSelection) {
$skipTables = \array_merge($tableSelection['skip'], $tableSelection['structure']);
$skipTables = \array_flip($skipTables);
$skipTables += $this->tablesToSkip;
$command = '';
foreach (\array_keys($this->tablesToAnonymize) as $table) {
if (\array_key_exists($table, $skipTables)) {
continue;
}
$clone = GdprSqlDump::GDPR_TABLE_PREFIX . $table;
$rename = "RENAME TABLE \\`{$clone}\\` TO \\`{$table}\\`;";
if (drush_get_context('DRUSH_VERBOSE') || drush_get_context('DRUSH_SIMULATE')) {
drush_print("Adding rename command: '{$rename}'", 0, STDERR);
}
$command .= " ( echo \"{$rename}\" ); ";
}
return $command;
}
public function dumpCmd($tableSelection) {
$multipleCommands = FALSE;
$skipTables = $tableSelection['skip'];
$structureTables = $tableSelection['structure'];
$structureTables = \array_merge($this->tablesToSkip, $structureTables);
$tables = $tableSelection['tables'];
$ignores = [];
$skipTables = \array_merge($structureTables, $skipTables);
$skipTables = \array_merge(\array_keys($this->tablesToAnonymize), $skipTables);
$dataOnly = drush_get_option('data-only');
$orderedDump = drush_get_option('ordered-dump');
$exec = 'mysqldump ';
$onlyDbName = \str_replace('--database=', ' ', $this
->creds());
$exec .= $onlyDbName;
$extra = ' --no-autocommit --single-transaction --opt -Q';
if (NULL !== $dataOnly) {
$extra .= ' --no-create-info';
}
if (NULL !== $orderedDump) {
$extra .= ' --skip-extended-insert --order-by-primary';
}
if ($option = drush_get_option('extra', $this->query_extra)) {
$extra .= " {$option}";
}
$exec .= $extra;
if (!empty($tables)) {
$exec .= ' ' . \implode(' ', $tables);
}
else {
foreach ($skipTables as $table) {
$ignores[] = '--ignore-table=' . $this->db_spec['database'] . '.' . $table;
$multipleCommands = TRUE;
}
$exec .= ' ' . \implode(' ', $ignores);
if (!empty($structureTables)) {
$exec .= ' && mysqldump ' . $onlyDbName . " --no-data {$extra} " . \implode(' ', $structureTables);
$multipleCommands = TRUE;
}
}
return $multipleCommands ? "({$exec})" : $exec;
}
}