Passed
Push — master ( 054d26...1aa76e )
by Julius
13:07 queued 12s
created
apps/dav/lib/DAV/Sharing/Xml/ShareRequest.php 2 patches
Indentation   +39 added lines, -39 removed lines patch added patch discarded remove patch
@@ -26,54 +26,54 @@
 block discarded – undo
26 26
 use Sabre\Xml\XmlDeserializable;
27 27
 
28 28
 class ShareRequest implements XmlDeserializable {
29
-	public $set = [];
29
+    public $set = [];
30 30
 
31
-	public $remove = [];
31
+    public $remove = [];
32 32
 
33
-	/**
34
-	 * Constructor
35
-	 *
36
-	 * @param array $set
37
-	 * @param array $remove
38
-	 */
39
-	public function __construct(array $set, array $remove) {
40
-		$this->set = $set;
41
-		$this->remove = $remove;
42
-	}
33
+    /**
34
+     * Constructor
35
+     *
36
+     * @param array $set
37
+     * @param array $remove
38
+     */
39
+    public function __construct(array $set, array $remove) {
40
+        $this->set = $set;
41
+        $this->remove = $remove;
42
+    }
43 43
 
44
-	public static function xmlDeserialize(Reader $reader) {
45
-		$elements = $reader->parseInnerTree([
46
-			'{' . Plugin::NS_OWNCLOUD. '}set' => 'Sabre\\Xml\\Element\\KeyValue',
47
-			'{' . Plugin::NS_OWNCLOUD . '}remove' => 'Sabre\\Xml\\Element\\KeyValue',
48
-		]);
44
+    public static function xmlDeserialize(Reader $reader) {
45
+        $elements = $reader->parseInnerTree([
46
+            '{' . Plugin::NS_OWNCLOUD. '}set' => 'Sabre\\Xml\\Element\\KeyValue',
47
+            '{' . Plugin::NS_OWNCLOUD . '}remove' => 'Sabre\\Xml\\Element\\KeyValue',
48
+        ]);
49 49
 
50
-		$set = [];
51
-		$remove = [];
50
+        $set = [];
51
+        $remove = [];
52 52
 
53
-		foreach ($elements as $elem) {
54
-			switch ($elem['name']) {
53
+        foreach ($elements as $elem) {
54
+            switch ($elem['name']) {
55 55
 
56
-				case '{' . Plugin::NS_OWNCLOUD . '}set':
57
-					$sharee = $elem['value'];
56
+                case '{' . Plugin::NS_OWNCLOUD . '}set':
57
+                    $sharee = $elem['value'];
58 58
 
59
-					$sumElem = '{' . Plugin::NS_OWNCLOUD . '}summary';
60
-					$commonName = '{' . Plugin::NS_OWNCLOUD . '}common-name';
59
+                    $sumElem = '{' . Plugin::NS_OWNCLOUD . '}summary';
60
+                    $commonName = '{' . Plugin::NS_OWNCLOUD . '}common-name';
61 61
 
62
-					$set[] = [
63
-						'href' => $sharee['{DAV:}href'],
64
-						'commonName' => isset($sharee[$commonName]) ? $sharee[$commonName] : null,
65
-						'summary' => isset($sharee[$sumElem]) ? $sharee[$sumElem] : null,
66
-						'readOnly' => !array_key_exists('{' . Plugin::NS_OWNCLOUD . '}read-write', $sharee),
67
-					];
68
-					break;
62
+                    $set[] = [
63
+                        'href' => $sharee['{DAV:}href'],
64
+                        'commonName' => isset($sharee[$commonName]) ? $sharee[$commonName] : null,
65
+                        'summary' => isset($sharee[$sumElem]) ? $sharee[$sumElem] : null,
66
+                        'readOnly' => !array_key_exists('{' . Plugin::NS_OWNCLOUD . '}read-write', $sharee),
67
+                    ];
68
+                    break;
69 69
 
70
-				case '{' . Plugin::NS_OWNCLOUD . '}remove':
71
-					$remove[] = $elem['value']['{DAV:}href'];
72
-					break;
70
+                case '{' . Plugin::NS_OWNCLOUD . '}remove':
71
+                    $remove[] = $elem['value']['{DAV:}href'];
72
+                    break;
73 73
 
74
-			}
75
-		}
74
+            }
75
+        }
76 76
 
77
-		return new self($set, $remove);
78
-	}
77
+        return new self($set, $remove);
78
+    }
79 79
 }
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -43,8 +43,8 @@  discard block
 block discarded – undo
43 43
 
44 44
 	public static function xmlDeserialize(Reader $reader) {
45 45
 		$elements = $reader->parseInnerTree([
46
-			'{' . Plugin::NS_OWNCLOUD. '}set' => 'Sabre\\Xml\\Element\\KeyValue',
47
-			'{' . Plugin::NS_OWNCLOUD . '}remove' => 'Sabre\\Xml\\Element\\KeyValue',
46
+			'{'.Plugin::NS_OWNCLOUD.'}set' => 'Sabre\\Xml\\Element\\KeyValue',
47
+			'{'.Plugin::NS_OWNCLOUD.'}remove' => 'Sabre\\Xml\\Element\\KeyValue',
48 48
 		]);
49 49
 
50 50
 		$set = [];
@@ -53,21 +53,21 @@  discard block
 block discarded – undo
53 53
 		foreach ($elements as $elem) {
54 54
 			switch ($elem['name']) {
55 55
 
56
-				case '{' . Plugin::NS_OWNCLOUD . '}set':
56
+				case '{'.Plugin::NS_OWNCLOUD.'}set':
57 57
 					$sharee = $elem['value'];
58 58
 
59
-					$sumElem = '{' . Plugin::NS_OWNCLOUD . '}summary';
60
-					$commonName = '{' . Plugin::NS_OWNCLOUD . '}common-name';
59
+					$sumElem = '{'.Plugin::NS_OWNCLOUD.'}summary';
60
+					$commonName = '{'.Plugin::NS_OWNCLOUD.'}common-name';
61 61
 
62 62
 					$set[] = [
63 63
 						'href' => $sharee['{DAV:}href'],
64 64
 						'commonName' => isset($sharee[$commonName]) ? $sharee[$commonName] : null,
65 65
 						'summary' => isset($sharee[$sumElem]) ? $sharee[$sumElem] : null,
66
-						'readOnly' => !array_key_exists('{' . Plugin::NS_OWNCLOUD . '}read-write', $sharee),
66
+						'readOnly' => !array_key_exists('{'.Plugin::NS_OWNCLOUD.'}read-write', $sharee),
67 67
 					];
68 68
 					break;
69 69
 
70
-				case '{' . Plugin::NS_OWNCLOUD . '}remove':
70
+				case '{'.Plugin::NS_OWNCLOUD.'}remove':
71 71
 					$remove[] = $elem['value']['{DAV:}href'];
72 72
 					break;
73 73
 
Please login to merge, or discard this patch.
apps/dav/lib/Connector/Sabre/BearerAuth.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
 	private function setupUserFs($userId) {
64 64
 		\OC_Util::setupFS($userId);
65 65
 		$this->session->close();
66
-		return $this->principalPrefix . $userId;
66
+		return $this->principalPrefix.$userId;
67 67
 	}
68 68
 
69 69
 	/**
Please login to merge, or discard this patch.
Indentation   +45 added lines, -45 removed lines patch added patch discarded remove patch
@@ -31,56 +31,56 @@
 block discarded – undo
31 31
 use Sabre\HTTP\ResponseInterface;
32 32
 
33 33
 class BearerAuth extends AbstractBearer {
34
-	private IUserSession $userSession;
35
-	private ISession $session;
36
-	private IRequest $request;
37
-	private string $principalPrefix;
34
+    private IUserSession $userSession;
35
+    private ISession $session;
36
+    private IRequest $request;
37
+    private string $principalPrefix;
38 38
 
39
-	public function __construct(IUserSession $userSession,
40
-								ISession $session,
41
-								IRequest $request,
42
-								$principalPrefix = 'principals/users/') {
43
-		$this->userSession = $userSession;
44
-		$this->session = $session;
45
-		$this->request = $request;
46
-		$this->principalPrefix = $principalPrefix;
39
+    public function __construct(IUserSession $userSession,
40
+                                ISession $session,
41
+                                IRequest $request,
42
+                                $principalPrefix = 'principals/users/') {
43
+        $this->userSession = $userSession;
44
+        $this->session = $session;
45
+        $this->request = $request;
46
+        $this->principalPrefix = $principalPrefix;
47 47
 
48
-		// setup realm
49
-		$defaults = new \OCP\Defaults();
50
-		$this->realm = $defaults->getName();
51
-	}
48
+        // setup realm
49
+        $defaults = new \OCP\Defaults();
50
+        $this->realm = $defaults->getName();
51
+    }
52 52
 
53
-	private function setupUserFs($userId) {
54
-		\OC_Util::setupFS($userId);
55
-		$this->session->close();
56
-		return $this->principalPrefix . $userId;
57
-	}
53
+    private function setupUserFs($userId) {
54
+        \OC_Util::setupFS($userId);
55
+        $this->session->close();
56
+        return $this->principalPrefix . $userId;
57
+    }
58 58
 
59
-	/**
60
-	 * {@inheritdoc}
61
-	 */
62
-	public function validateBearerToken($bearerToken) {
63
-		\OC_Util::setupFS();
59
+    /**
60
+     * {@inheritdoc}
61
+     */
62
+    public function validateBearerToken($bearerToken) {
63
+        \OC_Util::setupFS();
64 64
 
65
-		if (!$this->userSession->isLoggedIn()) {
66
-			$this->userSession->tryTokenLogin($this->request);
67
-		}
68
-		if ($this->userSession->isLoggedIn()) {
69
-			return $this->setupUserFs($this->userSession->getUser()->getUID());
70
-		}
65
+        if (!$this->userSession->isLoggedIn()) {
66
+            $this->userSession->tryTokenLogin($this->request);
67
+        }
68
+        if ($this->userSession->isLoggedIn()) {
69
+            return $this->setupUserFs($this->userSession->getUser()->getUID());
70
+        }
71 71
 
72
-		return false;
73
-	}
72
+        return false;
73
+    }
74 74
 
75
-	/**
76
-	 * \Sabre\DAV\Auth\Backend\AbstractBearer::challenge sets an WWW-Authenticate
77
-	 * header which some DAV clients can't handle. Thus we override this function
78
-	 * and make it simply return a 401.
79
-	 *
80
-	 * @param RequestInterface $request
81
-	 * @param ResponseInterface $response
82
-	 */
83
-	public function challenge(RequestInterface $request, ResponseInterface $response): void {
84
-		$response->setStatus(401);
85
-	}
75
+    /**
76
+     * \Sabre\DAV\Auth\Backend\AbstractBearer::challenge sets an WWW-Authenticate
77
+     * header which some DAV clients can't handle. Thus we override this function
78
+     * and make it simply return a 401.
79
+     *
80
+     * @param RequestInterface $request
81
+     * @param ResponseInterface $response
82
+     */
83
+    public function challenge(RequestInterface $request, ResponseInterface $response): void {
84
+        $response->setStatus(401);
85
+    }
86 86
 }
Please login to merge, or discard this patch.
apps/dav/lib/Connector/Sabre/Exception/FileLocked.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -29,19 +29,19 @@
 block discarded – undo
29 29
 use Exception;
30 30
 
31 31
 class FileLocked extends \Sabre\DAV\Exception {
32
-	public function __construct($message = "", $code = 0, Exception $previous = null) {
33
-		if ($previous instanceof \OCP\Files\LockNotAcquiredException) {
34
-			$message = sprintf('Target file %s is locked by another process.', $previous->path);
35
-		}
36
-		parent::__construct($message, $code, $previous);
37
-	}
32
+    public function __construct($message = "", $code = 0, Exception $previous = null) {
33
+        if ($previous instanceof \OCP\Files\LockNotAcquiredException) {
34
+            $message = sprintf('Target file %s is locked by another process.', $previous->path);
35
+        }
36
+        parent::__construct($message, $code, $previous);
37
+    }
38 38
 
39
-	/**
40
-	 * Returns the HTTP status code for this exception
41
-	 *
42
-	 * @return int
43
-	 */
44
-	public function getHTTPCode() {
45
-		return 423;
46
-	}
39
+    /**
40
+     * Returns the HTTP status code for this exception
41
+     *
42
+     * @return int
43
+     */
44
+    public function getHTTPCode() {
45
+        return 423;
46
+    }
47 47
 }
Please login to merge, or discard this patch.
apps/dav/lib/Connector/Sabre/Exception/UnsupportedMediaType.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -31,12 +31,12 @@
 block discarded – undo
31 31
  */
32 32
 class UnsupportedMediaType extends \Sabre\DAV\Exception {
33 33
 
34
-	/**
35
-	 * Returns the HTTP status code for this exception
36
-	 *
37
-	 * @return int
38
-	 */
39
-	public function getHTTPCode() {
40
-		return 415;
41
-	}
34
+    /**
35
+     * Returns the HTTP status code for this exception
36
+     *
37
+     * @return int
38
+     */
39
+    public function getHTTPCode() {
40
+        return 415;
41
+    }
42 42
 }
Please login to merge, or discard this patch.
apps/dav/lib/Connector/Sabre/Exception/EntityTooLarge.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -31,12 +31,12 @@
 block discarded – undo
31 31
  */
32 32
 class EntityTooLarge extends \Sabre\DAV\Exception {
33 33
 
34
-	/**
35
-	 * Returns the HTTP status code for this exception
36
-	 *
37
-	 * @return int
38
-	 */
39
-	public function getHTTPCode() {
40
-		return 413;
41
-	}
34
+    /**
35
+     * Returns the HTTP status code for this exception
36
+     *
37
+     * @return int
38
+     */
39
+    public function getHTTPCode() {
40
+        return 413;
41
+    }
42 42
 }
Please login to merge, or discard this patch.
apps/dav/lib/Connector/Sabre/TagList.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 			return null;
89 89
 		}
90 90
 		foreach ($tree as $elem) {
91
-			if ($elem['name'] === '{' . self::NS_OWNCLOUD . '}tag') {
91
+			if ($elem['name'] === '{'.self::NS_OWNCLOUD.'}tag') {
92 92
 				$tags[] = $elem['value'];
93 93
 			}
94 94
 		}
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
 	 */
117 117
 	public function xmlSerialize(Writer $writer) {
118 118
 		foreach ($this->tags as $tag) {
119
-			$writer->writeElement('{' . self::NS_OWNCLOUD . '}tag', $tag);
119
+			$writer->writeElement('{'.self::NS_OWNCLOUD.'}tag', $tag);
120 120
 		}
121 121
 	}
122 122
 }
Please login to merge, or discard this patch.
Indentation   +79 added lines, -79 removed lines patch added patch discarded remove patch
@@ -33,89 +33,89 @@
 block discarded – undo
33 33
  * This property contains multiple "tag" elements, each containing a tag name.
34 34
  */
35 35
 class TagList implements Element {
36
-	public const NS_OWNCLOUD = 'http://owncloud.org/ns';
36
+    public const NS_OWNCLOUD = 'http://owncloud.org/ns';
37 37
 
38
-	/**
39
-	 * tags
40
-	 *
41
-	 * @var array
42
-	 */
43
-	private $tags;
38
+    /**
39
+     * tags
40
+     *
41
+     * @var array
42
+     */
43
+    private $tags;
44 44
 
45
-	/**
46
-	 * @param array $tags
47
-	 */
48
-	public function __construct(array $tags) {
49
-		$this->tags = $tags;
50
-	}
45
+    /**
46
+     * @param array $tags
47
+     */
48
+    public function __construct(array $tags) {
49
+        $this->tags = $tags;
50
+    }
51 51
 
52
-	/**
53
-	 * Returns the tags
54
-	 *
55
-	 * @return array
56
-	 */
57
-	public function getTags() {
58
-		return $this->tags;
59
-	}
52
+    /**
53
+     * Returns the tags
54
+     *
55
+     * @return array
56
+     */
57
+    public function getTags() {
58
+        return $this->tags;
59
+    }
60 60
 
61
-	/**
62
-	 * The deserialize method is called during xml parsing.
63
-	 *
64
-	 * This method is called statictly, this is because in theory this method
65
-	 * may be used as a type of constructor, or factory method.
66
-	 *
67
-	 * Often you want to return an instance of the current class, but you are
68
-	 * free to return other data as well.
69
-	 *
70
-	 * You are responsible for advancing the reader to the next element. Not
71
-	 * doing anything will result in a never-ending loop.
72
-	 *
73
-	 * If you just want to skip parsing for this element altogether, you can
74
-	 * just call $reader->next();
75
-	 *
76
-	 * $reader->parseInnerTree() will parse the entire sub-tree, and advance to
77
-	 * the next element.
78
-	 *
79
-	 * @param Reader $reader
80
-	 * @return mixed
81
-	 */
82
-	public static function xmlDeserialize(Reader $reader) {
83
-		$tags = [];
61
+    /**
62
+     * The deserialize method is called during xml parsing.
63
+     *
64
+     * This method is called statictly, this is because in theory this method
65
+     * may be used as a type of constructor, or factory method.
66
+     *
67
+     * Often you want to return an instance of the current class, but you are
68
+     * free to return other data as well.
69
+     *
70
+     * You are responsible for advancing the reader to the next element. Not
71
+     * doing anything will result in a never-ending loop.
72
+     *
73
+     * If you just want to skip parsing for this element altogether, you can
74
+     * just call $reader->next();
75
+     *
76
+     * $reader->parseInnerTree() will parse the entire sub-tree, and advance to
77
+     * the next element.
78
+     *
79
+     * @param Reader $reader
80
+     * @return mixed
81
+     */
82
+    public static function xmlDeserialize(Reader $reader) {
83
+        $tags = [];
84 84
 
85
-		$tree = $reader->parseInnerTree();
86
-		if ($tree === null) {
87
-			return null;
88
-		}
89
-		foreach ($tree as $elem) {
90
-			if ($elem['name'] === '{' . self::NS_OWNCLOUD . '}tag') {
91
-				$tags[] = $elem['value'];
92
-			}
93
-		}
94
-		return new self($tags);
95
-	}
85
+        $tree = $reader->parseInnerTree();
86
+        if ($tree === null) {
87
+            return null;
88
+        }
89
+        foreach ($tree as $elem) {
90
+            if ($elem['name'] === '{' . self::NS_OWNCLOUD . '}tag') {
91
+                $tags[] = $elem['value'];
92
+            }
93
+        }
94
+        return new self($tags);
95
+    }
96 96
 
97
-	/**
98
-	 * The xmlSerialize method is called during xml writing.
99
-	 *
100
-	 * Use the $writer argument to write its own xml serialization.
101
-	 *
102
-	 * An important note: do _not_ create a parent element. Any element
103
-	 * implementing XmlSerializble should only ever write what's considered
104
-	 * its 'inner xml'.
105
-	 *
106
-	 * The parent of the current element is responsible for writing a
107
-	 * containing element.
108
-	 *
109
-	 * This allows serializers to be re-used for different element names.
110
-	 *
111
-	 * If you are opening new elements, you must also close them again.
112
-	 *
113
-	 * @param Writer $writer
114
-	 * @return void
115
-	 */
116
-	public function xmlSerialize(Writer $writer) {
117
-		foreach ($this->tags as $tag) {
118
-			$writer->writeElement('{' . self::NS_OWNCLOUD . '}tag', $tag);
119
-		}
120
-	}
97
+    /**
98
+     * The xmlSerialize method is called during xml writing.
99
+     *
100
+     * Use the $writer argument to write its own xml serialization.
101
+     *
102
+     * An important note: do _not_ create a parent element. Any element
103
+     * implementing XmlSerializble should only ever write what's considered
104
+     * its 'inner xml'.
105
+     *
106
+     * The parent of the current element is responsible for writing a
107
+     * containing element.
108
+     *
109
+     * This allows serializers to be re-used for different element names.
110
+     *
111
+     * If you are opening new elements, you must also close them again.
112
+     *
113
+     * @param Writer $writer
114
+     * @return void
115
+     */
116
+    public function xmlSerialize(Writer $writer) {
117
+        foreach ($this->tags as $tag) {
118
+            $writer->writeElement('{' . self::NS_OWNCLOUD . '}tag', $tag);
119
+        }
120
+    }
121 121
 }
Please login to merge, or discard this patch.
apps/dav/lib/Connector/Sabre/FakeLockerPlugin.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,10 +87,10 @@
 block discarded – undo
87 87
 	 * @return void
88 88
 	 */
89 89
 	public function propFind(PropFind $propFind, INode $node) {
90
-		$propFind->handle('{DAV:}supportedlock', function () {
90
+		$propFind->handle('{DAV:}supportedlock', function() {
91 91
 			return new SupportedLock(true);
92 92
 		});
93
-		$propFind->handle('{DAV:}lockdiscovery', function () use ($propFind) {
93
+		$propFind->handle('{DAV:}lockdiscovery', function() use ($propFind) {
94 94
 			return new LockDiscovery([]);
95 95
 		});
96 96
 	}
Please login to merge, or discard this patch.
Indentation   +99 added lines, -99 removed lines patch added patch discarded remove patch
@@ -47,113 +47,113 @@
 block discarded – undo
47 47
  * @package OCA\DAV\Connector\Sabre
48 48
  */
49 49
 class FakeLockerPlugin extends ServerPlugin {
50
-	/** @var \Sabre\DAV\Server */
51
-	private $server;
50
+    /** @var \Sabre\DAV\Server */
51
+    private $server;
52 52
 
53
-	/** {@inheritDoc} */
54
-	public function initialize(\Sabre\DAV\Server $server) {
55
-		$this->server = $server;
56
-		$this->server->on('method:LOCK', [$this, 'fakeLockProvider'], 1);
57
-		$this->server->on('method:UNLOCK', [$this, 'fakeUnlockProvider'], 1);
58
-		$server->on('propFind', [$this, 'propFind']);
59
-		$server->on('validateTokens', [$this, 'validateTokens']);
60
-	}
53
+    /** {@inheritDoc} */
54
+    public function initialize(\Sabre\DAV\Server $server) {
55
+        $this->server = $server;
56
+        $this->server->on('method:LOCK', [$this, 'fakeLockProvider'], 1);
57
+        $this->server->on('method:UNLOCK', [$this, 'fakeUnlockProvider'], 1);
58
+        $server->on('propFind', [$this, 'propFind']);
59
+        $server->on('validateTokens', [$this, 'validateTokens']);
60
+    }
61 61
 
62
-	/**
63
-	 * Indicate that we support LOCK and UNLOCK
64
-	 *
65
-	 * @param string $path
66
-	 * @return string[]
67
-	 */
68
-	public function getHTTPMethods($path) {
69
-		return [
70
-			'LOCK',
71
-			'UNLOCK',
72
-		];
73
-	}
62
+    /**
63
+     * Indicate that we support LOCK and UNLOCK
64
+     *
65
+     * @param string $path
66
+     * @return string[]
67
+     */
68
+    public function getHTTPMethods($path) {
69
+        return [
70
+            'LOCK',
71
+            'UNLOCK',
72
+        ];
73
+    }
74 74
 
75
-	/**
76
-	 * Indicate that we support locking
77
-	 *
78
-	 * @return integer[]
79
-	 */
80
-	public function getFeatures() {
81
-		return [2];
82
-	}
75
+    /**
76
+     * Indicate that we support locking
77
+     *
78
+     * @return integer[]
79
+     */
80
+    public function getFeatures() {
81
+        return [2];
82
+    }
83 83
 
84
-	/**
85
-	 * Return some dummy response for PROPFIND requests with regard to locking
86
-	 *
87
-	 * @param PropFind $propFind
88
-	 * @param INode $node
89
-	 * @return void
90
-	 */
91
-	public function propFind(PropFind $propFind, INode $node) {
92
-		$propFind->handle('{DAV:}supportedlock', function () {
93
-			return new SupportedLock(true);
94
-		});
95
-		$propFind->handle('{DAV:}lockdiscovery', function () use ($propFind) {
96
-			return new LockDiscovery([]);
97
-		});
98
-	}
84
+    /**
85
+     * Return some dummy response for PROPFIND requests with regard to locking
86
+     *
87
+     * @param PropFind $propFind
88
+     * @param INode $node
89
+     * @return void
90
+     */
91
+    public function propFind(PropFind $propFind, INode $node) {
92
+        $propFind->handle('{DAV:}supportedlock', function () {
93
+            return new SupportedLock(true);
94
+        });
95
+        $propFind->handle('{DAV:}lockdiscovery', function () use ($propFind) {
96
+            return new LockDiscovery([]);
97
+        });
98
+    }
99 99
 
100
-	/**
101
-	 * Mark a locking token always as valid
102
-	 *
103
-	 * @param RequestInterface $request
104
-	 * @param array $conditions
105
-	 */
106
-	public function validateTokens(RequestInterface $request, &$conditions) {
107
-		foreach ($conditions as &$fileCondition) {
108
-			if (isset($fileCondition['tokens'])) {
109
-				foreach ($fileCondition['tokens'] as &$token) {
110
-					if (isset($token['token'])) {
111
-						if (substr($token['token'], 0, 16) === 'opaquelocktoken:') {
112
-							$token['validToken'] = true;
113
-						}
114
-					}
115
-				}
116
-			}
117
-		}
118
-	}
100
+    /**
101
+     * Mark a locking token always as valid
102
+     *
103
+     * @param RequestInterface $request
104
+     * @param array $conditions
105
+     */
106
+    public function validateTokens(RequestInterface $request, &$conditions) {
107
+        foreach ($conditions as &$fileCondition) {
108
+            if (isset($fileCondition['tokens'])) {
109
+                foreach ($fileCondition['tokens'] as &$token) {
110
+                    if (isset($token['token'])) {
111
+                        if (substr($token['token'], 0, 16) === 'opaquelocktoken:') {
112
+                            $token['validToken'] = true;
113
+                        }
114
+                    }
115
+                }
116
+            }
117
+        }
118
+    }
119 119
 
120
-	/**
121
-	 * Fakes a successful LOCK
122
-	 *
123
-	 * @param RequestInterface $request
124
-	 * @param ResponseInterface $response
125
-	 * @return bool
126
-	 */
127
-	public function fakeLockProvider(RequestInterface $request,
128
-									 ResponseInterface $response) {
129
-		$lockInfo = new LockInfo();
130
-		$lockInfo->token = md5($request->getPath());
131
-		$lockInfo->uri = $request->getPath();
132
-		$lockInfo->depth = \Sabre\DAV\Server::DEPTH_INFINITY;
133
-		$lockInfo->timeout = 1800;
120
+    /**
121
+     * Fakes a successful LOCK
122
+     *
123
+     * @param RequestInterface $request
124
+     * @param ResponseInterface $response
125
+     * @return bool
126
+     */
127
+    public function fakeLockProvider(RequestInterface $request,
128
+                                        ResponseInterface $response) {
129
+        $lockInfo = new LockInfo();
130
+        $lockInfo->token = md5($request->getPath());
131
+        $lockInfo->uri = $request->getPath();
132
+        $lockInfo->depth = \Sabre\DAV\Server::DEPTH_INFINITY;
133
+        $lockInfo->timeout = 1800;
134 134
 
135
-		$body = $this->server->xml->write('{DAV:}prop', [
136
-			'{DAV:}lockdiscovery' =>
137
-					new LockDiscovery([$lockInfo])
138
-		]);
135
+        $body = $this->server->xml->write('{DAV:}prop', [
136
+            '{DAV:}lockdiscovery' =>
137
+                    new LockDiscovery([$lockInfo])
138
+        ]);
139 139
 
140
-		$response->setStatus(200);
141
-		$response->setBody($body);
140
+        $response->setStatus(200);
141
+        $response->setBody($body);
142 142
 
143
-		return false;
144
-	}
143
+        return false;
144
+    }
145 145
 
146
-	/**
147
-	 * Fakes a successful LOCK
148
-	 *
149
-	 * @param RequestInterface $request
150
-	 * @param ResponseInterface $response
151
-	 * @return bool
152
-	 */
153
-	public function fakeUnlockProvider(RequestInterface $request,
154
-									 ResponseInterface $response) {
155
-		$response->setStatus(204);
156
-		$response->setHeader('Content-Length', '0');
157
-		return false;
158
-	}
146
+    /**
147
+     * Fakes a successful LOCK
148
+     *
149
+     * @param RequestInterface $request
150
+     * @param ResponseInterface $response
151
+     * @return bool
152
+     */
153
+    public function fakeUnlockProvider(RequestInterface $request,
154
+                                        ResponseInterface $response) {
155
+        $response->setStatus(204);
156
+        $response->setHeader('Content-Length', '0');
157
+        return false;
158
+    }
159 159
 }
Please login to merge, or discard this patch.
apps/dav/lib/Connector/Sabre/ChecksumList.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
 	 */
65 65
 	public function xmlSerialize(Writer $writer) {
66 66
 		foreach ($this->checksums as $checksum) {
67
-			$writer->writeElement('{' . self::NS_OWNCLOUD . '}checksum', $checksum);
67
+			$writer->writeElement('{'.self::NS_OWNCLOUD.'}checksum', $checksum);
68 68
 		}
69 69
 	}
70 70
 }
Please login to merge, or discard this patch.
Indentation   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -32,37 +32,37 @@
 block discarded – undo
32 32
  * checksum name.
33 33
  */
34 34
 class ChecksumList implements XmlSerializable {
35
-	public const NS_OWNCLOUD = 'http://owncloud.org/ns';
35
+    public const NS_OWNCLOUD = 'http://owncloud.org/ns';
36 36
 
37
-	/** @var string[] of TYPE:CHECKSUM */
38
-	private array $checksums;
37
+    /** @var string[] of TYPE:CHECKSUM */
38
+    private array $checksums;
39 39
 
40
-	public function __construct(string $checksum) {
41
-		$this->checksums = explode(',', $checksum);
42
-	}
40
+    public function __construct(string $checksum) {
41
+        $this->checksums = explode(',', $checksum);
42
+    }
43 43
 
44
-	/**
45
-	 * The xmlSerialize method is called during xml writing.
46
-	 *
47
-	 * Use the $writer argument to write its own xml serialization.
48
-	 *
49
-	 * An important note: do _not_ create a parent element. Any element
50
-	 * implementing XmlSerializble should only ever write what's considered
51
-	 * its 'inner xml'.
52
-	 *
53
-	 * The parent of the current element is responsible for writing a
54
-	 * containing element.
55
-	 *
56
-	 * This allows serializers to be re-used for different element names.
57
-	 *
58
-	 * If you are opening new elements, you must also close them again.
59
-	 *
60
-	 * @param Writer $writer
61
-	 * @return void
62
-	 */
63
-	public function xmlSerialize(Writer $writer) {
64
-		foreach ($this->checksums as $checksum) {
65
-			$writer->writeElement('{' . self::NS_OWNCLOUD . '}checksum', $checksum);
66
-		}
67
-	}
44
+    /**
45
+     * The xmlSerialize method is called during xml writing.
46
+     *
47
+     * Use the $writer argument to write its own xml serialization.
48
+     *
49
+     * An important note: do _not_ create a parent element. Any element
50
+     * implementing XmlSerializble should only ever write what's considered
51
+     * its 'inner xml'.
52
+     *
53
+     * The parent of the current element is responsible for writing a
54
+     * containing element.
55
+     *
56
+     * This allows serializers to be re-used for different element names.
57
+     *
58
+     * If you are opening new elements, you must also close them again.
59
+     *
60
+     * @param Writer $writer
61
+     * @return void
62
+     */
63
+    public function xmlSerialize(Writer $writer) {
64
+        foreach ($this->checksums as $checksum) {
65
+            $writer->writeElement('{' . self::NS_OWNCLOUD . '}checksum', $checksum);
66
+        }
67
+    }
68 68
 }
Please login to merge, or discard this patch.
apps/dav/lib/Connector/Sabre/ShareTypeList.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -71,8 +71,8 @@  discard block
 block discarded – undo
71 71
 			return null;
72 72
 		}
73 73
 		foreach ($tree as $elem) {
74
-			if ($elem['name'] === '{' . self::NS_OWNCLOUD . '}share-type') {
75
-				$shareTypes[] = (int)$elem['value'];
74
+			if ($elem['name'] === '{'.self::NS_OWNCLOUD.'}share-type') {
75
+				$shareTypes[] = (int) $elem['value'];
76 76
 			}
77 77
 		}
78 78
 		return new self($shareTypes);
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 	 */
87 87
 	public function xmlSerialize(Writer $writer) {
88 88
 		foreach ($this->shareTypes as $shareType) {
89
-			$writer->writeElement('{' . self::NS_OWNCLOUD . '}share-type', $shareType);
89
+			$writer->writeElement('{'.self::NS_OWNCLOUD.'}share-type', $shareType);
90 90
 		}
91 91
 	}
92 92
 }
Please login to merge, or discard this patch.
Indentation   +51 added lines, -51 removed lines patch added patch discarded remove patch
@@ -32,61 +32,61 @@
 block discarded – undo
32 32
  * This property contains multiple "share-type" elements, each containing a share type.
33 33
  */
34 34
 class ShareTypeList implements Element {
35
-	public const NS_OWNCLOUD = 'http://owncloud.org/ns';
35
+    public const NS_OWNCLOUD = 'http://owncloud.org/ns';
36 36
 
37
-	/**
38
-	 * Share types
39
-	 *
40
-	 * @var int[]
41
-	 */
42
-	private $shareTypes;
37
+    /**
38
+     * Share types
39
+     *
40
+     * @var int[]
41
+     */
42
+    private $shareTypes;
43 43
 
44
-	/**
45
-	 * @param int[] $shareTypes
46
-	 */
47
-	public function __construct($shareTypes) {
48
-		$this->shareTypes = $shareTypes;
49
-	}
44
+    /**
45
+     * @param int[] $shareTypes
46
+     */
47
+    public function __construct($shareTypes) {
48
+        $this->shareTypes = $shareTypes;
49
+    }
50 50
 
51
-	/**
52
-	 * Returns the share types
53
-	 *
54
-	 * @return int[]
55
-	 */
56
-	public function getShareTypes() {
57
-		return $this->shareTypes;
58
-	}
51
+    /**
52
+     * Returns the share types
53
+     *
54
+     * @return int[]
55
+     */
56
+    public function getShareTypes() {
57
+        return $this->shareTypes;
58
+    }
59 59
 
60
-	/**
61
-	 * The deserialize method is called during xml parsing.
62
-	 *
63
-	 * @param Reader $reader
64
-	 * @return mixed
65
-	 */
66
-	public static function xmlDeserialize(Reader $reader) {
67
-		$shareTypes = [];
60
+    /**
61
+     * The deserialize method is called during xml parsing.
62
+     *
63
+     * @param Reader $reader
64
+     * @return mixed
65
+     */
66
+    public static function xmlDeserialize(Reader $reader) {
67
+        $shareTypes = [];
68 68
 
69
-		$tree = $reader->parseInnerTree();
70
-		if ($tree === null) {
71
-			return null;
72
-		}
73
-		foreach ($tree as $elem) {
74
-			if ($elem['name'] === '{' . self::NS_OWNCLOUD . '}share-type') {
75
-				$shareTypes[] = (int)$elem['value'];
76
-			}
77
-		}
78
-		return new self($shareTypes);
79
-	}
69
+        $tree = $reader->parseInnerTree();
70
+        if ($tree === null) {
71
+            return null;
72
+        }
73
+        foreach ($tree as $elem) {
74
+            if ($elem['name'] === '{' . self::NS_OWNCLOUD . '}share-type') {
75
+                $shareTypes[] = (int)$elem['value'];
76
+            }
77
+        }
78
+        return new self($shareTypes);
79
+    }
80 80
 
81
-	/**
82
-	 * The xmlSerialize method is called during xml writing.
83
-	 *
84
-	 * @param Writer $writer
85
-	 * @return void
86
-	 */
87
-	public function xmlSerialize(Writer $writer) {
88
-		foreach ($this->shareTypes as $shareType) {
89
-			$writer->writeElement('{' . self::NS_OWNCLOUD . '}share-type', $shareType);
90
-		}
91
-	}
81
+    /**
82
+     * The xmlSerialize method is called during xml writing.
83
+     *
84
+     * @param Writer $writer
85
+     * @return void
86
+     */
87
+    public function xmlSerialize(Writer $writer) {
88
+        foreach ($this->shareTypes as $shareType) {
89
+            $writer->writeElement('{' . self::NS_OWNCLOUD . '}share-type', $shareType);
90
+        }
91
+    }
92 92
 }
Please login to merge, or discard this patch.