Blame view

sources/lib/repair/innodb.php 1.33 KB
6d9380f96   Cédric Dupont   Update sources OC...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
  <?php
  /**
   * Copyright (c) 2014 Thomas Müller <deepdiver@owncloud.com>
   * This file is licensed under the Affero General Public License version 3 or
   * later.
   * See the COPYING-README file.
   */
  
  namespace OC\Repair;
  
  use Doctrine\DBAL\Platforms\MySqlPlatform;
  use OC\Hooks\BasicEmitter;
  
  class InnoDB extends BasicEmitter implements \OC\RepairStep {
  
  	public function getName() {
  		return 'Repair MySQL database engine';
  	}
  
  	/**
  	 * Fix mime types
  	 */
  	public function run() {
  		$connection = \OC_DB::getConnection();
  		if (!$connection->getDatabasePlatform() instanceof MySqlPlatform) {
  			$this->emit('\OC\Repair', 'info', array('Not a mysql database -> nothing to no'));
  			return;
  		}
  
  		$tables = $this->getAllMyIsamTables($connection);
  		if (is_array($tables)) {
  			foreach ($tables as $table) {
  				$connection->exec("ALTER TABLE $table ENGINE=InnoDB;");
  				$this->emit('\OC\Repair', 'info', array("Fixed $table"));
  			}
  		}
  	}
  
  	/**
  	 * @param \Doctrine\DBAL\Connection $connection
  	 * @return string[]
  	 */
  	private function getAllMyIsamTables($connection) {
  		$dbName = \OC::$server->getConfig()->getSystemValue("dbname");
  		$result = $connection->fetchArray(
f7d878ff1   kload   [enh] Update to 7...
46
  			"SELECT table_name FROM information_schema.tables WHERE table_schema = ? AND engine = 'MyISAM' AND TABLE_NAME LIKE \"*PREFIX*%\"",
6d9380f96   Cédric Dupont   Update sources OC...
47
48
49
50
51
52
  			array($dbName)
  		);
  
  		return $result;
  	}
  }