- update permissions
- change xml tag to perm
This commit is contained in:
parent
95fe55f9e7
commit
e5ee84ca9b
2 changed files with 7 additions and 4 deletions
|
@ -37,7 +37,7 @@ class OC_Connector_Sabre_FilesPlugin extends Sabre_DAV_ServerPlugin
|
|||
|
||||
$server->xmlNamespaces[self::NS_OWNCLOUD] = 'oc';
|
||||
$server->protectedProperties[] = '{' . self::NS_OWNCLOUD . '}id';
|
||||
$server->protectedProperties[] = '{' . self::NS_OWNCLOUD . '}permissions';
|
||||
$server->protectedProperties[] = '{' . self::NS_OWNCLOUD . '}perm';
|
||||
|
||||
$this->server = $server;
|
||||
$this->server->subscribeEvent('beforeGetProperties', array($this, 'beforeGetProperties'));
|
||||
|
|
|
@ -252,14 +252,17 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr
|
|||
if ($this->info->isMounted()) {
|
||||
$p .= 'M';
|
||||
}
|
||||
if ($this->info->isDeletable()) {
|
||||
$p .= 'D';
|
||||
}
|
||||
if ($this->info->isDeletable()) {
|
||||
$p .= 'N';
|
||||
}
|
||||
if ($this->info->getType() === \OCP\Files\FileInfo::TYPE_FILE) {
|
||||
if ($this->info->isUpdateable()) {
|
||||
$p .= 'W';
|
||||
}
|
||||
} else {
|
||||
if ($this->info->isDeletable()) {
|
||||
$p .= 'D';
|
||||
}
|
||||
if ($this->info->isUpdateable()) {
|
||||
$p .= 'CK';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue