@@ -23,10 +23,10 @@ |
||
23 | 23 | namespace OCA\Encryption\Hooks\Contracts; |
24 | 24 | |
25 | 25 | interface IHook { |
26 | - /** |
|
27 | - * Connects Hooks |
|
28 | - * |
|
29 | - * @return null |
|
30 | - */ |
|
31 | - public function addHooks(); |
|
26 | + /** |
|
27 | + * Connects Hooks |
|
28 | + * |
|
29 | + * @return null |
|
30 | + */ |
|
31 | + public function addHooks(); |
|
32 | 32 | } |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | <p id="encryptHomeStorageSetting"> |
14 | 14 | <input type="checkbox" class="checkbox" name="encrypt_home_storage" id="encryptHomeStorage" |
15 | 15 | value="1" <?php if ($_['encryptHomeStorage']) { |
16 | - print_unescaped('checked="checked"'); |
|
16 | + print_unescaped('checked="checked"'); |
|
17 | 17 | } ?> /> |
18 | 18 | <label for="encryptHomeStorage"><?php p($l->t('Encrypt the home storage'));?></label></br> |
19 | 19 | <em><?php p($l->t("Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted")); ?></em> |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | <br/><br/> |
46 | 46 | |
47 | 47 | <p name="changeRecoveryPasswordBlock" id="encryptionChangeRecoveryKey" <?php if ($_['recoveryEnabled'] === '0') { |
48 | - print_unescaped('class="hidden"'); |
|
48 | + print_unescaped('class="hidden"'); |
|
49 | 49 | }?>> |
50 | 50 | <?php p($l->t("Change recovery key password:")); ?> |
51 | 51 | <span class="msg"></span> |
@@ -5,7 +5,7 @@ |
||
5 | 5 | use OCP\AppFramework\Http; |
6 | 6 | |
7 | 7 | class NotSubAdminException extends \Exception { |
8 | - public function __construct() { |
|
9 | - parent::__construct('Logged in user must be at least a sub admin', Http::STATUS_FORBIDDEN); |
|
10 | - } |
|
8 | + public function __construct() { |
|
9 | + parent::__construct('Logged in user must be at least a sub admin', Http::STATUS_FORBIDDEN); |
|
10 | + } |
|
11 | 11 | } |
@@ -26,7 +26,7 @@ |
||
26 | 26 | namespace OC\Core\Command\Background; |
27 | 27 | |
28 | 28 | class Ajax extends Base { |
29 | - protected function getMode() { |
|
30 | - return 'ajax'; |
|
31 | - } |
|
29 | + protected function getMode() { |
|
30 | + return 'ajax'; |
|
31 | + } |
|
32 | 32 | } |
@@ -26,7 +26,7 @@ |
||
26 | 26 | namespace OC\Core\Command\Background; |
27 | 27 | |
28 | 28 | class Cron extends Base { |
29 | - protected function getMode() { |
|
30 | - return 'cron'; |
|
31 | - } |
|
29 | + protected function getMode() { |
|
30 | + return 'cron'; |
|
31 | + } |
|
32 | 32 | } |
@@ -26,7 +26,7 @@ |
||
26 | 26 | namespace OC\Core\Command\Background; |
27 | 27 | |
28 | 28 | class WebCron extends Base { |
29 | - protected function getMode() { |
|
30 | - return 'webcron'; |
|
31 | - } |
|
29 | + protected function getMode() { |
|
30 | + return 'webcron'; |
|
31 | + } |
|
32 | 32 | } |
@@ -11,43 +11,43 @@ |
||
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 | } |
@@ -13,74 +13,74 @@ |
||
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 | } |
@@ -27,18 +27,18 @@ |
||
27 | 27 | */ |
28 | 28 | class InvalidAuth extends AuthMechanism { |
29 | 29 | |
30 | - /** |
|
31 | - * Constructs a new InvalidAuth with the id of the invalid auth |
|
32 | - * for display purposes |
|
33 | - * |
|
34 | - * @param string $invalidId invalid id |
|
35 | - */ |
|
36 | - public function __construct($invalidId) { |
|
37 | - $this |
|
38 | - ->setIdentifier($invalidId) |
|
39 | - ->setScheme(self::SCHEME_NULL) |
|
40 | - ->setText('Unknown auth mechanism backend ' . $invalidId) |
|
41 | - ; |
|
42 | - } |
|
30 | + /** |
|
31 | + * Constructs a new InvalidAuth with the id of the invalid auth |
|
32 | + * for display purposes |
|
33 | + * |
|
34 | + * @param string $invalidId invalid id |
|
35 | + */ |
|
36 | + public function __construct($invalidId) { |
|
37 | + $this |
|
38 | + ->setIdentifier($invalidId) |
|
39 | + ->setScheme(self::SCHEME_NULL) |
|
40 | + ->setText('Unknown auth mechanism backend ' . $invalidId) |
|
41 | + ; |
|
42 | + } |
|
43 | 43 | |
44 | 44 | } |