@@ -64,7 +64,7 @@ |
||
64 | 64 | return; |
65 | 65 | } |
66 | 66 | |
67 | - if (isset($property) && $property->getValue() !== (string)$newValue) { |
|
67 | + if (isset($property) && $property->getValue() !== (string) $newValue) { |
|
68 | 68 | $property->setValue($newValue); |
69 | 69 | $this->accountManager->updateAccount($account); |
70 | 70 | } |
@@ -17,42 +17,42 @@ |
||
17 | 17 | * @template-implements IEventListener<UserChangedEvent> |
18 | 18 | */ |
19 | 19 | class Hooks implements IEventListener { |
20 | - public function __construct( |
|
21 | - private LoggerInterface $logger, |
|
22 | - private IAccountManager $accountManager, |
|
23 | - ) { |
|
24 | - } |
|
20 | + public function __construct( |
|
21 | + private LoggerInterface $logger, |
|
22 | + private IAccountManager $accountManager, |
|
23 | + ) { |
|
24 | + } |
|
25 | 25 | |
26 | - /** |
|
27 | - * update accounts table if email address or display name was changed from outside |
|
28 | - */ |
|
29 | - public function changeUserHook(IUser $user, string $feature, $newValue): void { |
|
30 | - $account = $this->accountManager->getAccount($user); |
|
26 | + /** |
|
27 | + * update accounts table if email address or display name was changed from outside |
|
28 | + */ |
|
29 | + public function changeUserHook(IUser $user, string $feature, $newValue): void { |
|
30 | + $account = $this->accountManager->getAccount($user); |
|
31 | 31 | |
32 | - try { |
|
33 | - switch ($feature) { |
|
34 | - case 'eMailAddress': |
|
35 | - $property = $account->getProperty(IAccountManager::PROPERTY_EMAIL); |
|
36 | - break; |
|
37 | - case 'displayName': |
|
38 | - $property = $account->getProperty(IAccountManager::PROPERTY_DISPLAYNAME); |
|
39 | - break; |
|
40 | - } |
|
41 | - } catch (PropertyDoesNotExistException $e) { |
|
42 | - $this->logger->debug($e->getMessage(), ['exception' => $e]); |
|
43 | - return; |
|
44 | - } |
|
32 | + try { |
|
33 | + switch ($feature) { |
|
34 | + case 'eMailAddress': |
|
35 | + $property = $account->getProperty(IAccountManager::PROPERTY_EMAIL); |
|
36 | + break; |
|
37 | + case 'displayName': |
|
38 | + $property = $account->getProperty(IAccountManager::PROPERTY_DISPLAYNAME); |
|
39 | + break; |
|
40 | + } |
|
41 | + } catch (PropertyDoesNotExistException $e) { |
|
42 | + $this->logger->debug($e->getMessage(), ['exception' => $e]); |
|
43 | + return; |
|
44 | + } |
|
45 | 45 | |
46 | - if (isset($property) && $property->getValue() !== (string)$newValue) { |
|
47 | - $property->setValue($newValue); |
|
48 | - $this->accountManager->updateAccount($account); |
|
49 | - } |
|
50 | - } |
|
46 | + if (isset($property) && $property->getValue() !== (string)$newValue) { |
|
47 | + $property->setValue($newValue); |
|
48 | + $this->accountManager->updateAccount($account); |
|
49 | + } |
|
50 | + } |
|
51 | 51 | |
52 | - public function handle(Event $event): void { |
|
53 | - if (!$event instanceof UserChangedEvent) { |
|
54 | - return; |
|
55 | - } |
|
56 | - $this->changeUserHook($event->getUser(), $event->getFeature(), $event->getValue()); |
|
57 | - } |
|
52 | + public function handle(Event $event): void { |
|
53 | + if (!$event instanceof UserChangedEvent) { |
|
54 | + return; |
|
55 | + } |
|
56 | + $this->changeUserHook($event->getUser(), $event->getFeature(), $event->getValue()); |
|
57 | + } |
|
58 | 58 | } |
@@ -29,107 +29,107 @@ |
||
29 | 29 | * @deprecated 23.0.0 |
30 | 30 | */ |
31 | 31 | interface IUser { |
32 | - /** |
|
33 | - * @return string |
|
34 | - * |
|
35 | - * @since 13.0.0 |
|
36 | - * @deprecated 23.0.0 |
|
37 | - */ |
|
38 | - public function getUserId(); |
|
32 | + /** |
|
33 | + * @return string |
|
34 | + * |
|
35 | + * @since 13.0.0 |
|
36 | + * @deprecated 23.0.0 |
|
37 | + */ |
|
38 | + public function getUserId(); |
|
39 | 39 | |
40 | - /** |
|
41 | - * @return string |
|
42 | - * |
|
43 | - * @since 13.0.0 |
|
44 | - * @deprecated 23.0.0 |
|
45 | - */ |
|
46 | - public function getEmail(); |
|
40 | + /** |
|
41 | + * @return string |
|
42 | + * |
|
43 | + * @since 13.0.0 |
|
44 | + * @deprecated 23.0.0 |
|
45 | + */ |
|
46 | + public function getEmail(); |
|
47 | 47 | |
48 | - /** |
|
49 | - * @return string |
|
50 | - * |
|
51 | - * @since 13.0.0 |
|
52 | - * @deprecated 23.0.0 |
|
53 | - */ |
|
54 | - public function getDisplayName(); |
|
48 | + /** |
|
49 | + * @return string |
|
50 | + * |
|
51 | + * @since 13.0.0 |
|
52 | + * @deprecated 23.0.0 |
|
53 | + */ |
|
54 | + public function getDisplayName(); |
|
55 | 55 | |
56 | - /** |
|
57 | - * @return string |
|
58 | - * |
|
59 | - * @since 13.0.0 |
|
60 | - * @deprecated 23.0.0 |
|
61 | - */ |
|
62 | - public function getPhone(); |
|
56 | + /** |
|
57 | + * @return string |
|
58 | + * |
|
59 | + * @since 13.0.0 |
|
60 | + * @deprecated 23.0.0 |
|
61 | + */ |
|
62 | + public function getPhone(); |
|
63 | 63 | |
64 | - /** |
|
65 | - * @return string |
|
66 | - * |
|
67 | - * @since 13.0.0 |
|
68 | - * @deprecated 23.0.0 |
|
69 | - */ |
|
70 | - public function getAddress(); |
|
64 | + /** |
|
65 | + * @return string |
|
66 | + * |
|
67 | + * @since 13.0.0 |
|
68 | + * @deprecated 23.0.0 |
|
69 | + */ |
|
70 | + public function getAddress(); |
|
71 | 71 | |
72 | - /** |
|
73 | - * @return string |
|
74 | - * |
|
75 | - * @since 13.0.0 |
|
76 | - * @deprecated 23.0.0 |
|
77 | - */ |
|
78 | - public function getWebsite(); |
|
72 | + /** |
|
73 | + * @return string |
|
74 | + * |
|
75 | + * @since 13.0.0 |
|
76 | + * @deprecated 23.0.0 |
|
77 | + */ |
|
78 | + public function getWebsite(); |
|
79 | 79 | |
80 | - /** |
|
81 | - * @return string |
|
82 | - * |
|
83 | - * @since 13.0.0 |
|
84 | - * @deprecated 23.0.0 |
|
85 | - */ |
|
86 | - public function getTwitter(); |
|
80 | + /** |
|
81 | + * @return string |
|
82 | + * |
|
83 | + * @since 13.0.0 |
|
84 | + * @deprecated 23.0.0 |
|
85 | + */ |
|
86 | + public function getTwitter(); |
|
87 | 87 | |
88 | - /** |
|
89 | - * @return string[] |
|
90 | - * |
|
91 | - * @since 13.0.0 |
|
92 | - * @deprecated 23.0.0 |
|
93 | - */ |
|
94 | - public function getGroups(); |
|
88 | + /** |
|
89 | + * @return string[] |
|
90 | + * |
|
91 | + * @since 13.0.0 |
|
92 | + * @deprecated 23.0.0 |
|
93 | + */ |
|
94 | + public function getGroups(); |
|
95 | 95 | |
96 | - /** |
|
97 | - * @return string |
|
98 | - * |
|
99 | - * @since 13.0.0 |
|
100 | - * @deprecated 23.0.0 |
|
101 | - */ |
|
102 | - public function getLanguage(); |
|
96 | + /** |
|
97 | + * @return string |
|
98 | + * |
|
99 | + * @since 13.0.0 |
|
100 | + * @deprecated 23.0.0 |
|
101 | + */ |
|
102 | + public function getLanguage(); |
|
103 | 103 | |
104 | - /** |
|
105 | - * @return int |
|
106 | - * |
|
107 | - * @since 13.0.0 |
|
108 | - * @deprecated 23.0.0 |
|
109 | - */ |
|
110 | - public function getUsedSpace(); |
|
104 | + /** |
|
105 | + * @return int |
|
106 | + * |
|
107 | + * @since 13.0.0 |
|
108 | + * @deprecated 23.0.0 |
|
109 | + */ |
|
110 | + public function getUsedSpace(); |
|
111 | 111 | |
112 | - /** |
|
113 | - * @return int |
|
114 | - * |
|
115 | - * @since 13.0.0 |
|
116 | - * @deprecated 23.0.0 |
|
117 | - */ |
|
118 | - public function getFreeSpace(); |
|
112 | + /** |
|
113 | + * @return int |
|
114 | + * |
|
115 | + * @since 13.0.0 |
|
116 | + * @deprecated 23.0.0 |
|
117 | + */ |
|
118 | + public function getFreeSpace(); |
|
119 | 119 | |
120 | - /** |
|
121 | - * @return int |
|
122 | - * |
|
123 | - * @since 13.0.0 |
|
124 | - * @deprecated 23.0.0 |
|
125 | - */ |
|
126 | - public function getTotalSpace(); |
|
120 | + /** |
|
121 | + * @return int |
|
122 | + * |
|
123 | + * @since 13.0.0 |
|
124 | + * @deprecated 23.0.0 |
|
125 | + */ |
|
126 | + public function getTotalSpace(); |
|
127 | 127 | |
128 | - /** |
|
129 | - * @return int |
|
130 | - * |
|
131 | - * @since 13.0.0 |
|
132 | - * @deprecated 23.0.0 |
|
133 | - */ |
|
134 | - public function getQuota(); |
|
128 | + /** |
|
129 | + * @return int |
|
130 | + * |
|
131 | + * @since 13.0.0 |
|
132 | + * @deprecated 23.0.0 |
|
133 | + */ |
|
134 | + public function getQuota(); |
|
135 | 135 | } |
@@ -29,19 +29,19 @@ |
||
29 | 29 | * @deprecated 23.0.0 |
30 | 30 | */ |
31 | 31 | interface ICredentials { |
32 | - /** |
|
33 | - * @return string |
|
34 | - * |
|
35 | - * @since 13.0.0 |
|
36 | - * @deprecated 23.0.0 |
|
37 | - */ |
|
38 | - public function getUsername(); |
|
32 | + /** |
|
33 | + * @return string |
|
34 | + * |
|
35 | + * @since 13.0.0 |
|
36 | + * @deprecated 23.0.0 |
|
37 | + */ |
|
38 | + public function getUsername(); |
|
39 | 39 | |
40 | - /** |
|
41 | - * @return string |
|
42 | - * |
|
43 | - * @since 13.0.0 |
|
44 | - * @deprecated 23.0.0 |
|
45 | - */ |
|
46 | - public function getPassword(); |
|
40 | + /** |
|
41 | + * @return string |
|
42 | + * |
|
43 | + * @since 13.0.0 |
|
44 | + * @deprecated 23.0.0 |
|
45 | + */ |
|
46 | + public function getPassword(); |
|
47 | 47 | } |
@@ -27,12 +27,12 @@ |
||
27 | 27 | * @deprecated 23.0.0 |
28 | 28 | */ |
29 | 29 | interface IInstanceFactory { |
30 | - /** |
|
31 | - * @param string $url |
|
32 | - * @return IInstance |
|
33 | - * |
|
34 | - * @since 13.0.0 |
|
35 | - * @deprecated 23.0.0 |
|
36 | - */ |
|
37 | - public function getInstance($url); |
|
30 | + /** |
|
31 | + * @param string $url |
|
32 | + * @return IInstance |
|
33 | + * |
|
34 | + * @since 13.0.0 |
|
35 | + * @deprecated 23.0.0 |
|
36 | + */ |
|
37 | + public function getInstance($url); |
|
38 | 38 | } |
@@ -29,12 +29,12 @@ |
||
29 | 29 | * @deprecated 23.0.0 |
30 | 30 | */ |
31 | 31 | interface IUserApi { |
32 | - /** |
|
33 | - * @param string $userId |
|
34 | - * @return IUser |
|
35 | - * |
|
36 | - * @since 13.0.0 |
|
37 | - * @deprecated 23.0.0 |
|
38 | - */ |
|
39 | - public function getUser($userId); |
|
32 | + /** |
|
33 | + * @param string $userId |
|
34 | + * @return IUser |
|
35 | + * |
|
36 | + * @since 13.0.0 |
|
37 | + * @deprecated 23.0.0 |
|
38 | + */ |
|
39 | + public function getUser($userId); |
|
40 | 40 | } |
@@ -27,11 +27,11 @@ |
||
27 | 27 | * @deprecated 23.0.0 |
28 | 28 | */ |
29 | 29 | interface ICapabilitiesApi { |
30 | - /** |
|
31 | - * @return array The capabilities in the form of [$appId => [$capability => $value]] |
|
32 | - * |
|
33 | - * @since 13.0.0 |
|
34 | - * @deprecated 23.0.0 |
|
35 | - */ |
|
36 | - public function getCapabilities(); |
|
30 | + /** |
|
31 | + * @return array The capabilities in the form of [$appId => [$capability => $value]] |
|
32 | + * |
|
33 | + * @since 13.0.0 |
|
34 | + * @deprecated 23.0.0 |
|
35 | + */ |
|
36 | + public function getCapabilities(); |
|
37 | 37 | } |
@@ -30,13 +30,13 @@ |
||
30 | 30 | * @deprecated 23.0.0 |
31 | 31 | */ |
32 | 32 | interface IApiFactory { |
33 | - /** |
|
34 | - * @param IInstance $instance |
|
35 | - * @param ICredentials $credentials |
|
36 | - * @return IApiCollection |
|
37 | - * |
|
38 | - * @since 13.0.0 |
|
39 | - * @deprecated 23.0.0 |
|
40 | - */ |
|
41 | - public function getApiCollection(IInstance $instance, ICredentials $credentials); |
|
33 | + /** |
|
34 | + * @param IInstance $instance |
|
35 | + * @param ICredentials $credentials |
|
36 | + * @return IApiCollection |
|
37 | + * |
|
38 | + * @since 13.0.0 |
|
39 | + * @deprecated 23.0.0 |
|
40 | + */ |
|
41 | + public function getApiCollection(IInstance $instance, ICredentials $credentials); |
|
42 | 42 | } |
@@ -29,19 +29,19 @@ |
||
29 | 29 | * @deprecated 23.0.0 |
30 | 30 | */ |
31 | 31 | interface IApiCollection { |
32 | - /** |
|
33 | - * @return IUserApi |
|
34 | - * |
|
35 | - * @since 13.0.0 |
|
36 | - * @deprecated 23.0.0 |
|
37 | - */ |
|
38 | - public function getUserApi(); |
|
32 | + /** |
|
33 | + * @return IUserApi |
|
34 | + * |
|
35 | + * @since 13.0.0 |
|
36 | + * @deprecated 23.0.0 |
|
37 | + */ |
|
38 | + public function getUserApi(); |
|
39 | 39 | |
40 | - /** |
|
41 | - * @return ICapabilitiesApi |
|
42 | - * |
|
43 | - * @since 13.0.0 |
|
44 | - * @deprecated 23.0.0 |
|
45 | - */ |
|
46 | - public function getCapabilitiesApi(); |
|
40 | + /** |
|
41 | + * @return ICapabilitiesApi |
|
42 | + * |
|
43 | + * @since 13.0.0 |
|
44 | + * @deprecated 23.0.0 |
|
45 | + */ |
|
46 | + public function getCapabilitiesApi(); |
|
47 | 47 | } |
@@ -68,7 +68,7 @@ |
||
68 | 68 | $result = $this->checker->verifyCoreSignature(); |
69 | 69 | $this->writeArrayInOutputFormat($input, $output, $result); |
70 | 70 | if (count($result) > 0) { |
71 | - $output->writeln('<error>' . count($result) . ' errors found</error>', OutputInterface::VERBOSITY_VERBOSE); |
|
71 | + $output->writeln('<error>'.count($result).' errors found</error>', OutputInterface::VERBOSITY_VERBOSE); |
|
72 | 72 | return 1; |
73 | 73 | } |
74 | 74 | $output->writeln('<info>No errors found</info>', OutputInterface::VERBOSITY_VERBOSE); |
@@ -18,38 +18,38 @@ |
||
18 | 18 | * @package OC\Core\Command\Integrity |
19 | 19 | */ |
20 | 20 | class CheckCore extends Base { |
21 | - public function __construct( |
|
22 | - private Checker $checker, |
|
23 | - ) { |
|
24 | - parent::__construct(); |
|
25 | - } |
|
21 | + public function __construct( |
|
22 | + private Checker $checker, |
|
23 | + ) { |
|
24 | + parent::__construct(); |
|
25 | + } |
|
26 | 26 | |
27 | - /** |
|
28 | - * {@inheritdoc } |
|
29 | - */ |
|
30 | - protected function configure() { |
|
31 | - parent::configure(); |
|
32 | - $this |
|
33 | - ->setName('integrity:check-core') |
|
34 | - ->setDescription('Check integrity of core code using a signature.'); |
|
35 | - } |
|
27 | + /** |
|
28 | + * {@inheritdoc } |
|
29 | + */ |
|
30 | + protected function configure() { |
|
31 | + parent::configure(); |
|
32 | + $this |
|
33 | + ->setName('integrity:check-core') |
|
34 | + ->setDescription('Check integrity of core code using a signature.'); |
|
35 | + } |
|
36 | 36 | |
37 | - /** |
|
38 | - * {@inheritdoc } |
|
39 | - */ |
|
40 | - protected function execute(InputInterface $input, OutputInterface $output): int { |
|
41 | - if (!$this->checker->isCodeCheckEnforced()) { |
|
42 | - $output->writeln('<comment>integrity:check-core can not be used on git checkouts</comment>'); |
|
43 | - return 2; |
|
44 | - } |
|
37 | + /** |
|
38 | + * {@inheritdoc } |
|
39 | + */ |
|
40 | + protected function execute(InputInterface $input, OutputInterface $output): int { |
|
41 | + if (!$this->checker->isCodeCheckEnforced()) { |
|
42 | + $output->writeln('<comment>integrity:check-core can not be used on git checkouts</comment>'); |
|
43 | + return 2; |
|
44 | + } |
|
45 | 45 | |
46 | - $result = $this->checker->verifyCoreSignature(); |
|
47 | - $this->writeArrayInOutputFormat($input, $output, $result); |
|
48 | - if (count($result) > 0) { |
|
49 | - $output->writeln('<error>' . count($result) . ' errors found</error>', OutputInterface::VERBOSITY_VERBOSE); |
|
50 | - return 1; |
|
51 | - } |
|
52 | - $output->writeln('<info>No errors found</info>', OutputInterface::VERBOSITY_VERBOSE); |
|
53 | - return 0; |
|
54 | - } |
|
46 | + $result = $this->checker->verifyCoreSignature(); |
|
47 | + $this->writeArrayInOutputFormat($input, $output, $result); |
|
48 | + if (count($result) > 0) { |
|
49 | + $output->writeln('<error>' . count($result) . ' errors found</error>', OutputInterface::VERBOSITY_VERBOSE); |
|
50 | + return 1; |
|
51 | + } |
|
52 | + $output->writeln('<info>No errors found</info>', OutputInterface::VERBOSITY_VERBOSE); |
|
53 | + return 0; |
|
54 | + } |
|
55 | 55 | } |