summaryrefslogtreecommitdiffstats
path: root/apps/files/appinfo/update.php
blob: a9b8ccbf824651409bc5d8bb9adb0113f05c39a7 (plain)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php

// this drops the keys below, because they aren't needed anymore
// core related
if (version_compare(\OCP\Config::getSystemValue('version', '0.0.0'), '7.0.0', '<')) {
	\OCP\Config::deleteSystemValue('allowZipDownload');
	\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)
		);
	}
}