Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
3c0be7d1
Commit
3c0be7d1
authored
9 years ago
by
Robin Appelman
Browse files
Options
Downloads
Patches
Plain Diff
only lock the parent folders
parent
d6f56ea6
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
apps/files_sharing/lib/sharedstorage.php
+2
-2
2 additions, 2 deletions
apps/files_sharing/lib/sharedstorage.php
apps/files_sharing/tests/locking.php
+11
-0
11 additions, 0 deletions
apps/files_sharing/tests/locking.php
with
13 additions
and
2 deletions
apps/files_sharing/lib/sharedstorage.php
+
2
−
2
View file @
3c0be7d1
...
@@ -632,7 +632,7 @@ class Shared extends \OC\Files\Storage\Common implements ISharedStorage {
...
@@ -632,7 +632,7 @@ class Shared extends \OC\Files\Storage\Common implements ISharedStorage {
// lock the parent folders of the owner when locking the share as recipient
// lock the parent folders of the owner when locking the share as recipient
if
(
$path
===
''
)
{
if
(
$path
===
''
)
{
$sourcePath
=
$this
->
ownerView
->
getPath
(
$this
->
share
[
'file_source'
]);
$sourcePath
=
$this
->
ownerView
->
getPath
(
$this
->
share
[
'file_source'
]);
$this
->
ownerView
->
lockFile
(
$sourcePath
,
ILockingProvider
::
LOCK_SHARED
,
true
);
$this
->
ownerView
->
lockFile
(
dirname
(
$sourcePath
)
,
ILockingProvider
::
LOCK_SHARED
,
true
);
}
}
}
}
...
@@ -648,7 +648,7 @@ class Shared extends \OC\Files\Storage\Common implements ISharedStorage {
...
@@ -648,7 +648,7 @@ class Shared extends \OC\Files\Storage\Common implements ISharedStorage {
// unlock the parent folders of the owner when unlocking the share as recipient
// unlock the parent folders of the owner when unlocking the share as recipient
if
(
$path
===
''
)
{
if
(
$path
===
''
)
{
$sourcePath
=
$this
->
ownerView
->
getPath
(
$this
->
share
[
'file_source'
]);
$sourcePath
=
$this
->
ownerView
->
getPath
(
$this
->
share
[
'file_source'
]);
$this
->
ownerView
->
unlockFile
(
$sourcePath
,
ILockingProvider
::
LOCK_SHARED
,
true
);
$this
->
ownerView
->
unlockFile
(
dirname
(
$sourcePath
)
,
ILockingProvider
::
LOCK_SHARED
,
true
);
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
apps/files_sharing/tests/locking.php
+
11
−
0
View file @
3c0be7d1
...
@@ -87,4 +87,15 @@ class Locking extends TestCase {
...
@@ -87,4 +87,15 @@ class Locking extends TestCase {
$this
->
assertTrue
(
Filesystem
::
rename
(
'/foo'
,
'/asd'
));
$this
->
assertTrue
(
Filesystem
::
rename
(
'/foo'
,
'/asd'
));
}
}
public
function
testChangeLock
()
{
Filesystem
::
initMountPoints
(
$this
->
recipientUid
);
$recipientView
=
new
View
(
'/'
.
$this
->
recipientUid
.
'/files'
);
$recipientView
->
lockFile
(
'bar.txt'
,
ILockingProvider
::
LOCK_SHARED
);
$recipientView
->
changeLock
(
'bar.txt'
,
ILockingProvider
::
LOCK_EXCLUSIVE
);
$recipientView
->
unlockFile
(
'bar.txt'
,
ILockingProvider
::
LOCK_EXCLUSIVE
);
$this
->
assertTrue
(
true
);
}
}
}
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