Ejemplo n.º 1
0
Archivo: node.php Proyecto: kenwi/core
 /**
  * @dataProvider davPermissionsProvider
  */
 public function testDavPermissions($permissions, $type, $shared, $mounted, $expected)
 {
     $info = $this->getMockBuilder('\\OC\\Files\\FileInfo')->disableOriginalConstructor()->setMethods(array('getPermissions', 'isShared', 'isMounted', 'getType'))->getMock();
     $info->expects($this->any())->method('getPermissions')->will($this->returnValue($permissions));
     $info->expects($this->any())->method('isShared')->will($this->returnValue($shared));
     $info->expects($this->any())->method('isMounted')->will($this->returnValue($mounted));
     $info->expects($this->any())->method('getType')->will($this->returnValue($type));
     $view = $this->getMock('\\OC\\Files\\View');
     $node = new \OCA\DAV\Connector\Sabre\File($view, $info);
     $this->assertEquals($expected, $node->getDavPermissions());
 }
Ejemplo n.º 2
0
 /**
  * Creates a new file in the directory
  *
  * Data will either be supplied as a stream resource, or in certain cases
  * as a string. Keep in mind that you may have to support either.
  *
  * After successful creation of the file, you may choose to return the ETag
  * of the new file here.
  *
  * The returned ETag must be surrounded by double-quotes (The quotes should
  * be part of the actual string).
  *
  * If you cannot accurately determine the ETag, you should not return it.
  * If you don't store the file exactly as-is (you're transforming it
  * somehow) you should also not return an ETag.
  *
  * This means that if a subsequent GET to this new file does not exactly
  * return the same contents of what was submitted here, you are strongly
  * recommended to omit the ETag.
  *
  * @param string $name Name of the file
  * @param resource|string $data Initial payload
  * @return null|string
  * @throws Exception\EntityTooLarge
  * @throws Exception\UnsupportedMediaType
  * @throws FileLocked
  * @throws InvalidPath
  * @throws \Sabre\DAV\Exception
  * @throws \Sabre\DAV\Exception\BadRequest
  * @throws \Sabre\DAV\Exception\Forbidden
  * @throws \Sabre\DAV\Exception\ServiceUnavailable
  */
 public function createFile($name, $data = null)
 {
     try {
         // for chunked upload also updating a existing file is a "createFile"
         // because we create all the chunks before re-assemble them to the existing file.
         if (isset($_SERVER['HTTP_OC_CHUNKED'])) {
             // exit if we can't create a new file and we don't updatable existing file
             $info = \OC_FileChunking::decodeName($name);
             if (!$this->fileView->isCreatable($this->path) && !$this->fileView->isUpdatable($this->path . '/' . $info['name'])) {
                 throw new \Sabre\DAV\Exception\Forbidden();
             }
         } else {
             // For non-chunked upload it is enough to check if we can create a new file
             if (!$this->fileView->isCreatable($this->path)) {
                 throw new \Sabre\DAV\Exception\Forbidden();
             }
         }
         $this->fileView->verifyPath($this->path, $name);
         $path = $this->fileView->getAbsolutePath($this->path) . '/' . $name;
         // using a dummy FileInfo is acceptable here since it will be refreshed after the put is complete
         $info = new \OC\Files\FileInfo($path, null, null, array(), null);
         $node = new \OCA\DAV\Connector\Sabre\File($this->fileView, $info);
         $node->acquireLock(ILockingProvider::LOCK_SHARED);
         return $node->put($data);
     } catch (\OCP\Files\StorageNotAvailableException $e) {
         throw new \Sabre\DAV\Exception\ServiceUnavailable($e->getMessage());
     } catch (\OCP\Files\InvalidPathException $ex) {
         throw new InvalidPath($ex->getMessage());
     } catch (ForbiddenException $ex) {
         throw new Forbidden($ex->getMessage(), $ex->getRetry());
     } catch (LockedException $e) {
         throw new FileLocked($e->getMessage(), $e->getCode(), $e);
     }
 }
Ejemplo n.º 3
0
 /**
  * @expectedException \OCA\DAV\Connector\Sabre\Exception\Forbidden
  */
 public function testGetFopenThrows()
 {
     $view = $this->getMock('\\OC\\Files\\View', ['fopen'], array());
     $view->expects($this->atLeastOnce())->method('fopen')->willThrowException(new ForbiddenException('', true));
     $info = new \OC\Files\FileInfo('/test.txt', null, null, array('permissions' => \OCP\Constants::PERMISSION_ALL), null);
     $file = new \OCA\DAV\Connector\Sabre\File($view, $info);
     $file->get();
 }
Ejemplo n.º 4
0
 /**
  * @expectedException \Sabre\DAV\Exception\ServiceUnavailable
  */
 public function testGetFopenFails()
 {
     $view = $this->getMock('\\OC\\Files\\View', ['fopen'], array());
     $view->expects($this->atLeastOnce())->method('fopen')->will($this->returnValue(false));
     $info = new \OC\Files\FileInfo('/test.txt', null, null, array('permissions' => \OCP\Constants::PERMISSION_ALL), null);
     $file = new \OCA\DAV\Connector\Sabre\File($view, $info);
     $file->get();
 }