Blame view

sources/lib/private/files/cache/upgrade.php 6.19 KB
03e52840d   Kload   Init
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
  <?php
  /**
   * Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
   * This file is licensed under the Affero General Public License version 3 or
   * later.
   * See the COPYING-README file.
   */
  
  namespace OC\Files\Cache;
  
  class Upgrade {
  	/**
  	 * @var Legacy $legacy
  	 */
  	private $legacy;
  
  	private $numericIds = array();
  
  	private $mimeTypeIds = array();
  
  	/**
  	 * @param Legacy $legacy
  	 */
  	public function __construct($legacy) {
  		$this->legacy = $legacy;
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
29
  	 * Preform a upgrade a path and it's childs
03e52840d   Kload   Init
30
31
  	 *
  	 * @param string $path
31b7f2792   Kload   Upgrade to ownclo...
32
  	 * @param bool $mode
03e52840d   Kload   Init
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
  	 */
  	function upgradePath($path, $mode = Scanner::SCAN_RECURSIVE) {
  		if (!$this->legacy->hasItems()) {
  			return;
  		}
  		\OC_Hook::emit('\OC\Files\Cache\Upgrade', 'migrate_path', $path);
  		if ($row = $this->legacy->get($path)) {
  			$data = $this->getNewData($row);
  			if ($data) {
  				$this->insert($data);
  				$this->upgradeChilds($data['id'], $mode);
  			}
  		}
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
49
50
  	 * upgrade all child elements of an item
  	 *
03e52840d   Kload   Init
51
  	 * @param int $id
31b7f2792   Kload   Upgrade to ownclo...
52
  	 * @param bool $mode
03e52840d   Kload   Init
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
  	 */
  	function upgradeChilds($id, $mode = Scanner::SCAN_RECURSIVE) {
  		$children = $this->legacy->getChildren($id);
  		foreach ($children as $child) {
  			$childData = $this->getNewData($child);
  			\OC_Hook::emit('\OC\Files\Cache\Upgrade', 'migrate_path', $child['path']);
  			if ($childData) {
  				$this->insert($childData);
  				if ($mode == Scanner::SCAN_RECURSIVE) {
  					$this->upgradeChilds($child['id']);
  				}
  			}
  		}
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
69
70
  	 * insert data into the new cache
  	 *
03e52840d   Kload   Init
71
72
73
74
75
76
77
78
79
80
  	 * @param array $data the data for the new cache
  	 */
  	function insert($data) {
  		static $insertQuery = null;
  		if(is_null($insertQuery)) {
  			$insertQuery = \OC_DB::prepare('INSERT INTO `*PREFIX*filecache`
  				( `fileid`, `storage`, `path`, `path_hash`, `parent`, `name`, `mimetype`, `mimepart`, `size`, `mtime`, `encrypted`, `etag` )
  				VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)');
  		}
  		if (!$this->inCache($data['storage'], $data['path_hash'], $data['id'])) {
31b7f2792   Kload   Upgrade to ownclo...
81
  			\OC_DB::executeAudited($insertQuery, array($data['id'], $data['storage'],
03e52840d   Kload   Init
82
83
84
85
86
87
  				$data['path'], $data['path_hash'], $data['parent'], $data['name'],
  				$data['mimetype'], $data['mimepart'], $data['size'], $data['mtime'], $data['encrypted'], $data['etag']));
  		}
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
88
89
  	 * check if an item is already in the new cache
  	 *
03e52840d   Kload   Init
90
91
92
93
94
95
96
97
98
99
  	 * @param string $storage
  	 * @param string $pathHash
  	 * @param string $id
  	 * @return bool
  	 */
  	function inCache($storage, $pathHash, $id) {
  		static $query = null;
  		if(is_null($query)) {
  			$query = \OC_DB::prepare('SELECT `fileid` FROM `*PREFIX*filecache` WHERE (`storage` = ? AND `path_hash` = ?) OR `fileid` = ?');
  		}
31b7f2792   Kload   Upgrade to ownclo...
100
  		$result = \OC_DB::executeAudited($query, array($storage, $pathHash, $id));
03e52840d   Kload   Init
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
  		return (bool)$result->fetchRow();
  	}
  
  	/**
  	 * get the new data array from the old one
  	 *
  	 * @param array $data the data from the old cache
  	 * Example data array
  	 * Array
  	 *	(
  	 *		[id] => 418
  	 *		[path] => /tina/files/picture.jpg		//relative to datadir
  	 *		[path_hash] => 66d4547e372888deed80b24fec9b192b
  	 *		[parent] => 234
  	 *		[name] => picture.jpg
  	 *		[user] => tina
  	 *		[size] => 1265283
  	 *		[ctime] => 1363909709
  	 *		[mtime] => 1363909709
  	 *		[mimetype] => image/jpeg
  	 *		[mimepart] => image
  	 *		[encrypted] => 0
  	 *		[versioned] => 0
  	 *		[writable] => 1
  	 *	)
  	 *
  	 * @return array
  	 */
  	function getNewData($data) {
  		//Make sure there is a path, otherwise we can do nothing.
  		if(!isset($data['path'])) {
  			return false;
  		}
  		$newData = $data;
  		/**
  		 * @var \OC\Files\Storage\Storage $storage
  		 * @var string $internalPath;
  		 */
  		list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($data['path']);
  		if ($storage) {
  			$newData['etag'] = $data['etag'];
  			$newData['path_hash'] = md5($internalPath);
  			$newData['path'] = $internalPath;
  			$newData['storage'] = $this->getNumericId($storage);
  			$newData['parent'] = ($internalPath === '') ? -1 : $data['parent'];
  			$newData['permissions'] = ($data['writable']) ? \OCP\PERMISSION_ALL : \OCP\PERMISSION_READ;
  			$newData['storage_object'] = $storage;
  			$newData['mimetype'] = $this->getMimetypeId($newData['mimetype'], $storage);
  			$newData['mimepart'] = $this->getMimetypeId($newData['mimepart'], $storage);
  			return $newData;
  		} else {
  			\OC_Log::write('core', 'Unable to migrate data from old cache for '.$data['path'].' because the storage was not found', \OC_Log::ERROR);
  			return false;
  		}
  	}
  
  	/**
  	 * get the numeric storage id
  	 *
  	 * @param \OC\Files\Storage\Storage $storage
  	 * @return int
  	 */
  	function getNumericId($storage) {
  		$storageId = $storage->getId();
  		if (!isset($this->numericIds[$storageId])) {
  			$cache = $storage->getCache();
  			$this->numericIds[$storageId] = $cache->getNumericStorageId();
  		}
  		return $this->numericIds[$storageId];
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
173
174
  	 * get the numeric id for a mimetype
  	 *
03e52840d   Kload   Init
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
  	 * @param string $mimetype
  	 * @param \OC\Files\Storage\Storage $storage
  	 * @return int
  	 */
  	function getMimetypeId($mimetype, $storage) {
  		if (!isset($this->mimeTypeIds[$mimetype])) {
  			$cache = new Cache($storage);
  			$this->mimeTypeIds[$mimetype] = $cache->getMimetypeId($mimetype);
  		}
  		return $this->mimeTypeIds[$mimetype];
  	}
  
  	/**
  	 * check if a cache upgrade is required for $user
  	 *
  	 * @param string $user
  	 * @return bool
  	 */
  	static function needUpgrade($user) {
  		$cacheVersion = (int)\OCP\Config::getUserValue($user, 'files', 'cache_version', 4);
31b7f2792   Kload   Upgrade to ownclo...
195
196
197
198
199
200
201
202
203
  		if ($cacheVersion < 5) {
  			$legacy = new \OC\Files\Cache\Legacy($user);
  			if ($legacy->hasItems()) {
  				return true;
  			}
  			self::upgradeDone($user);
  		}
  
  		return false;
03e52840d   Kload   Init
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
  	}
  
  	/**
  	 * mark the filecache as upgrade
  	 *
  	 * @param string $user
  	 */
  	static function upgradeDone($user) {
  		\OCP\Config::setUserValue($user, 'files', 'cache_version', 5);
  	}
  
  	/**
  	 * Does a "silent" upgrade, i.e. without an Event-Source as triggered
  	 * on User-Login via Ajax. This method is called within the regular
  	 * ownCloud upgrade.
  	 *
  	 * @param string $user a User ID
  	 */
  	public static function doSilentUpgrade($user) {
  		if(!self::needUpgrade($user)) {
  			return;
  		}
  		$legacy = new \OC\Files\Cache\Legacy($user);
  		if ($legacy->hasItems()) {
  			\OC_DB::beginTransaction();
  			$upgrade = new \OC\Files\Cache\Upgrade($legacy);
  			$upgrade->upgradePath('/' . $user . '/files');
  			\OC_DB::commit();
  		}
  		\OC\Files\Cache\Upgrade::upgradeDone($user);
  	}
  }