Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
die_coolen_jungs
our_own_cloud_project
Commits
62087803
Commit
62087803
authored
11 years ago
by
Robin Appelman
Browse files
Options
Downloads
Patches
Plain Diff
Sabre: throw exceptions when delete/create/write operations are not permitted
parent
9c9bfcd6
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/connector/sabre/directory.php
+15
-0
15 additions, 0 deletions
lib/connector/sabre/directory.php
lib/connector/sabre/file.php
+12
-3
12 additions, 3 deletions
lib/connector/sabre/file.php
with
27 additions
and
3 deletions
lib/connector/sabre/directory.php
+
15
−
0
View file @
62087803
...
...
@@ -45,9 +45,15 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa
*
* @param string $name Name of the file
* @param resource|string $data Initial payload
* @throws Sabre_DAV_Exception_Forbidden
* @return null|string
*/
public
function
createFile
(
$name
,
$data
=
null
)
{
if
(
!
\OC\Files\Filesystem
::
isCreatable
(
$this
->
path
))
{
throw
new
\Sabre_DAV_Exception_Forbidden
();
}
if
(
isset
(
$_SERVER
[
'HTTP_OC_CHUNKED'
]))
{
$info
=
OC_FileChunking
::
decodeName
(
$name
);
if
(
empty
(
$info
))
{
...
...
@@ -102,10 +108,15 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa
* Creates a new subdirectory
*
* @param string $name
* @throws Sabre_DAV_Exception_Forbidden
* @return void
*/
public
function
createDirectory
(
$name
)
{
if
(
!
\OC\Files\Filesystem
::
isCreatable
(
$this
->
path
))
{
throw
new
\Sabre_DAV_Exception_Forbidden
();
}
$newPath
=
$this
->
path
.
'/'
.
$name
;
if
(
!
\OC\Files\Filesystem
::
mkdir
(
$newPath
))
{
throw
new
Sabre_DAV_Exception_Forbidden
(
'Could not create directory '
.
$newPath
);
...
...
@@ -203,9 +214,13 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa
* Deletes all files in this directory, and then itself
*
* @return void
* @throws Sabre_DAV_Exception_Forbidden
*/
public
function
delete
()
{
if
(
!
\OC\Files\Filesystem
::
isDeletable
(
$this
->
path
))
{
throw
new
\Sabre_DAV_Exception_Forbidden
();
}
if
(
$this
->
path
!=
"/Shared"
)
{
foreach
(
$this
->
getChildren
()
as
$child
)
$child
->
delete
();
\OC\Files\Filesystem
::
rmdir
(
$this
->
path
);
...
...
This diff is collapsed.
Click to expand it.
lib/connector/sabre/file.php
+
12
−
3
View file @
62087803
...
...
@@ -41,24 +41,29 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D
* return an ETag, and just return null.
*
* @param resource $data
* @throws Sabre_DAV_Exception_Forbidden
* @return string|null
*/
public
function
put
(
$data
)
{
if
(
!
\OC\Files\Filesystem
::
isUpdatable
(
$this
->
path
))
{
throw
new
\Sabre_DAV_Exception_Forbidden
();
}
// mark file as partial while uploading (ignored by the scanner)
$partpath
=
$this
->
path
.
'.part'
;
\OC\Files\Filesystem
::
file_put_contents
(
$partpath
,
$data
);
//detect aborted upload
if
(
isset
(
$_SERVER
[
'REQUEST_METHOD'
])
&&
$_SERVER
[
'REQUEST_METHOD'
]
===
'PUT'
)
{
if
(
isset
(
$_SERVER
[
'REQUEST_METHOD'
])
&&
$_SERVER
[
'REQUEST_METHOD'
]
===
'PUT'
)
{
if
(
isset
(
$_SERVER
[
'CONTENT_LENGTH'
]))
{
$expected
=
$_SERVER
[
'CONTENT_LENGTH'
];
$actual
=
\OC\Files\Filesystem
::
filesize
(
$partpath
);
if
(
$actual
!=
$expected
)
{
\OC\Files\Filesystem
::
unlink
(
$partpath
);
throw
new
Sabre_DAV_Exception_BadRequest
(
'expected filesize '
.
$expected
.
' got '
.
$actual
);
'expected filesize '
.
$expected
.
' got '
.
$actual
);
}
}
}
...
...
@@ -69,7 +74,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D
//allow sync clients to send the mtime along in a header
$mtime
=
OC_Request
::
hasModificationTime
();
if
(
$mtime
!==
false
)
{
if
(
\OC\Files\Filesystem
::
touch
(
$this
->
path
,
$mtime
))
{
if
(
\OC\Files\Filesystem
::
touch
(
$this
->
path
,
$mtime
))
{
header
(
'X-OC-MTime: accepted'
);
}
}
...
...
@@ -92,9 +97,13 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D
* Delete the current file
*
* @return void
* @throws Sabre_DAV_Exception_Forbidden
*/
public
function
delete
()
{
if
(
!
\OC\Files\Filesystem
::
isDeletable
(
$this
->
path
))
{
throw
new
\Sabre_DAV_Exception_Forbidden
();
}
\OC\Files\Filesystem
::
unlink
(
$this
->
path
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment