123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Backup\Model\ResourceModel;
- /**
- * Database backup resource model
- * @api
- * @since 100.0.2
- */
- class Db
- {
- /**
- * Database connection adapter
- *
- * @var \Magento\Framework\DB\Adapter\AdapterInterface
- */
- protected $connection;
- /**
- * Tables foreign key data array
- * [tbl_name] = array(create foreign key strings)
- *
- * @var array
- */
- protected $_foreignKeys = [];
- /**
- * Backup resource helper
- *
- * @var \Magento\Backup\Model\ResourceModel\Helper
- */
- protected $_resourceHelper;
- /**
- * Initialize Backup DB resource model
- *
- * @param \Magento\Backup\Model\ResourceModel\HelperFactory $resHelperFactory
- * @param \Magento\Framework\App\ResourceConnection $resource
- */
- public function __construct(
- \Magento\Backup\Model\ResourceModel\HelperFactory $resHelperFactory,
- \Magento\Framework\App\ResourceConnection $resource
- ) {
- $this->_resourceHelper = $resHelperFactory->create();
- $this->connection = $resource->getConnection('backup');
- }
- /**
- * Clear data
- *
- * @return void
- */
- public function clear()
- {
- $this->_foreignKeys = [];
- }
- /**
- * Retrieve table list
- *
- * @return array
- */
- public function getTables()
- {
- return $this->connection->listTables();
- }
- /**
- * Retrieve SQL fragment for drop table
- *
- * @param string $tableName
- * @return string
- */
- public function getTableDropSql($tableName)
- {
- return $this->_resourceHelper->getTableDropSql($tableName);
- }
- /**
- * Retrieve SQL fragment for create table
- *
- * @param string $tableName
- * @param bool $withForeignKeys
- * @return string
- */
- public function getTableCreateSql($tableName, $withForeignKeys = false)
- {
- return $this->_resourceHelper->getTableCreateSql($tableName, $withForeignKeys = false);
- }
- /**
- * Retrieve foreign keys for table(s)
- *
- * @param string|null $tableName
- * @return string
- */
- public function getTableForeignKeysSql($tableName = null)
- {
- $fkScript = '';
- if (!$tableName) {
- $tables = $this->getTables();
- foreach ($tables as $table) {
- $tableFkScript = $this->_resourceHelper->getTableForeignKeysSql($table);
- if (!empty($tableFkScript)) {
- $fkScript .= "\n" . $tableFkScript;
- }
- }
- } else {
- $fkScript = $this->getTableForeignKeysSql($tableName);
- }
- return $fkScript;
- }
- /**
- * Return triggers for table(s).
- *
- * @param string|null $tableName
- * @param bool $addDropIfExists
- * @return string
- * @since 100.2.3
- */
- public function getTableTriggersSql($tableName = null, $addDropIfExists = true)
- {
- $triggerScript = '';
- if (!$tableName) {
- $tables = $this->getTables();
- foreach ($tables as $table) {
- $tableTriggerScript = $this->_resourceHelper->getTableTriggersSql($table, $addDropIfExists);
- if (!empty($tableTriggerScript)) {
- $triggerScript .= "\n" . $tableTriggerScript;
- }
- }
- } else {
- $triggerScript = $this->getTableTriggersSql($tableName, $addDropIfExists);
- }
- return $triggerScript;
- }
- /**
- * Retrieve table status
- *
- * @param string $tableName
- * @return \Magento\Framework\DataObject|bool
- */
- public function getTableStatus($tableName)
- {
- $row = $this->connection->showTableStatus($tableName);
- if ($row) {
- $statusObject = new \Magento\Framework\DataObject();
- foreach ($row as $field => $value) {
- $statusObject->setData(strtolower($field), $value);
- }
- $cntRow = $this->connection->fetchRow($this->connection->select()->from($tableName, 'COUNT(1) as rows'));
- $statusObject->setRows($cntRow['rows']);
- return $statusObject;
- }
- return false;
- }
- /**
- * Retrieve table partial data SQL insert
- *
- * @param string $tableName
- * @param null|int $count
- * @param null|int $offset
- * @return string
- */
- public function getTableDataSql($tableName, $count = null, $offset = null)
- {
- return $this->_resourceHelper->getPartInsertSql($tableName, $count, $offset);
- }
- /**
- * Enter description here...
- *
- * @param string|array|\Zend_Db_Expr $tableName
- * @param bool $addDropIfExists
- * @return string
- */
- public function getTableCreateScript($tableName, $addDropIfExists = false)
- {
- return $this->_resourceHelper->getTableCreateScript($tableName, $addDropIfExists);
- }
- /**
- * Retrieve table header comment
- *
- * @param string $tableName
- * @return string
- */
- public function getTableHeader($tableName)
- {
- $quotedTableName = $this->connection->quoteIdentifier($tableName);
- return "\n--\n" . "-- Table structure for table {$quotedTableName}\n" . "--\n\n";
- }
- /**
- * Return table data dump
- *
- * @param string $tableName
- * @param bool $step
- * @return string
- * @SuppressWarnings(PHPMD.UnusedFormalParameter)
- */
- public function getTableDataDump($tableName, $step = false)
- {
- return $this->getTableDataSql($tableName);
- }
- /**
- * Returns SQL header data
- *
- * @return string
- */
- public function getHeader()
- {
- return $this->_resourceHelper->getHeader();
- }
- /**
- * Returns SQL footer data
- *
- * @return string
- */
- public function getFooter()
- {
- return $this->_resourceHelper->getFooter();
- }
- /**
- * Retrieve before insert data SQL fragment
- *
- * @param string $tableName
- * @return string
- */
- public function getTableDataBeforeSql($tableName)
- {
- return $this->_resourceHelper->getTableDataBeforeSql($tableName);
- }
- /**
- * Retrieve after insert data SQL fragment
- *
- * @param string $tableName
- * @return string
- */
- public function getTableDataAfterSql($tableName)
- {
- return $this->_resourceHelper->getTableDataAfterSql($tableName);
- }
- /**
- * Start transaction mode
- *
- * @return $this
- */
- public function beginTransaction()
- {
- $this->_resourceHelper->prepareTransactionIsolationLevel();
- $this->connection->beginTransaction();
- return $this;
- }
- /**
- * Commit transaction
- *
- * @return $this
- */
- public function commitTransaction()
- {
- $this->connection->commit();
- $this->_resourceHelper->restoreTransactionIsolationLevel();
- return $this;
- }
- /**
- * Rollback transaction
- *
- * @return $this
- */
- public function rollBackTransaction()
- {
- $this->connection->rollBack();
- $this->_resourceHelper->restoreTransactionIsolationLevel();
- return $this;
- }
- /**
- * Run sql code
- *
- * @param string $command
- * @return $this
- */
- public function runCommand($command)
- {
- $this->connection->query($command);
- return $this;
- }
- }
|