Moved office mimetype update to a repair step
This commit is contained in:
parent
c6bcb07f83
commit
b1e778d5fd
|
@ -6,60 +6,3 @@ if (version_compare(\OCP\Config::getSystemValue('version', '0.0.0'), '7.0.0', '<
|
||||||
\OCP\Config::deleteSystemValue('allowZipDownload');
|
\OCP\Config::deleteSystemValue('allowZipDownload');
|
||||||
\OCP\Config::deleteSystemValue('maxZipInputSize');
|
\OCP\Config::deleteSystemValue('maxZipInputSize');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (version_compare(\OCP\Config::getAppValue('files', 'installed_version'), '1.1.9', '<')) {
|
|
||||||
|
|
||||||
// update wrong mimetypes
|
|
||||||
$wrongMimetypes = array(
|
|
||||||
'application/mspowerpoint' => 'application/vnd.ms-powerpoint',
|
|
||||||
'application/msexcel' => 'application/vnd.ms-excel',
|
|
||||||
);
|
|
||||||
|
|
||||||
$stmt = OC_DB::prepare('
|
|
||||||
UPDATE `*PREFIX*mimetypes`
|
|
||||||
SET `mimetype` = ?
|
|
||||||
WHERE `mimetype` = ?
|
|
||||||
');
|
|
||||||
|
|
||||||
foreach ($wrongMimetypes as $wrong => $correct) {
|
|
||||||
OC_DB::executeAudited($stmt, array($wrong, $correct));
|
|
||||||
}
|
|
||||||
|
|
||||||
$updatedMimetypes = array(
|
|
||||||
'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
|
|
||||||
'xlsx' => 'application/vnd.ms-excel',
|
|
||||||
'pptx' => 'application/vnd.ms-powerpoint',
|
|
||||||
);
|
|
||||||
|
|
||||||
// separate doc from docx etc
|
|
||||||
foreach ($updatedMimetypes as $extension => $mimetype ) {
|
|
||||||
$result = OC_DB::executeAudited('
|
|
||||||
SELECT count(`mimetype`)
|
|
||||||
FROM `*PREFIX*mimetypes`
|
|
||||||
WHERE `mimetype` = ?
|
|
||||||
', array($mimetype)
|
|
||||||
);
|
|
||||||
|
|
||||||
$exists = $result->fetchOne();
|
|
||||||
|
|
||||||
if ( ! $exists ) {
|
|
||||||
// insert mimetype
|
|
||||||
OC_DB::executeAudited('
|
|
||||||
INSERT INTO `*PREFIX*mimetypes` ( `mimetype` )
|
|
||||||
VALUES ( ? )
|
|
||||||
', array($mimetype)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
// change mimetype for files with x extension
|
|
||||||
OC_DB::executeAudited('
|
|
||||||
UPDATE `*PREFIX*filecache`
|
|
||||||
SET `mimetype` = (
|
|
||||||
SELECT `id`
|
|
||||||
FROM `*PREFIX*mimetypes`
|
|
||||||
WHERE `mimetype` = ?
|
|
||||||
) WHERE `name` LIKE ?
|
|
||||||
', array($mimetype, '%.'.$extension)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -68,7 +68,9 @@ class Repair extends BasicEmitter {
|
||||||
* @return array of RepairStep instances
|
* @return array of RepairStep instances
|
||||||
*/
|
*/
|
||||||
public static function getRepairSteps() {
|
public static function getRepairSteps() {
|
||||||
return array();
|
return array(
|
||||||
|
new \OC\Repair\RepairMimeTypes()
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -78,6 +80,7 @@ class Repair extends BasicEmitter {
|
||||||
* @return array of RepairStep instances
|
* @return array of RepairStep instances
|
||||||
*/
|
*/
|
||||||
public static function getBeforeUpgradeRepairSteps() {
|
public static function getBeforeUpgradeRepairSteps() {
|
||||||
return array();
|
return array(
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,87 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Copyright (c) 2014 Vincent Petry <pvince81@owncloud.com>
|
||||||
|
* Copyright (c) 2014 Jörn Dreyer jfd@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 OC\Hooks\BasicEmitter;
|
||||||
|
|
||||||
|
class RepairMimeTypes extends BasicEmitter implements \OC\RepairStep {
|
||||||
|
|
||||||
|
public function getName() {
|
||||||
|
return 'Repair mime types';
|
||||||
|
}
|
||||||
|
|
||||||
|
private function fixOfficeMimeTypes() {
|
||||||
|
// update wrong mimetypes
|
||||||
|
$wrongMimetypes = array(
|
||||||
|
'application/mspowerpoint' => 'application/vnd.ms-powerpoint',
|
||||||
|
'application/msexcel' => 'application/vnd.ms-excel',
|
||||||
|
);
|
||||||
|
|
||||||
|
$stmt = \OC_DB::prepare('
|
||||||
|
UPDATE `*PREFIX*mimetypes`
|
||||||
|
SET `mimetype` = ?
|
||||||
|
WHERE `mimetype` = ?
|
||||||
|
');
|
||||||
|
|
||||||
|
foreach ($wrongMimetypes as $wrong => $correct) {
|
||||||
|
\OC_DB::executeAudited($stmt, array($wrong, $correct));
|
||||||
|
}
|
||||||
|
|
||||||
|
$updatedMimetypes = array(
|
||||||
|
'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
|
||||||
|
'xlsx' => 'application/vnd.ms-excel',
|
||||||
|
'pptx' => 'application/vnd.ms-powerpoint',
|
||||||
|
);
|
||||||
|
|
||||||
|
// separate doc from docx etc
|
||||||
|
foreach ($updatedMimetypes as $extension => $mimetype ) {
|
||||||
|
$result = \OC_DB::executeAudited('
|
||||||
|
SELECT count(`mimetype`)
|
||||||
|
FROM `*PREFIX*mimetypes`
|
||||||
|
WHERE `mimetype` = ?
|
||||||
|
', array($mimetype)
|
||||||
|
);
|
||||||
|
|
||||||
|
$exists = $result->fetchOne();
|
||||||
|
|
||||||
|
if ( ! $exists ) {
|
||||||
|
// insert mimetype
|
||||||
|
\OC_DB::executeAudited('
|
||||||
|
INSERT INTO `*PREFIX*mimetypes` ( `mimetype` )
|
||||||
|
VALUES ( ? )
|
||||||
|
', array($mimetype)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// change mimetype for files with x extension
|
||||||
|
\OC_DB::executeAudited('
|
||||||
|
UPDATE `*PREFIX*filecache`
|
||||||
|
SET `mimetype` = (
|
||||||
|
SELECT `id`
|
||||||
|
FROM `*PREFIX*mimetypes`
|
||||||
|
WHERE `mimetype` = ?
|
||||||
|
) WHERE `name` LIKE ?
|
||||||
|
', array($mimetype, '%.'.$extension)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fix mime types
|
||||||
|
*/
|
||||||
|
public function run() {
|
||||||
|
// TODO: check precondition to avoid running the fix every time
|
||||||
|
if ($this->fixOfficeMimeTypes()) {
|
||||||
|
$this->emit('\OC\Repair', 'info', array('Fixed office mime types'));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,107 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Copyright (c) 2014 Vincent Petry <pvince81@owncloud.com>
|
||||||
|
* This file is licensed under the Affero General Public License version 3 or
|
||||||
|
* later.
|
||||||
|
* See the COPYING-README file.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tests for the converting of legacy storages to home storages.
|
||||||
|
*
|
||||||
|
* @see \OC\Repair\RepairMimeTypes
|
||||||
|
*/
|
||||||
|
class TestRepairMimeTypes extends PHPUnit_Framework_TestCase {
|
||||||
|
|
||||||
|
/** @var \OC\RepairStep */
|
||||||
|
private $repair;
|
||||||
|
|
||||||
|
private $storage;
|
||||||
|
|
||||||
|
public function setUp() {
|
||||||
|
$this->storage = new \OC\Files\Storage\Temporary(array());
|
||||||
|
|
||||||
|
$this->repair = new \OC\Repair\RepairMimeTypes();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function tearDown() {
|
||||||
|
$this->storage->getCache()->clear();
|
||||||
|
$sql = 'DELETE FROM `*PREFIX*storages` WHERE id = ?';
|
||||||
|
\OC_DB::executeAudited($sql, array($this->storage->getId()));
|
||||||
|
$this->clearMimeTypes();
|
||||||
|
|
||||||
|
DummyFileCache::clearCachedMimeTypes();
|
||||||
|
}
|
||||||
|
|
||||||
|
private function clearMimeTypes() {
|
||||||
|
$sql = 'DELETE FROM `*PREFIX*mimetypes`';
|
||||||
|
\OC_DB::executeAudited($sql);
|
||||||
|
}
|
||||||
|
|
||||||
|
private function addEntries($entries) {
|
||||||
|
// create files for the different extensions, this
|
||||||
|
// will also automatically create the corresponding mime types
|
||||||
|
foreach ($entries as $entry) {
|
||||||
|
$this->storage->getCache()->put(
|
||||||
|
$entry[0],
|
||||||
|
array(
|
||||||
|
'size' => 0,
|
||||||
|
'mtime' => 0,
|
||||||
|
'mimetype' => $entry[1]
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private function checkEntries($entries) {
|
||||||
|
foreach ($entries as $entry) {
|
||||||
|
$data = $this->storage->getCache()->get($entry[0]);
|
||||||
|
$this->assertEquals($entry[1], $data['mimetype']);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test renaming and splitting old office mime types
|
||||||
|
*/
|
||||||
|
public function testRenameOfficeMimeTypes() {
|
||||||
|
$this->addEntries(
|
||||||
|
array(
|
||||||
|
array('test.doc', 'application/msword'),
|
||||||
|
array('test.docx', 'application/msword'),
|
||||||
|
array('test.xls', 'application/msexcel'),
|
||||||
|
array('test.xlsx', 'application/msexcel'),
|
||||||
|
array('test.ppt', 'application/mspowerpoint'),
|
||||||
|
array('test.pptx', 'application/mspowerpoint'),
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->repair->run();
|
||||||
|
|
||||||
|
// force mimetype reload
|
||||||
|
$this->storage->getCache()->loadMimeTypes();
|
||||||
|
|
||||||
|
$this->checkEntries(
|
||||||
|
array(
|
||||||
|
array('test.doc', 'application/msword'),
|
||||||
|
array('test.docx', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document'),
|
||||||
|
array('test.xls', 'application/msexcel'),
|
||||||
|
array('test.xlsx', 'application/vnd.ms-excel'),
|
||||||
|
array('test.ppt', 'application/mspowerpoint'),
|
||||||
|
array('test.pptx', 'application/vnd.ms-powerpoint'),
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dummy class to access protected members
|
||||||
|
*/
|
||||||
|
class DummyFileCache extends \OC\Files\Cache\Cache {
|
||||||
|
|
||||||
|
public static function clearCachedMimeTypes() {
|
||||||
|
self::$mimetypeIds = array();
|
||||||
|
self::$mimetypes = array();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue