Passed
Push — master ( 6b9c5b...5cfcde )
by Roeland
09:52 queued 11s
created
apps/files_sharing/lib/Activity/Settings/Shared.php 1 patch
Indentation   +59 added lines, -59 removed lines patch added patch discarded remove patch
@@ -27,72 +27,72 @@
 block discarded – undo
27 27
 
28 28
 class Shared implements ISetting {
29 29
 
30
-	/** @var IL10N */
31
-	protected $l;
30
+    /** @var IL10N */
31
+    protected $l;
32 32
 
33
-	/**
34
-	 * @param IL10N $l
35
-	 */
36
-	public function __construct(IL10N $l) {
37
-		$this->l = $l;
38
-	}
33
+    /**
34
+     * @param IL10N $l
35
+     */
36
+    public function __construct(IL10N $l) {
37
+        $this->l = $l;
38
+    }
39 39
 
40
-	/**
41
-	 * @return string Lowercase a-z and underscore only identifier
42
-	 * @since 11.0.0
43
-	 */
44
-	public function getIdentifier() {
45
-		return 'shared';
46
-	}
40
+    /**
41
+     * @return string Lowercase a-z and underscore only identifier
42
+     * @since 11.0.0
43
+     */
44
+    public function getIdentifier() {
45
+        return 'shared';
46
+    }
47 47
 
48
-	/**
49
-	 * @return string A translated string
50
-	 * @since 11.0.0
51
-	 */
52
-	public function getName() {
53
-		return $this->l->t('A file or folder has been <strong>shared</strong>');
54
-	}
48
+    /**
49
+     * @return string A translated string
50
+     * @since 11.0.0
51
+     */
52
+    public function getName() {
53
+        return $this->l->t('A file or folder has been <strong>shared</strong>');
54
+    }
55 55
 
56
-	/**
57
-	 * @return int whether the filter should be rather on the top or bottom of
58
-	 * the admin section. The filters are arranged in ascending order of the
59
-	 * priority values. It is required to return a value between 0 and 100.
60
-	 * @since 11.0.0
61
-	 */
62
-	public function getPriority() {
63
-		return 10;
64
-	}
56
+    /**
57
+     * @return int whether the filter should be rather on the top or bottom of
58
+     * the admin section. The filters are arranged in ascending order of the
59
+     * priority values. It is required to return a value between 0 and 100.
60
+     * @since 11.0.0
61
+     */
62
+    public function getPriority() {
63
+        return 10;
64
+    }
65 65
 
66
-	/**
67
-	 * @return bool True when the option can be changed for the stream
68
-	 * @since 11.0.0
69
-	 */
70
-	public function canChangeStream() {
71
-		return true;
72
-	}
66
+    /**
67
+     * @return bool True when the option can be changed for the stream
68
+     * @since 11.0.0
69
+     */
70
+    public function canChangeStream() {
71
+        return true;
72
+    }
73 73
 
74
-	/**
75
-	 * @return bool True when the option can be changed for the stream
76
-	 * @since 11.0.0
77
-	 */
78
-	public function isDefaultEnabledStream() {
79
-		return true;
80
-	}
74
+    /**
75
+     * @return bool True when the option can be changed for the stream
76
+     * @since 11.0.0
77
+     */
78
+    public function isDefaultEnabledStream() {
79
+        return true;
80
+    }
81 81
 
82
-	/**
83
-	 * @return bool True when the option can be changed for the mail
84
-	 * @since 11.0.0
85
-	 */
86
-	public function canChangeMail() {
87
-		return true;
88
-	}
82
+    /**
83
+     * @return bool True when the option can be changed for the mail
84
+     * @since 11.0.0
85
+     */
86
+    public function canChangeMail() {
87
+        return true;
88
+    }
89 89
 
90
-	/**
91
-	 * @return bool True when the option can be changed for the stream
92
-	 * @since 11.0.0
93
-	 */
94
-	public function isDefaultEnabledMail() {
95
-		return false;
96
-	}
90
+    /**
91
+     * @return bool True when the option can be changed for the stream
92
+     * @since 11.0.0
93
+     */
94
+    public function isDefaultEnabledMail() {
95
+        return false;
96
+    }
97 97
 }
98 98
 
Please login to merge, or discard this patch.
lib/private/Files/ObjectStore/S3.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -24,18 +24,18 @@
 block discarded – undo
24 24
 use OCP\Files\ObjectStore\IObjectStore;
25 25
 
26 26
 class S3 implements IObjectStore {
27
-	use S3ConnectionTrait;
28
-	use S3ObjectTrait;
27
+    use S3ConnectionTrait;
28
+    use S3ObjectTrait;
29 29
 
30
-	public function __construct($parameters) {
31
-		$this->parseParams($parameters);
32
-	}
30
+    public function __construct($parameters) {
31
+        $this->parseParams($parameters);
32
+    }
33 33
 
34
-	/**
35
-	 * @return string the container or bucket name where objects are stored
36
-	 * @since 7.0.0
37
-	 */
38
-	public function getStorageId() {
39
-		return $this->id;
40
-	}
34
+    /**
35
+     * @return string the container or bucket name where objects are stored
36
+     * @since 7.0.0
37
+     */
38
+    public function getStorageId() {
39
+        return $this->id;
40
+    }
41 41
 }
Please login to merge, or discard this patch.
apps/files_sharing/lib/Middleware/OCSShareAPIMiddleware.php 1 patch
Indentation   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -11,43 +11,43 @@
 block discarded – undo
11 11
 use OCP\Share\IManager;
12 12
 
13 13
 class OCSShareAPIMiddleware extends Middleware {
14
-	/** @var IManager */
15
-	private $shareManager;
16
-	/** @var IL10N */
17
-	private $l;
14
+    /** @var IManager */
15
+    private $shareManager;
16
+    /** @var IL10N */
17
+    private $l;
18 18
 
19
-	public function __construct(IManager $shareManager,
20
-								IL10N $l) {
21
-		$this->shareManager = $shareManager;
22
-		$this->l = $l;
23
-	}
19
+    public function __construct(IManager $shareManager,
20
+                                IL10N $l) {
21
+        $this->shareManager = $shareManager;
22
+        $this->l = $l;
23
+    }
24 24
 
25
-	/**
26
-	 * @param Controller $controller
27
-	 * @param string $methodName
28
-	 *
29
-	 * @throws OCSNotFoundException
30
-	 */
31
-	public function beforeController($controller, $methodName) {
32
-		if ($controller instanceof ShareAPIController) {
33
-			if (!$this->shareManager->shareApiEnabled()) {
34
-				throw new OCSNotFoundException($this->l->t('Share API is disabled'));
35
-			}
36
-		}
37
-	}
25
+    /**
26
+     * @param Controller $controller
27
+     * @param string $methodName
28
+     *
29
+     * @throws OCSNotFoundException
30
+     */
31
+    public function beforeController($controller, $methodName) {
32
+        if ($controller instanceof ShareAPIController) {
33
+            if (!$this->shareManager->shareApiEnabled()) {
34
+                throw new OCSNotFoundException($this->l->t('Share API is disabled'));
35
+            }
36
+        }
37
+    }
38 38
 
39
-	/**
40
-	 * @param Controller $controller
41
-	 * @param string $methodName
42
-	 * @param Response $response
43
-	 * @return Response
44
-	 */
45
-	public function afterController($controller, $methodName, Response $response) {
46
-		if ($controller instanceof ShareAPIController) {
47
-			/** @var ShareAPIController $controller */
48
-			$controller->cleanup();
49
-		}
39
+    /**
40
+     * @param Controller $controller
41
+     * @param string $methodName
42
+     * @param Response $response
43
+     * @return Response
44
+     */
45
+    public function afterController($controller, $methodName, Response $response) {
46
+        if ($controller instanceof ShareAPIController) {
47
+            /** @var ShareAPIController $controller */
48
+            $controller->cleanup();
49
+        }
50 50
 
51
-		return $response;
52
-	}
51
+        return $response;
52
+    }
53 53
 }
Please login to merge, or discard this patch.
apps/federation/lib/DbHandler.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -87,10 +87,10 @@  discard block
 block discarded – undo
87 87
 		$result = $query->execute();
88 88
 
89 89
 		if ($result) {
90
-			return (int)$this->connection->lastInsertId('*PREFIX*'.$this->dbTable);
90
+			return (int) $this->connection->lastInsertId('*PREFIX*'.$this->dbTable);
91 91
 		}
92 92
 
93
-		$message = 'Internal failure, Could not add trusted server: ' . $url;
93
+		$message = 'Internal failure, Could not add trusted server: '.$url;
94 94
 		$message_t = $this->IL10N->t('Could not add server');
95 95
 		throw new HintException($message, $message_t);
96 96
 	}
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
 		$result = $query->execute()->fetchAll();
125 125
 
126 126
 		if (empty($result)) {
127
-			throw new \Exception('No Server found with ID: ' . $id);
127
+			throw new \Exception('No Server found with ID: '.$id);
128 128
 		}
129 129
 
130 130
 		return $result[0];
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
 		$statement->closeCursor();
202 202
 
203 203
 		if (!isset($result['token'])) {
204
-			throw new \Exception('No token found for: ' . $url);
204
+			throw new \Exception('No token found for: '.$url);
205 205
 		}
206 206
 
207 207
 		return $result['token'];
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
 		$statement = $query->execute();
279 279
 		$result = $statement->fetch();
280 280
 		$statement->closeCursor();
281
-		return (int)$result['status'];
281
+		return (int) $result['status'];
282 282
 	}
283 283
 
284 284
 	/**
Please login to merge, or discard this patch.
Indentation   +289 added lines, -289 removed lines patch added patch discarded remove patch
@@ -41,294 +41,294 @@
 block discarded – undo
41 41
  */
42 42
 class DbHandler {
43 43
 
44
-	/** @var  IDBConnection */
45
-	private $connection;
46
-
47
-	/** @var  IL10N */
48
-	private $IL10N;
49
-
50
-	/** @var string  */
51
-	private $dbTable = 'trusted_servers';
52
-
53
-	/**
54
-	 * @param IDBConnection $connection
55
-	 * @param IL10N $il10n
56
-	 */
57
-	public function __construct(
58
-		IDBConnection $connection,
59
-		IL10N $il10n
60
-	) {
61
-		$this->connection = $connection;
62
-		$this->IL10N = $il10n;
63
-	}
64
-
65
-	/**
66
-	 * add server to the list of trusted servers
67
-	 *
68
-	 * @param string $url
69
-	 * @return int
70
-	 * @throws HintException
71
-	 */
72
-	public function addServer($url) {
73
-		$hash = $this->hash($url);
74
-		$url = rtrim($url, '/');
75
-		$query = $this->connection->getQueryBuilder();
76
-		$query->insert($this->dbTable)
77
-			->values(
78
-				[
79
-					'url' =>  $query->createParameter('url'),
80
-					'url_hash' => $query->createParameter('url_hash'),
81
-				]
82
-			)
83
-			->setParameter('url', $url)
84
-			->setParameter('url_hash', $hash);
85
-
86
-		$result = $query->execute();
87
-
88
-		if ($result) {
89
-			return (int)$this->connection->lastInsertId('*PREFIX*'.$this->dbTable);
90
-		}
91
-
92
-		$message = 'Internal failure, Could not add trusted server: ' . $url;
93
-		$message_t = $this->IL10N->t('Could not add server');
94
-		throw new HintException($message, $message_t);
95
-	}
96
-
97
-	/**
98
-	 * remove server from the list of trusted servers
99
-	 *
100
-	 * @param int $id
101
-	 */
102
-	public function removeServer($id) {
103
-		$query = $this->connection->getQueryBuilder();
104
-		$query->delete($this->dbTable)
105
-			->where($query->expr()->eq('id', $query->createParameter('id')))
106
-			->setParameter('id', $id);
107
-		$query->execute();
108
-	}
109
-
110
-	/**
111
-	 * get trusted server with given ID
112
-	 *
113
-	 * @param int $id
114
-	 * @return array
115
-	 * @throws \Exception
116
-	 */
117
-	public function getServerById($id) {
118
-		$query = $this->connection->getQueryBuilder();
119
-		$query->select('*')->from($this->dbTable)
120
-			->where($query->expr()->eq('id', $query->createParameter('id')))
121
-			->setParameter('id', $id);
122
-		$query->execute();
123
-		$result = $query->execute()->fetchAll();
124
-
125
-		if (empty($result)) {
126
-			throw new \Exception('No Server found with ID: ' . $id);
127
-		}
128
-
129
-		return $result[0];
130
-	}
131
-
132
-	/**
133
-	 * get all trusted servers
134
-	 *
135
-	 * @return array
136
-	 */
137
-	public function getAllServer() {
138
-		$query = $this->connection->getQueryBuilder();
139
-		$query->select(['url', 'url_hash', 'id', 'status', 'shared_secret', 'sync_token'])
140
-			->from($this->dbTable);
141
-		$statement = $query->execute();
142
-		$result = $statement->fetchAll();
143
-		$statement->closeCursor();
144
-		return $result;
145
-	}
146
-
147
-	/**
148
-	 * check if server already exists in the database table
149
-	 *
150
-	 * @param string $url
151
-	 * @return bool
152
-	 */
153
-	public function serverExists($url) {
154
-		$hash = $this->hash($url);
155
-		$query = $this->connection->getQueryBuilder();
156
-		$query->select('url')
157
-			->from($this->dbTable)
158
-			->where($query->expr()->eq('url_hash', $query->createParameter('url_hash')))
159
-			->setParameter('url_hash', $hash);
160
-		$statement = $query->execute();
161
-		$result = $statement->fetchAll();
162
-		$statement->closeCursor();
163
-
164
-		return !empty($result);
165
-	}
166
-
167
-	/**
168
-	 * write token to database. Token is used to exchange the secret
169
-	 *
170
-	 * @param string $url
171
-	 * @param string $token
172
-	 */
173
-	public function addToken($url, $token) {
174
-		$hash = $this->hash($url);
175
-		$query = $this->connection->getQueryBuilder();
176
-		$query->update($this->dbTable)
177
-			->set('token', $query->createParameter('token'))
178
-			->where($query->expr()->eq('url_hash', $query->createParameter('url_hash')))
179
-			->setParameter('url_hash', $hash)
180
-			->setParameter('token', $token);
181
-		$query->execute();
182
-	}
183
-
184
-	/**
185
-	 * get token stored in database
186
-	 *
187
-	 * @param string $url
188
-	 * @return string
189
-	 * @throws \Exception
190
-	 */
191
-	public function getToken($url) {
192
-		$hash = $this->hash($url);
193
-		$query = $this->connection->getQueryBuilder();
194
-		$query->select('token')->from($this->dbTable)
195
-			->where($query->expr()->eq('url_hash', $query->createParameter('url_hash')))
196
-			->setParameter('url_hash', $hash);
197
-
198
-		$statement = $query->execute();
199
-		$result = $statement->fetch();
200
-		$statement->closeCursor();
201
-
202
-		if (!isset($result['token'])) {
203
-			throw new \Exception('No token found for: ' . $url);
204
-		}
205
-
206
-		return $result['token'];
207
-	}
208
-
209
-	/**
210
-	 * add shared Secret to database
211
-	 *
212
-	 * @param string $url
213
-	 * @param string $sharedSecret
214
-	 */
215
-	public function addSharedSecret($url, $sharedSecret) {
216
-		$hash = $this->hash($url);
217
-		$query = $this->connection->getQueryBuilder();
218
-		$query->update($this->dbTable)
219
-			->set('shared_secret', $query->createParameter('sharedSecret'))
220
-			->where($query->expr()->eq('url_hash', $query->createParameter('url_hash')))
221
-			->setParameter('url_hash', $hash)
222
-			->setParameter('sharedSecret', $sharedSecret);
223
-		$query->execute();
224
-	}
225
-
226
-	/**
227
-	 * get shared secret from database
228
-	 *
229
-	 * @param string $url
230
-	 * @return string
231
-	 */
232
-	public function getSharedSecret($url) {
233
-		$hash = $this->hash($url);
234
-		$query = $this->connection->getQueryBuilder();
235
-		$query->select('shared_secret')->from($this->dbTable)
236
-			->where($query->expr()->eq('url_hash', $query->createParameter('url_hash')))
237
-			->setParameter('url_hash', $hash);
238
-
239
-		$statement = $query->execute();
240
-		$result = $statement->fetch();
241
-		$statement->closeCursor();
242
-		return $result['shared_secret'];
243
-	}
244
-
245
-	/**
246
-	 * set server status
247
-	 *
248
-	 * @param string $url
249
-	 * @param int $status
250
-	 * @param string|null $token
251
-	 */
252
-	public function setServerStatus($url, $status, $token = null) {
253
-		$hash = $this->hash($url);
254
-		$query = $this->connection->getQueryBuilder();
255
-		$query->update($this->dbTable)
256
-				->set('status', $query->createNamedParameter($status))
257
-				->where($query->expr()->eq('url_hash', $query->createNamedParameter($hash)));
258
-		if (!is_null($token)) {
259
-			$query->set('sync_token', $query->createNamedParameter($token));
260
-		}
261
-		$query->execute();
262
-	}
263
-
264
-	/**
265
-	 * get server status
266
-	 *
267
-	 * @param string $url
268
-	 * @return int
269
-	 */
270
-	public function getServerStatus($url) {
271
-		$hash = $this->hash($url);
272
-		$query = $this->connection->getQueryBuilder();
273
-		$query->select('status')->from($this->dbTable)
274
-				->where($query->expr()->eq('url_hash', $query->createParameter('url_hash')))
275
-				->setParameter('url_hash', $hash);
276
-
277
-		$statement = $query->execute();
278
-		$result = $statement->fetch();
279
-		$statement->closeCursor();
280
-		return (int)$result['status'];
281
-	}
282
-
283
-	/**
284
-	 * create hash from URL
285
-	 *
286
-	 * @param string $url
287
-	 * @return string
288
-	 */
289
-	protected function hash($url) {
290
-		$normalized = $this->normalizeUrl($url);
291
-		return sha1($normalized);
292
-	}
293
-
294
-	/**
295
-	 * normalize URL, used to create the sha1 hash
296
-	 *
297
-	 * @param string $url
298
-	 * @return string
299
-	 */
300
-	protected function normalizeUrl($url) {
301
-		$normalized = $url;
302
-
303
-		if (strpos($url, 'https://') === 0) {
304
-			$normalized = substr($url, strlen('https://'));
305
-		} elseif (strpos($url, 'http://') === 0) {
306
-			$normalized = substr($url, strlen('http://'));
307
-		}
308
-
309
-		$normalized = Filesystem::normalizePath($normalized);
310
-		$normalized = trim($normalized, '/');
311
-
312
-		return $normalized;
313
-	}
314
-
315
-	/**
316
-	 * @param $username
317
-	 * @param $password
318
-	 * @return bool
319
-	 */
320
-	public function auth($username, $password) {
321
-		if ($username !== 'system') {
322
-			return false;
323
-		}
324
-		$query = $this->connection->getQueryBuilder();
325
-		$query->select('url')->from($this->dbTable)
326
-				->where($query->expr()->eq('shared_secret', $query->createNamedParameter($password)));
327
-
328
-		$statement = $query->execute();
329
-		$result = $statement->fetch();
330
-		$statement->closeCursor();
331
-		return !empty($result);
332
-	}
44
+    /** @var  IDBConnection */
45
+    private $connection;
46
+
47
+    /** @var  IL10N */
48
+    private $IL10N;
49
+
50
+    /** @var string  */
51
+    private $dbTable = 'trusted_servers';
52
+
53
+    /**
54
+     * @param IDBConnection $connection
55
+     * @param IL10N $il10n
56
+     */
57
+    public function __construct(
58
+        IDBConnection $connection,
59
+        IL10N $il10n
60
+    ) {
61
+        $this->connection = $connection;
62
+        $this->IL10N = $il10n;
63
+    }
64
+
65
+    /**
66
+     * add server to the list of trusted servers
67
+     *
68
+     * @param string $url
69
+     * @return int
70
+     * @throws HintException
71
+     */
72
+    public function addServer($url) {
73
+        $hash = $this->hash($url);
74
+        $url = rtrim($url, '/');
75
+        $query = $this->connection->getQueryBuilder();
76
+        $query->insert($this->dbTable)
77
+            ->values(
78
+                [
79
+                    'url' =>  $query->createParameter('url'),
80
+                    'url_hash' => $query->createParameter('url_hash'),
81
+                ]
82
+            )
83
+            ->setParameter('url', $url)
84
+            ->setParameter('url_hash', $hash);
85
+
86
+        $result = $query->execute();
87
+
88
+        if ($result) {
89
+            return (int)$this->connection->lastInsertId('*PREFIX*'.$this->dbTable);
90
+        }
91
+
92
+        $message = 'Internal failure, Could not add trusted server: ' . $url;
93
+        $message_t = $this->IL10N->t('Could not add server');
94
+        throw new HintException($message, $message_t);
95
+    }
96
+
97
+    /**
98
+     * remove server from the list of trusted servers
99
+     *
100
+     * @param int $id
101
+     */
102
+    public function removeServer($id) {
103
+        $query = $this->connection->getQueryBuilder();
104
+        $query->delete($this->dbTable)
105
+            ->where($query->expr()->eq('id', $query->createParameter('id')))
106
+            ->setParameter('id', $id);
107
+        $query->execute();
108
+    }
109
+
110
+    /**
111
+     * get trusted server with given ID
112
+     *
113
+     * @param int $id
114
+     * @return array
115
+     * @throws \Exception
116
+     */
117
+    public function getServerById($id) {
118
+        $query = $this->connection->getQueryBuilder();
119
+        $query->select('*')->from($this->dbTable)
120
+            ->where($query->expr()->eq('id', $query->createParameter('id')))
121
+            ->setParameter('id', $id);
122
+        $query->execute();
123
+        $result = $query->execute()->fetchAll();
124
+
125
+        if (empty($result)) {
126
+            throw new \Exception('No Server found with ID: ' . $id);
127
+        }
128
+
129
+        return $result[0];
130
+    }
131
+
132
+    /**
133
+     * get all trusted servers
134
+     *
135
+     * @return array
136
+     */
137
+    public function getAllServer() {
138
+        $query = $this->connection->getQueryBuilder();
139
+        $query->select(['url', 'url_hash', 'id', 'status', 'shared_secret', 'sync_token'])
140
+            ->from($this->dbTable);
141
+        $statement = $query->execute();
142
+        $result = $statement->fetchAll();
143
+        $statement->closeCursor();
144
+        return $result;
145
+    }
146
+
147
+    /**
148
+     * check if server already exists in the database table
149
+     *
150
+     * @param string $url
151
+     * @return bool
152
+     */
153
+    public function serverExists($url) {
154
+        $hash = $this->hash($url);
155
+        $query = $this->connection->getQueryBuilder();
156
+        $query->select('url')
157
+            ->from($this->dbTable)
158
+            ->where($query->expr()->eq('url_hash', $query->createParameter('url_hash')))
159
+            ->setParameter('url_hash', $hash);
160
+        $statement = $query->execute();
161
+        $result = $statement->fetchAll();
162
+        $statement->closeCursor();
163
+
164
+        return !empty($result);
165
+    }
166
+
167
+    /**
168
+     * write token to database. Token is used to exchange the secret
169
+     *
170
+     * @param string $url
171
+     * @param string $token
172
+     */
173
+    public function addToken($url, $token) {
174
+        $hash = $this->hash($url);
175
+        $query = $this->connection->getQueryBuilder();
176
+        $query->update($this->dbTable)
177
+            ->set('token', $query->createParameter('token'))
178
+            ->where($query->expr()->eq('url_hash', $query->createParameter('url_hash')))
179
+            ->setParameter('url_hash', $hash)
180
+            ->setParameter('token', $token);
181
+        $query->execute();
182
+    }
183
+
184
+    /**
185
+     * get token stored in database
186
+     *
187
+     * @param string $url
188
+     * @return string
189
+     * @throws \Exception
190
+     */
191
+    public function getToken($url) {
192
+        $hash = $this->hash($url);
193
+        $query = $this->connection->getQueryBuilder();
194
+        $query->select('token')->from($this->dbTable)
195
+            ->where($query->expr()->eq('url_hash', $query->createParameter('url_hash')))
196
+            ->setParameter('url_hash', $hash);
197
+
198
+        $statement = $query->execute();
199
+        $result = $statement->fetch();
200
+        $statement->closeCursor();
201
+
202
+        if (!isset($result['token'])) {
203
+            throw new \Exception('No token found for: ' . $url);
204
+        }
205
+
206
+        return $result['token'];
207
+    }
208
+
209
+    /**
210
+     * add shared Secret to database
211
+     *
212
+     * @param string $url
213
+     * @param string $sharedSecret
214
+     */
215
+    public function addSharedSecret($url, $sharedSecret) {
216
+        $hash = $this->hash($url);
217
+        $query = $this->connection->getQueryBuilder();
218
+        $query->update($this->dbTable)
219
+            ->set('shared_secret', $query->createParameter('sharedSecret'))
220
+            ->where($query->expr()->eq('url_hash', $query->createParameter('url_hash')))
221
+            ->setParameter('url_hash', $hash)
222
+            ->setParameter('sharedSecret', $sharedSecret);
223
+        $query->execute();
224
+    }
225
+
226
+    /**
227
+     * get shared secret from database
228
+     *
229
+     * @param string $url
230
+     * @return string
231
+     */
232
+    public function getSharedSecret($url) {
233
+        $hash = $this->hash($url);
234
+        $query = $this->connection->getQueryBuilder();
235
+        $query->select('shared_secret')->from($this->dbTable)
236
+            ->where($query->expr()->eq('url_hash', $query->createParameter('url_hash')))
237
+            ->setParameter('url_hash', $hash);
238
+
239
+        $statement = $query->execute();
240
+        $result = $statement->fetch();
241
+        $statement->closeCursor();
242
+        return $result['shared_secret'];
243
+    }
244
+
245
+    /**
246
+     * set server status
247
+     *
248
+     * @param string $url
249
+     * @param int $status
250
+     * @param string|null $token
251
+     */
252
+    public function setServerStatus($url, $status, $token = null) {
253
+        $hash = $this->hash($url);
254
+        $query = $this->connection->getQueryBuilder();
255
+        $query->update($this->dbTable)
256
+                ->set('status', $query->createNamedParameter($status))
257
+                ->where($query->expr()->eq('url_hash', $query->createNamedParameter($hash)));
258
+        if (!is_null($token)) {
259
+            $query->set('sync_token', $query->createNamedParameter($token));
260
+        }
261
+        $query->execute();
262
+    }
263
+
264
+    /**
265
+     * get server status
266
+     *
267
+     * @param string $url
268
+     * @return int
269
+     */
270
+    public function getServerStatus($url) {
271
+        $hash = $this->hash($url);
272
+        $query = $this->connection->getQueryBuilder();
273
+        $query->select('status')->from($this->dbTable)
274
+                ->where($query->expr()->eq('url_hash', $query->createParameter('url_hash')))
275
+                ->setParameter('url_hash', $hash);
276
+
277
+        $statement = $query->execute();
278
+        $result = $statement->fetch();
279
+        $statement->closeCursor();
280
+        return (int)$result['status'];
281
+    }
282
+
283
+    /**
284
+     * create hash from URL
285
+     *
286
+     * @param string $url
287
+     * @return string
288
+     */
289
+    protected function hash($url) {
290
+        $normalized = $this->normalizeUrl($url);
291
+        return sha1($normalized);
292
+    }
293
+
294
+    /**
295
+     * normalize URL, used to create the sha1 hash
296
+     *
297
+     * @param string $url
298
+     * @return string
299
+     */
300
+    protected function normalizeUrl($url) {
301
+        $normalized = $url;
302
+
303
+        if (strpos($url, 'https://') === 0) {
304
+            $normalized = substr($url, strlen('https://'));
305
+        } elseif (strpos($url, 'http://') === 0) {
306
+            $normalized = substr($url, strlen('http://'));
307
+        }
308
+
309
+        $normalized = Filesystem::normalizePath($normalized);
310
+        $normalized = trim($normalized, '/');
311
+
312
+        return $normalized;
313
+    }
314
+
315
+    /**
316
+     * @param $username
317
+     * @param $password
318
+     * @return bool
319
+     */
320
+    public function auth($username, $password) {
321
+        if ($username !== 'system') {
322
+            return false;
323
+        }
324
+        $query = $this->connection->getQueryBuilder();
325
+        $query->select('url')->from($this->dbTable)
326
+                ->where($query->expr()->eq('shared_secret', $query->createNamedParameter($password)));
327
+
328
+        $statement = $query->execute();
329
+        $result = $statement->fetch();
330
+        $statement->closeCursor();
331
+        return !empty($result);
332
+    }
333 333
 
334 334
 }
Please login to merge, or discard this patch.
apps/user_ldap/lib/Migration/UUIDFixUser.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -30,9 +30,9 @@
 block discarded – undo
30 30
 use OCP\IConfig;
31 31
 
32 32
 class UUIDFixUser extends UUIDFix {
33
-	public function __construct(UserMapping $mapper, LDAP $ldap, IConfig $config, Helper $helper) {
34
-		$this->mapper = $mapper;
35
-		$groupPluginManager = \OC::$server->query('LDAPGroupPluginManager');
36
-		$this->proxy = new Group_Proxy($helper->getServerConfigurationPrefixes(true), $ldap, $groupPluginManager);
37
-	}
33
+    public function __construct(UserMapping $mapper, LDAP $ldap, IConfig $config, Helper $helper) {
34
+        $this->mapper = $mapper;
35
+        $groupPluginManager = \OC::$server->query('LDAPGroupPluginManager');
36
+        $this->proxy = new Group_Proxy($helper->getServerConfigurationPrefixes(true), $ldap, $groupPluginManager);
37
+    }
38 38
 }
Please login to merge, or discard this patch.
lib/private/Lockdown/Filesystem/NullStorage.php 1 patch
Indentation   +114 added lines, -114 removed lines patch added patch discarded remove patch
@@ -25,155 +25,155 @@
 block discarded – undo
25 25
 use OCP\Files\Storage\IStorage;
26 26
 
27 27
 class NullStorage extends Common {
28
-	public function __construct($parameters) {
29
-		parent::__construct($parameters);
30
-	}
28
+    public function __construct($parameters) {
29
+        parent::__construct($parameters);
30
+    }
31 31
 
32
-	public function getId() {
33
-		return 'null';
34
-	}
32
+    public function getId() {
33
+        return 'null';
34
+    }
35 35
 
36
-	public function mkdir($path) {
37
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
38
-	}
36
+    public function mkdir($path) {
37
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
38
+    }
39 39
 
40
-	public function rmdir($path) {
41
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
42
-	}
40
+    public function rmdir($path) {
41
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
42
+    }
43 43
 
44
-	public function opendir($path) {
45
-		return new IteratorDirectory([]);
46
-	}
44
+    public function opendir($path) {
45
+        return new IteratorDirectory([]);
46
+    }
47 47
 
48
-	public function is_dir($path) {
49
-		return $path === '';
50
-	}
48
+    public function is_dir($path) {
49
+        return $path === '';
50
+    }
51 51
 
52
-	public function is_file($path) {
53
-		return false;
54
-	}
52
+    public function is_file($path) {
53
+        return false;
54
+    }
55 55
 
56
-	public function stat($path) {
57
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
58
-	}
56
+    public function stat($path) {
57
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
58
+    }
59 59
 
60
-	public function filetype($path) {
61
-		return ($path === '') ? 'dir' : false;
62
-	}
60
+    public function filetype($path) {
61
+        return ($path === '') ? 'dir' : false;
62
+    }
63 63
 
64
-	public function filesize($path) {
65
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
66
-	}
64
+    public function filesize($path) {
65
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
66
+    }
67 67
 
68
-	public function isCreatable($path) {
69
-		return false;
70
-	}
68
+    public function isCreatable($path) {
69
+        return false;
70
+    }
71 71
 
72
-	public function isReadable($path) {
73
-		return $path === '';
74
-	}
72
+    public function isReadable($path) {
73
+        return $path === '';
74
+    }
75 75
 
76
-	public function isUpdatable($path) {
77
-		return false;
78
-	}
76
+    public function isUpdatable($path) {
77
+        return false;
78
+    }
79 79
 
80
-	public function isDeletable($path) {
81
-		return false;
82
-	}
80
+    public function isDeletable($path) {
81
+        return false;
82
+    }
83 83
 
84
-	public function isSharable($path) {
85
-		return false;
86
-	}
84
+    public function isSharable($path) {
85
+        return false;
86
+    }
87 87
 
88
-	public function getPermissions($path) {
89
-		return null;
90
-	}
88
+    public function getPermissions($path) {
89
+        return null;
90
+    }
91 91
 
92
-	public function file_exists($path) {
93
-		return $path === '';
94
-	}
92
+    public function file_exists($path) {
93
+        return $path === '';
94
+    }
95 95
 
96
-	public function filemtime($path) {
97
-		return ($path === '') ? time() : false;
98
-	}
96
+    public function filemtime($path) {
97
+        return ($path === '') ? time() : false;
98
+    }
99 99
 
100
-	public function file_get_contents($path) {
101
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
102
-	}
100
+    public function file_get_contents($path) {
101
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
102
+    }
103 103
 
104
-	public function file_put_contents($path, $data) {
105
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
106
-	}
104
+    public function file_put_contents($path, $data) {
105
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
106
+    }
107 107
 
108
-	public function unlink($path) {
109
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
110
-	}
108
+    public function unlink($path) {
109
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
110
+    }
111 111
 
112
-	public function rename($path1, $path2) {
113
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
114
-	}
112
+    public function rename($path1, $path2) {
113
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
114
+    }
115 115
 
116
-	public function copy($path1, $path2) {
117
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
118
-	}
116
+    public function copy($path1, $path2) {
117
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
118
+    }
119 119
 
120
-	public function fopen($path, $mode) {
121
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
122
-	}
120
+    public function fopen($path, $mode) {
121
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
122
+    }
123 123
 
124
-	public function getMimeType($path) {
125
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
126
-	}
124
+    public function getMimeType($path) {
125
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
126
+    }
127 127
 
128
-	public function hash($type, $path, $raw = false) {
129
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
130
-	}
128
+    public function hash($type, $path, $raw = false) {
129
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
130
+    }
131 131
 
132
-	public function free_space($path) {
133
-		return FileInfo::SPACE_UNKNOWN;
134
-	}
132
+    public function free_space($path) {
133
+        return FileInfo::SPACE_UNKNOWN;
134
+    }
135 135
 
136
-	public function touch($path, $mtime = null) {
137
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
138
-	}
136
+    public function touch($path, $mtime = null) {
137
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
138
+    }
139 139
 
140
-	public function getLocalFile($path) {
141
-		return false;
142
-	}
140
+    public function getLocalFile($path) {
141
+        return false;
142
+    }
143 143
 
144
-	public function hasUpdated($path, $time) {
145
-		return false;
146
-	}
144
+    public function hasUpdated($path, $time) {
145
+        return false;
146
+    }
147 147
 
148
-	public function getETag($path) {
149
-		return '';
150
-	}
148
+    public function getETag($path) {
149
+        return '';
150
+    }
151 151
 
152
-	public function isLocal() {
153
-		return false;
154
-	}
152
+    public function isLocal() {
153
+        return false;
154
+    }
155 155
 
156
-	public function getDirectDownload($path) {
157
-		return false;
158
-	}
156
+    public function getDirectDownload($path) {
157
+        return false;
158
+    }
159 159
 
160
-	public function copyFromStorage(IStorage $sourceStorage, $sourceInternalPath, $targetInternalPath, $preserveMtime = false) {
161
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
162
-	}
160
+    public function copyFromStorage(IStorage $sourceStorage, $sourceInternalPath, $targetInternalPath, $preserveMtime = false) {
161
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
162
+    }
163 163
 
164
-	public function moveFromStorage(IStorage $sourceStorage, $sourceInternalPath, $targetInternalPath) {
165
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
166
-	}
164
+    public function moveFromStorage(IStorage $sourceStorage, $sourceInternalPath, $targetInternalPath) {
165
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
166
+    }
167 167
 
168
-	public function test() {
169
-		return true;
170
-	}
168
+    public function test() {
169
+        return true;
170
+    }
171 171
 
172
-	public function getOwner($path) {
173
-		return null;
174
-	}
172
+    public function getOwner($path) {
173
+        return null;
174
+    }
175 175
 
176
-	public function getCache($path = '', $storage = null) {
177
-		return new NullCache();
178
-	}
176
+    public function getCache($path = '', $storage = null) {
177
+        return new NullCache();
178
+    }
179 179
 }
Please login to merge, or discard this patch.
lib/private/Files/Storage/FailedStorage.php 1 patch
Indentation   +165 added lines, -165 removed lines patch added patch discarded remove patch
@@ -34,185 +34,185 @@
 block discarded – undo
34 34
  */
35 35
 class FailedStorage extends Common {
36 36
 
37
-	/** @var \Exception */
38
-	protected $e;
39
-
40
-	/**
41
-	 * @param array $params ['exception' => \Exception]
42
-	 */
43
-	public function __construct($params) {
44
-		$this->e = $params['exception'];
45
-		if (!$this->e) {
46
-			throw new \InvalidArgumentException('Missing "exception" argument in FailedStorage constructor');
47
-		}
48
-	}
49
-
50
-	public function getId() {
51
-		// we can't return anything sane here
52
-		return 'failedstorage';
53
-	}
54
-
55
-	public function mkdir($path) {
56
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
57
-	}
58
-
59
-	public function rmdir($path) {
60
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
61
-	}
62
-
63
-	public function opendir($path) {
64
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
65
-	}
66
-
67
-	public function is_dir($path) {
68
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
69
-	}
70
-
71
-	public function is_file($path) {
72
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
73
-	}
74
-
75
-	public function stat($path) {
76
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
77
-	}
78
-
79
-	public function filetype($path) {
80
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
81
-	}
82
-
83
-	public function filesize($path) {
84
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
85
-	}
86
-
87
-	public function isCreatable($path) {
88
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
89
-	}
90
-
91
-	public function isReadable($path) {
92
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
93
-	}
94
-
95
-	public function isUpdatable($path) {
96
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
97
-	}
98
-
99
-	public function isDeletable($path) {
100
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
101
-	}
102
-
103
-	public function isSharable($path) {
104
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
105
-	}
106
-
107
-	public function getPermissions($path) {
108
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
109
-	}
110
-
111
-	public function file_exists($path) {
112
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
113
-	}
114
-
115
-	public function filemtime($path) {
116
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
117
-	}
118
-
119
-	public function file_get_contents($path) {
120
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
121
-	}
122
-
123
-	public function file_put_contents($path, $data) {
124
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
125
-	}
126
-
127
-	public function unlink($path) {
128
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
129
-	}
130
-
131
-	public function rename($path1, $path2) {
132
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
133
-	}
134
-
135
-	public function copy($path1, $path2) {
136
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
137
-	}
138
-
139
-	public function fopen($path, $mode) {
140
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
141
-	}
142
-
143
-	public function getMimeType($path) {
144
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
145
-	}
146
-
147
-	public function hash($type, $path, $raw = false) {
148
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
149
-	}
150
-
151
-	public function free_space($path) {
152
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
153
-	}
37
+    /** @var \Exception */
38
+    protected $e;
39
+
40
+    /**
41
+     * @param array $params ['exception' => \Exception]
42
+     */
43
+    public function __construct($params) {
44
+        $this->e = $params['exception'];
45
+        if (!$this->e) {
46
+            throw new \InvalidArgumentException('Missing "exception" argument in FailedStorage constructor');
47
+        }
48
+    }
49
+
50
+    public function getId() {
51
+        // we can't return anything sane here
52
+        return 'failedstorage';
53
+    }
54
+
55
+    public function mkdir($path) {
56
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
57
+    }
58
+
59
+    public function rmdir($path) {
60
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
61
+    }
62
+
63
+    public function opendir($path) {
64
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
65
+    }
66
+
67
+    public function is_dir($path) {
68
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
69
+    }
70
+
71
+    public function is_file($path) {
72
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
73
+    }
74
+
75
+    public function stat($path) {
76
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
77
+    }
78
+
79
+    public function filetype($path) {
80
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
81
+    }
82
+
83
+    public function filesize($path) {
84
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
85
+    }
86
+
87
+    public function isCreatable($path) {
88
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
89
+    }
90
+
91
+    public function isReadable($path) {
92
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
93
+    }
94
+
95
+    public function isUpdatable($path) {
96
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
97
+    }
98
+
99
+    public function isDeletable($path) {
100
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
101
+    }
102
+
103
+    public function isSharable($path) {
104
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
105
+    }
106
+
107
+    public function getPermissions($path) {
108
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
109
+    }
110
+
111
+    public function file_exists($path) {
112
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
113
+    }
114
+
115
+    public function filemtime($path) {
116
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
117
+    }
118
+
119
+    public function file_get_contents($path) {
120
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
121
+    }
122
+
123
+    public function file_put_contents($path, $data) {
124
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
125
+    }
126
+
127
+    public function unlink($path) {
128
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
129
+    }
130
+
131
+    public function rename($path1, $path2) {
132
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
133
+    }
134
+
135
+    public function copy($path1, $path2) {
136
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
137
+    }
138
+
139
+    public function fopen($path, $mode) {
140
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
141
+    }
142
+
143
+    public function getMimeType($path) {
144
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
145
+    }
146
+
147
+    public function hash($type, $path, $raw = false) {
148
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
149
+    }
150
+
151
+    public function free_space($path) {
152
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
153
+    }
154 154
 
155
-	public function search($query) {
156
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
157
-	}
155
+    public function search($query) {
156
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
157
+    }
158 158
 
159
-	public function touch($path, $mtime = null) {
160
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
161
-	}
159
+    public function touch($path, $mtime = null) {
160
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
161
+    }
162 162
 
163
-	public function getLocalFile($path) {
164
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
165
-	}
163
+    public function getLocalFile($path) {
164
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
165
+    }
166 166
 
167
-	public function getLocalFolder($path) {
168
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
169
-	}
167
+    public function getLocalFolder($path) {
168
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
169
+    }
170 170
 
171
-	public function hasUpdated($path, $time) {
172
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
173
-	}
171
+    public function hasUpdated($path, $time) {
172
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
173
+    }
174 174
 
175
-	public function getETag($path) {
176
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
177
-	}
175
+    public function getETag($path) {
176
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
177
+    }
178 178
 
179
-	public function getDirectDownload($path) {
180
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
181
-	}
179
+    public function getDirectDownload($path) {
180
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
181
+    }
182 182
 
183
-	public function verifyPath($path, $fileName) {
184
-		return true;
185
-	}
183
+    public function verifyPath($path, $fileName) {
184
+        return true;
185
+    }
186 186
 
187
-	public function copyFromStorage(IStorage $sourceStorage, $sourceInternalPath, $targetInternalPath, $preserveMtime = false) {
188
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
189
-	}
187
+    public function copyFromStorage(IStorage $sourceStorage, $sourceInternalPath, $targetInternalPath, $preserveMtime = false) {
188
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
189
+    }
190 190
 
191
-	public function moveFromStorage(IStorage $sourceStorage, $sourceInternalPath, $targetInternalPath) {
192
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
193
-	}
191
+    public function moveFromStorage(IStorage $sourceStorage, $sourceInternalPath, $targetInternalPath) {
192
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
193
+    }
194 194
 
195
-	public function acquireLock($path, $type, ILockingProvider $provider) {
196
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
197
-	}
195
+    public function acquireLock($path, $type, ILockingProvider $provider) {
196
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
197
+    }
198 198
 
199
-	public function releaseLock($path, $type, ILockingProvider $provider) {
200
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
201
-	}
199
+    public function releaseLock($path, $type, ILockingProvider $provider) {
200
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
201
+    }
202 202
 
203
-	public function changeLock($path, $type, ILockingProvider $provider) {
204
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
205
-	}
203
+    public function changeLock($path, $type, ILockingProvider $provider) {
204
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
205
+    }
206 206
 
207
-	public function getAvailability() {
208
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
209
-	}
207
+    public function getAvailability() {
208
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
209
+    }
210 210
 
211
-	public function setAvailability($isAvailable) {
212
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
213
-	}
211
+    public function setAvailability($isAvailable) {
212
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
213
+    }
214 214
 
215
-	public function getCache($path = '', $storage = null) {
216
-		return new FailedCache();
217
-	}
215
+    public function getCache($path = '', $storage = null) {
216
+        return new FailedCache();
217
+    }
218 218
 }
Please login to merge, or discard this patch.
apps/files_sharing/lib/Middleware/ShareInfoMiddleware.php 1 patch
Indentation   +58 added lines, -58 removed lines patch added patch discarded remove patch
@@ -13,74 +13,74 @@
 block discarded – undo
13 13
 use OCP\Share\IManager;
14 14
 
15 15
 class ShareInfoMiddleware extends Middleware {
16
-	/** @var IManager */
17
-	private $shareManager;
16
+    /** @var IManager */
17
+    private $shareManager;
18 18
 
19
-	public function __construct(IManager $shareManager) {
20
-		$this->shareManager = $shareManager;
21
-	}
19
+    public function __construct(IManager $shareManager) {
20
+        $this->shareManager = $shareManager;
21
+    }
22 22
 
23
-	/**
24
-	 * @param Controller $controller
25
-	 * @param string $methodName
26
-	 * @throws S2SException
27
-	 */
28
-	public function beforeController($controller, $methodName) {
29
-		if (!($controller instanceof ShareInfoController)) {
30
-			return;
31
-		}
23
+    /**
24
+     * @param Controller $controller
25
+     * @param string $methodName
26
+     * @throws S2SException
27
+     */
28
+    public function beforeController($controller, $methodName) {
29
+        if (!($controller instanceof ShareInfoController)) {
30
+            return;
31
+        }
32 32
 
33
-		if (!$this->shareManager->outgoingServer2ServerSharesAllowed()) {
34
-			throw new S2SException();
35
-		}
36
-	}
33
+        if (!$this->shareManager->outgoingServer2ServerSharesAllowed()) {
34
+            throw new S2SException();
35
+        }
36
+    }
37 37
 
38
-	/**
39
-	 * @param Controller $controller
40
-	 * @param string $methodName
41
-	 * @param \Exception $exception
42
-	 * @throws \Exception
43
-	 * @return Response
44
-	 */
45
-	public function afterException($controller, $methodName, \Exception $exception) {
46
-		if (!($controller instanceof ShareInfoController)) {
47
-			throw $exception;
48
-		}
38
+    /**
39
+     * @param Controller $controller
40
+     * @param string $methodName
41
+     * @param \Exception $exception
42
+     * @throws \Exception
43
+     * @return Response
44
+     */
45
+    public function afterException($controller, $methodName, \Exception $exception) {
46
+        if (!($controller instanceof ShareInfoController)) {
47
+            throw $exception;
48
+        }
49 49
 
50
-		if ($exception instanceof S2SException) {
51
-			return new JSONResponse([], Http::STATUS_NOT_FOUND);
52
-		}
50
+        if ($exception instanceof S2SException) {
51
+            return new JSONResponse([], Http::STATUS_NOT_FOUND);
52
+        }
53 53
 
54
-		throw $exception;
55
-	}
54
+        throw $exception;
55
+    }
56 56
 
57
-	/**
58
-	 * @param Controller $controller
59
-	 * @param string $methodName
60
-	 * @param Response $response
61
-	 * @return Response
62
-	 */
63
-	public function afterController($controller, $methodName, Response $response) {
64
-		if (!($controller instanceof ShareInfoController)) {
65
-			return $response;
66
-		}
57
+    /**
58
+     * @param Controller $controller
59
+     * @param string $methodName
60
+     * @param Response $response
61
+     * @return Response
62
+     */
63
+    public function afterController($controller, $methodName, Response $response) {
64
+        if (!($controller instanceof ShareInfoController)) {
65
+            return $response;
66
+        }
67 67
 
68
-		if (!($response instanceof JSONResponse)) {
69
-			return $response;
70
-		}
68
+        if (!($response instanceof JSONResponse)) {
69
+            return $response;
70
+        }
71 71
 
72
-		$data = $response->getData();
73
-		$status = 'error';
72
+        $data = $response->getData();
73
+        $status = 'error';
74 74
 
75
-		if ($response->getStatus() === Http::STATUS_OK) {
76
-			$status = 'success';
77
-		}
75
+        if ($response->getStatus() === Http::STATUS_OK) {
76
+            $status = 'success';
77
+        }
78 78
 
79
-		$response->setData([
80
-			'data' => $data,
81
-			'status' => $status,
82
-		]);
79
+        $response->setData([
80
+            'data' => $data,
81
+            'status' => $status,
82
+        ]);
83 83
 
84
-		return $response;
85
-	}
84
+        return $response;
85
+    }
86 86
 }
Please login to merge, or discard this patch.
lib/private/Repair/Owncloud/DropAccountTermsTable.php 1 patch
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -29,32 +29,32 @@
 block discarded – undo
29 29
 
30 30
 class DropAccountTermsTable implements IRepairStep {
31 31
 
32
-	/** @var IDBConnection */
33
-	protected $db;
34
-
35
-	/**
36
-	 * @param IDBConnection $db
37
-	 */
38
-	public function __construct(IDBConnection $db) {
39
-		$this->db = $db;
40
-	}
41
-
42
-	/**
43
-	 * @return string
44
-	 */
45
-	public function getName() {
46
-		return 'Drop account terms table when migrating from ownCloud';
47
-	}
48
-
49
-	/**
50
-	 * @param IOutput $output
51
-	 */
52
-	public function run(IOutput $output) {
53
-		if (!$this->db->tableExists('account_terms')) {
54
-			return;
55
-		}
56
-
57
-		$this->db->dropTable('account_terms');
58
-	}
32
+    /** @var IDBConnection */
33
+    protected $db;
34
+
35
+    /**
36
+     * @param IDBConnection $db
37
+     */
38
+    public function __construct(IDBConnection $db) {
39
+        $this->db = $db;
40
+    }
41
+
42
+    /**
43
+     * @return string
44
+     */
45
+    public function getName() {
46
+        return 'Drop account terms table when migrating from ownCloud';
47
+    }
48
+
49
+    /**
50
+     * @param IOutput $output
51
+     */
52
+    public function run(IOutput $output) {
53
+        if (!$this->db->tableExists('account_terms')) {
54
+            return;
55
+        }
56
+
57
+        $this->db->dropTable('account_terms');
58
+    }
59 59
 }
60 60
 
Please login to merge, or discard this patch.