2012-07-13 17:17:36 +04:00
|
|
|
<?php
|
2014-04-14 17:04:27 +04:00
|
|
|
|
2012-09-10 02:29:47 +04:00
|
|
|
$installedVersion = OCP\Config::getAppValue('files_sharing', 'installed_version');
|
2014-04-14 17:04:27 +04:00
|
|
|
if (version_compare($installedVersion, '0.4', '<')) {
|
|
|
|
$query = OCP\DB::prepare('SELECT * FROM `*PREFIX*share`');
|
2012-09-10 02:29:47 +04:00
|
|
|
$result = $query->execute();
|
2014-04-14 17:04:27 +04:00
|
|
|
$view = new \OC\Files\View('/');
|
|
|
|
$users = array();
|
|
|
|
$shares = array();
|
|
|
|
//we need to set up user backends
|
2012-09-25 13:47:45 +04:00
|
|
|
OC_User::useBackend(new OC_User_Database());
|
|
|
|
OC_Group::useBackend(new OC_Group_Database());
|
|
|
|
OC_App::loadApps(array('authentication'));
|
2014-04-14 17:04:27 +04:00
|
|
|
//we need to set up user backends, otherwise creating the shares will fail with "because user does not exist"
|
2012-09-10 02:29:47 +04:00
|
|
|
while ($row = $result->fetchRow()) {
|
2014-04-14 17:04:27 +04:00
|
|
|
//collect all user shares
|
|
|
|
if ($row['share_type'] === "0" && ($row['item_type'] === 'file' || $row['item_type'] === 'folder')) {
|
|
|
|
$users[] = $row['share_with'];
|
|
|
|
$shares[$row['id']] = $row['file_target'];
|
|
|
|
} else if ($row['share_type'] === "1" && ($row['item_type'] === 'file' || $row['item_type'] === 'folder')) {
|
2014-04-15 22:26:04 +04:00
|
|
|
//collect all group shares
|
2014-04-14 17:04:27 +04:00
|
|
|
$users = array_merge($users, \OC_group::usersInGroup($row['share_with']));
|
|
|
|
$shares[$row['id']] = $row['file_target'];
|
|
|
|
} else if ($row['share_type'] === "2") {
|
|
|
|
$shares[$row['id']] = $row['file_target'];
|
2012-08-29 10:42:49 +04:00
|
|
|
}
|
2012-07-13 17:17:36 +04:00
|
|
|
}
|
2014-04-14 17:04:27 +04:00
|
|
|
|
|
|
|
$unique_users = array_unique($users);
|
|
|
|
|
|
|
|
if (!empty($unique_users) && !empty($shares)) {
|
|
|
|
|
|
|
|
// create folder Shared for each user
|
|
|
|
|
|
|
|
foreach ($unique_users as $user) {
|
|
|
|
\OC\Files\Filesystem::initMountPoints($user);
|
|
|
|
if (!$view->file_exists('/' . $user . '/files/Shared')) {
|
|
|
|
$view->mkdir('/' . $user . '/files/Shared');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$statement = "UPDATE `*PREFIX*share` SET `file_target` = CASE id ";
|
|
|
|
//update share table
|
|
|
|
$ids = implode(',', array_keys($shares));
|
|
|
|
foreach ($shares as $id => $target) {
|
|
|
|
$statement .= "WHEN " . $id . " THEN '/Shared" . $target . "' ";
|
|
|
|
}
|
|
|
|
$statement .= ' END WHERE `id` IN (' . $ids . ')';
|
|
|
|
|
|
|
|
$query = OCP\DB::prepare($statement);
|
2014-04-15 22:26:04 +04:00
|
|
|
|
2014-04-14 17:04:27 +04:00
|
|
|
$query->execute(array());
|
2014-04-15 22:26:04 +04:00
|
|
|
|
2012-09-22 01:25:57 +04:00
|
|
|
}
|
2014-04-14 17:04:27 +04:00
|
|
|
|
2012-09-22 01:25:57 +04:00
|
|
|
}
|
2013-10-07 12:59:09 +04:00
|
|
|
|
|
|
|
// clean up oc_share table from files which are no longer exists
|
2013-11-24 04:47:45 +04:00
|
|
|
if (version_compare($installedVersion, '0.3.5.6', '<')) {
|
2014-02-20 18:21:53 +04:00
|
|
|
\OC\Files\Cache\Shared_Updater::fixBrokenSharesOnAppUpdate();
|
2012-10-27 01:05:02 +04:00
|
|
|
}
|