summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-03-10 14:40:36 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2014-03-10 14:40:36 +0100
commitf0603a971d49f7143471123a2a255fc9632a45c5 (patch)
tree78b3a92557a682e49cb7fc3f054fdcc294ac7d2d /lib
parent58c216d0e8ea4bb6d72ac3382b67a7f4b02f3ed1 (diff)
downloadnextcloud-server-f0603a971d49f7143471123a2a255fc9632a45c5.tar.gz
nextcloud-server-f0603a971d49f7143471123a2a255fc9632a45c5.zip
close the session for all DAV calls right after authentication - no need to write to the session afterwards
Diffstat (limited to 'lib')
-rw-r--r--lib/private/connector/sabre/auth.php16
1 files changed, 15 insertions, 1 deletions
diff --git a/lib/private/connector/sabre/auth.php b/lib/private/connector/sabre/auth.php
index 0c84fa6b757..5577273df8c 100644
--- a/lib/private/connector/sabre/auth.php
+++ b/lib/private/connector/sabre/auth.php
@@ -73,6 +73,20 @@ class OC_Connector_Sabre_Auth extends Sabre_DAV_Auth_Backend_AbstractBasic {
*/
public function authenticate(Sabre_DAV_Server $server, $realm) {
+ $result = $this->auth($server, $realm);
+
+ // close the session - right after authentication there is not need to write to the session any more
+ \OC::$session->close();
+
+ return $result;
+ }
+
+ /**
+ * @param Sabre_DAV_Server $server
+ * @param $realm
+ * @return bool
+ */
+ private function auth(Sabre_DAV_Server $server, $realm) {
if (OC_User::handleApacheAuth() || OC_User::isLoggedIn()) {
$user = OC_User::getUser();
OC_Util::setupFS($user);
@@ -81,5 +95,5 @@ class OC_Connector_Sabre_Auth extends Sabre_DAV_Auth_Backend_AbstractBasic {
}
return parent::authenticate($server, $realm);
- }
+ }
}