2012-04-20 13:39:30 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This plugin check user quota and deny creating files when they exceeds the quota.
|
2012-11-05 01:16:04 +04:00
|
|
|
*
|
2012-04-20 13:39:30 +04:00
|
|
|
* @author Sergio Cambra
|
2013-08-08 15:33:00 +04:00
|
|
|
* @copyright Copyright (C) 2012 entreCables S.L. All rights reserved.
|
2012-04-20 13:39:30 +04:00
|
|
|
* @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
|
|
|
|
*/
|
|
|
|
class OC_Connector_Sabre_QuotaPlugin extends Sabre_DAV_ServerPlugin {
|
|
|
|
|
2014-02-25 19:23:09 +04:00
|
|
|
/**
|
|
|
|
* @var \OC\Files\View
|
|
|
|
*/
|
|
|
|
private $view;
|
|
|
|
|
2012-04-20 13:39:30 +04:00
|
|
|
/**
|
2013-08-08 15:33:00 +04:00
|
|
|
* Reference to main server object
|
|
|
|
*
|
|
|
|
* @var Sabre_DAV_Server
|
|
|
|
*/
|
2012-04-20 13:39:30 +04:00
|
|
|
private $server;
|
|
|
|
|
|
|
|
/**
|
2014-02-25 19:23:09 +04:00
|
|
|
* @param \OC\Files\View $view
|
2013-08-08 15:33:00 +04:00
|
|
|
*/
|
2014-02-25 19:23:09 +04:00
|
|
|
public function __construct($view) {
|
|
|
|
$this->view = $view;
|
|
|
|
}
|
2013-08-08 15:33:00 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This initializes the plugin.
|
|
|
|
*
|
|
|
|
* This function is called by Sabre_DAV_Server, after
|
|
|
|
* addPlugin is called.
|
|
|
|
*
|
|
|
|
* This method should set up the requires event subscriptions.
|
|
|
|
*
|
|
|
|
* @param Sabre_DAV_Server $server
|
|
|
|
* @return void
|
|
|
|
*/
|
2012-04-20 13:39:30 +04:00
|
|
|
public function initialize(Sabre_DAV_Server $server) {
|
|
|
|
|
2013-08-08 15:33:00 +04:00
|
|
|
$this->server = $server;
|
2012-04-20 13:39:30 +04:00
|
|
|
|
2013-08-08 15:33:00 +04:00
|
|
|
$server->subscribeEvent('beforeWriteContent', array($this, 'checkQuota'), 10);
|
|
|
|
$server->subscribeEvent('beforeCreateFile', array($this, 'checkQuota'), 10);
|
2012-04-20 13:39:30 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-08-08 15:33:00 +04:00
|
|
|
* This method is called before any HTTP method and validates there is enough free space to store the file
|
|
|
|
*
|
2014-02-19 12:31:54 +04:00
|
|
|
* @param string $uri
|
2014-04-23 17:34:04 +04:00
|
|
|
* @param null $data
|
|
|
|
* @throws Sabre_DAV_Exception_InsufficientStorage
|
2013-08-08 15:33:00 +04:00
|
|
|
* @return bool
|
|
|
|
*/
|
2012-04-20 13:39:30 +04:00
|
|
|
public function checkQuota($uri, $data = null) {
|
2013-08-08 02:42:28 +04:00
|
|
|
$length = $this->getLength();
|
2012-04-20 13:39:30 +04:00
|
|
|
if ($length) {
|
2014-02-25 19:23:09 +04:00
|
|
|
if (substr($uri, 0, 1) !== '/') {
|
|
|
|
$uri = '/' . $uri;
|
2012-10-30 15:17:15 +04:00
|
|
|
}
|
|
|
|
list($parentUri, $newName) = Sabre_DAV_URLUtil::splitPath($uri);
|
2014-03-12 19:57:39 +04:00
|
|
|
$req = $this->server->httpRequest;
|
|
|
|
if ($req->getHeader('OC-Chunked')) {
|
|
|
|
$info = OC_FileChunking::decodeName($newName);
|
|
|
|
$chunkHandler = new OC_FileChunking($info);
|
2014-04-23 17:34:04 +04:00
|
|
|
// subtract the already uploaded size to see whether
|
2014-03-12 19:57:39 +04:00
|
|
|
// there is still enough space for the remaining chunks
|
|
|
|
$length -= $chunkHandler->getCurrentSize();
|
|
|
|
}
|
2013-08-26 22:21:16 +04:00
|
|
|
$freeSpace = $this->getFreeSpace($parentUri);
|
2013-07-25 18:14:46 +04:00
|
|
|
if ($freeSpace !== \OC\Files\SPACE_UNKNOWN && $length > $freeSpace) {
|
2014-03-12 19:57:39 +04:00
|
|
|
if (isset($chunkHandler)) {
|
|
|
|
$chunkHandler->cleanup();
|
|
|
|
}
|
2012-12-12 23:09:57 +04:00
|
|
|
throw new Sabre_DAV_Exception_InsufficientStorage();
|
2012-04-20 13:39:30 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2013-08-08 02:42:28 +04:00
|
|
|
|
2014-02-25 19:23:09 +04:00
|
|
|
public function getLength() {
|
2013-08-08 15:33:00 +04:00
|
|
|
$req = $this->server->httpRequest;
|
|
|
|
$length = $req->getHeader('X-Expected-Entity-Length');
|
|
|
|
if (!$length) {
|
|
|
|
$length = $req->getHeader('Content-Length');
|
|
|
|
}
|
2013-08-08 02:42:28 +04:00
|
|
|
|
2013-08-08 15:33:00 +04:00
|
|
|
$ocLength = $req->getHeader('OC-Total-Length');
|
|
|
|
if ($length && $ocLength) {
|
2013-08-08 02:42:28 +04:00
|
|
|
return max($length, $ocLength);
|
2013-08-08 15:33:00 +04:00
|
|
|
}
|
2013-08-08 02:42:28 +04:00
|
|
|
|
|
|
|
return $length;
|
|
|
|
}
|
2013-08-26 22:21:16 +04:00
|
|
|
|
|
|
|
/**
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string $parentUri
|
2013-08-26 22:21:16 +04:00
|
|
|
* @return mixed
|
|
|
|
*/
|
2014-02-25 19:23:09 +04:00
|
|
|
public function getFreeSpace($parentUri) {
|
|
|
|
$freeSpace = $this->view->free_space($parentUri);
|
2013-08-26 22:21:16 +04:00
|
|
|
return $freeSpace;
|
|
|
|
}
|
2012-04-20 13:39:30 +04:00
|
|
|
}
|