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
ab6680e9
Commit
ab6680e9
authored
10 years ago
by
Björn Schießle
Committed by
Thomas Müller
10 years ago
Browse files
Options
Downloads
Patches
Plain Diff
name the storage wrapper to make sure that we don't apply the wrapper multiple times
parent
3a698bce
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lib/private/files/filesystem.php
+2
-2
2 additions, 2 deletions
lib/private/files/filesystem.php
lib/private/files/storage/loader.php
+2
-2
2 additions, 2 deletions
lib/private/files/storage/loader.php
lib/private/util.php
+2
-2
2 additions, 2 deletions
lib/private/util.php
with
6 additions
and
6 deletions
lib/private/files/filesystem.php
+
2
−
2
View file @
ab6680e9
...
...
@@ -168,8 +168,8 @@ class Filesystem {
/**
* @param callable $wrapper
*/
public
static
function
addStorageWrapper
(
$wrapper
)
{
self
::
getLoader
()
->
addStorageWrapper
(
$wrapper
);
public
static
function
addStorageWrapper
(
$wrapperName
,
$wrapper
)
{
self
::
getLoader
()
->
addStorageWrapper
(
$wrapperName
,
$wrapper
);
$mounts
=
self
::
getMountManager
()
->
getAll
();
foreach
(
$mounts
as
$mount
)
{
...
...
This diff is collapsed.
Click to expand it.
lib/private/files/storage/loader.php
+
2
−
2
View file @
ab6680e9
...
...
@@ -21,8 +21,8 @@ class Loader {
*
* @param callable $callback
*/
public
function
addStorageWrapper
(
$callback
)
{
$this
->
storageWrappers
[]
=
$callback
;
public
function
addStorageWrapper
(
$wrapperName
,
$callback
)
{
$this
->
storageWrappers
[
$wrapperName
]
=
$callback
;
}
/**
...
...
This diff is collapsed.
Click to expand it.
lib/private/util.php
+
2
−
2
View file @
ab6680e9
...
...
@@ -53,7 +53,7 @@ class OC_Util {
//if we aren't logged in, there is no use to set up the filesystem
if
(
$user
!=
""
)
{
\OC\Files\Filesystem
::
addStorageWrapper
(
function
(
$mountPoint
,
$storage
){
\OC\Files\Filesystem
::
addStorageWrapper
(
'oc_quota'
,
function
(
$mountPoint
,
$storage
){
// set up quota for home storages, even for other users
// which can happen when using sharing
...
...
@@ -72,7 +72,7 @@ class OC_Util {
});
// Set up flock
\OC\Files\Filesystem
::
addStorageWrapper
(
function
(
$mountPoint
,
/** @var \OC\Files\Storage\Storage|null $storage */
$storage
){
\OC\Files\Filesystem
::
addStorageWrapper
(
'oc_flock'
,
function
(
$mountPoint
,
/** @var \OC\Files\Storage\Storage|null $storage */
$storage
){
// lock files on all local storage
if
(
$storage
instanceof
\OC\Files\Storage\Storage
&&
$storage
->
isLocal
())
{
return
new
\OC\Files\Storage\Wrapper\LockingWrapper
(
array
(
'storage'
=>
$storage
));
...
...
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