Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
c80ba69
dont setup full fs after dav auth
icewind1991 Mar 8, 2022
46d0eef
allow setting some metadata in the lazyfolder without having to get t…
icewind1991 Mar 8, 2022
3fc5c97
return a lazy folder from Root::getUserFolder
icewind1991 Mar 8, 2022
04052a9
allow getting cached mounts by path from the mount cache
icewind1991 Mar 8, 2022
469a684
allow getting mounts by provider
icewind1991 Mar 8, 2022
55d943f
fixed when accessing static filesystem calls before setup
icewind1991 Mar 8, 2022
19c64cf
setup only relevant mounts when possible
icewind1991 Mar 8, 2022
79f6742
improve lazy UserFolder
icewind1991 Mar 9, 2022
a617e1e
fix check if dav root is folder
icewind1991 Mar 9, 2022
506d29c
update cached mounts when only specific providers have been setup
icewind1991 Mar 10, 2022
6b085b6
add logic to perform a full filesystem setup when needed
icewind1991 Mar 10, 2022
d342c76
don't double setup provider when calling `setupForUser` after `setupF…
icewind1991 Mar 14, 2022
15c9a31
perform full setup if a cached mount doesn't have a provider set
icewind1991 Mar 16, 2022
fc6e453
force full setup after external storage config change
icewind1991 Mar 17, 2022
89919b0
invalidate mount cache on circles change
icewind1991 Mar 17, 2022
70c37c2
fmt
icewind1991 Mar 17, 2022
f7c942a
caching of userfolder
icewind1991 Mar 24, 2022
63ad99b
fix method name
icewind1991 Mar 24, 2022
b7a7425
make mount cache duration configurable
icewind1991 Mar 24, 2022
db2418b
invalidate mount cache after share rename
icewind1991 Mar 24, 2022
1179873
add comment for getMountForPath loop
icewind1991 Mar 24, 2022
881e107
Apply suggestions from code review
icewind1991 Mar 24, 2022
1bc86a9
Make phpcs happy in MountProviderCollection
PVince81 Mar 24, 2022
d92c7bd
Add missing event dispatcher in test constructor
PVince81 Mar 24, 2022
91ab4e1
Add missing PHPDoc in InvalidateMountCacheEvent
PVince81 Mar 24, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
dont setup full fs after dav auth
Signed-off-by: Robin Appelman <[email protected]>
  • Loading branch information
icewind1991 committed Mar 24, 2022
commit c80ba69b7a2470d429f027584f2c049770508cb0
1 change: 0 additions & 1 deletion apps/dav/lib/Connector/Sabre/Auth.php
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,6 @@ private function auth(RequestInterface $request, ResponseInterface $response) {
\OC_User::handleApacheAuth()
) {
$user = $this->userSession->getUser()->getUID();
\OC_Util::setupFS($user);
$this->currentUser = $user;
$this->session->close();
return [true, $this->principalPrefix . $user];
Expand Down