Kaynağa Gözat

Save mountpoints relative to the user

tags/v7.0.0alpha2
Robin Appelman 10 yıl önce
ebeveyn
işleme
64ced76beb
1 değiştirilmiş dosya ile 15 ekleme ve 6 silme
  1. 15
    6
      apps/files_sharing/lib/external/manager.php

+ 15
- 6
apps/files_sharing/lib/external/manager.php Dosyayı Görüntüle

@@ -8,6 +8,7 @@

namespace OCA\Files_Sharing\External;

use OC\Files\Filesystem;
use OC\Files\Mount\Mount;

class Manager {
@@ -52,7 +53,7 @@ class Manager {
if ($user) {
$query = $this->connection->prepare('INSERT INTO *PREFIX*share_external(`remote`, `share_token`, `password`,
`name`, `owner`, `user`, `mountpoint`, `mountpoint_hash`) VALUES(?, ?, ?, ?, ?, ?, ?, ?)');
$mountPoint = '/' . $user->getUID() . '/files/' . $name;
$mountPoint = Filesystem::normalizePath('/' . $name);
$hash = md5($mountPoint);
$query->execute(array($remote, $token, $password, $name, $owner, $user->getUID(), $mountPoint, $hash));

@@ -63,9 +64,7 @@ class Manager {
'mountpoint' => $mountPoint,
'owner' => $owner
);
$mount = new Mount(self::STORAGE, $mountPoint, $options, $this->storageLoader);
$this->mountManager->addMount($mount);
return $mount;
return $this->mountShare($options);
}
}

@@ -79,12 +78,22 @@ class Manager {
while ($row = $query->fetch()) {
$row['manager'] = $this;
$row['token'] = $row['share_token'];
$mount = new Mount(self::STORAGE, $row['mountpoint'], $row, $this->storageLoader);
$this->mountManager->addMount($mount);
$this->mountShare($row);
}
}
}

/**
* @param array $data
* @return Mount
*/
protected function mountShare($data) {
$mountPoint = '/' . $this->userSession->getUser()->getUID() . '/files' . $data['mountpoint'];
$mount = new Mount(self::STORAGE, $mountPoint, $data, $this->storageLoader);
$this->mountManager->addMount($mount);
return $mount;
}

/**
* @return \OC\Files\Mount\Manager
*/

Loading…
İptal
Kaydet