@@ -163,13 +163,13 @@ |
||
| 163 | 163 | $activity . '_self', array($label, $this->userId, $revision_created), |
| 164 | 164 | '', array(), |
| 165 | 165 | $link, $this->userId, Activity::TYPE_ITEM_ACTION); |
| 166 | - } else if (($storedCredential->getDeleteTime() === 0) && (int)$delete_time > 0) { |
|
| 166 | + } else if (($storedCredential->getDeleteTime() === 0) && (int) $delete_time > 0) { |
|
| 167 | 167 | $activity = 'item_deleted'; |
| 168 | 168 | $this->activityService->add( |
| 169 | 169 | $activity . '_self', array($label, $this->userId), |
| 170 | 170 | '', array(), |
| 171 | 171 | $link, $this->userId, Activity::TYPE_ITEM_ACTION); |
| 172 | - } else if (($storedCredential->getDeleteTime() > 0) && (int)$delete_time === 0) { |
|
| 172 | + } else if (($storedCredential->getDeleteTime() > 0) && (int) $delete_time === 0) { |
|
| 173 | 173 | $activity = 'item_recovered'; |
| 174 | 174 | $this->activityService->add( |
| 175 | 175 | $activity . '_self', array($label, $this->userId), |
@@ -36,13 +36,13 @@ discard block |
||
| 36 | 36 | private $settings; |
| 37 | 37 | |
| 38 | 38 | public function __construct($AppName, |
| 39 | - IRequest $request, |
|
| 40 | - $userId, |
|
| 41 | - CredentialService $credentialService, |
|
| 42 | - ActivityService $activityService, |
|
| 43 | - CredentialRevisionService $credentialRevisionService, |
|
| 44 | - ShareService $sharingService, |
|
| 45 | - SettingsService $settings |
|
| 39 | + IRequest $request, |
|
| 40 | + $userId, |
|
| 41 | + CredentialService $credentialService, |
|
| 42 | + ActivityService $activityService, |
|
| 43 | + CredentialRevisionService $credentialRevisionService, |
|
| 44 | + ShareService $sharingService, |
|
| 45 | + SettingsService $settings |
|
| 46 | 46 | |
| 47 | 47 | ) { |
| 48 | 48 | parent::__construct( |
@@ -65,10 +65,10 @@ discard block |
||
| 65 | 65 | * @NoCSRFRequired |
| 66 | 66 | */ |
| 67 | 67 | public function createCredential($changed, $created, |
| 68 | - $credential_id, $custom_fields, $delete_time, |
|
| 69 | - $description, $email, $expire_time, $favicon, $files, $guid, |
|
| 70 | - $hidden, $icon, $label, $otp, $password, $renew_interval, |
|
| 71 | - $tags, $url, $username, $vault_id, $compromised) { |
|
| 68 | + $credential_id, $custom_fields, $delete_time, |
|
| 69 | + $description, $email, $expire_time, $favicon, $files, $guid, |
|
| 70 | + $hidden, $icon, $label, $otp, $password, $renew_interval, |
|
| 71 | + $tags, $url, $username, $vault_id, $compromised) { |
|
| 72 | 72 | $credential = array( |
| 73 | 73 | 'credential_id' => $credential_id, |
| 74 | 74 | 'guid' => $guid, |
@@ -121,10 +121,10 @@ discard block |
||
| 121 | 121 | * @NoCSRFRequired |
| 122 | 122 | */ |
| 123 | 123 | public function updateCredential($changed, $created, |
| 124 | - $credential_id, $custom_fields, $delete_time, $credential_guid, |
|
| 125 | - $description, $email, $expire_time, $icon, $files, $guid, |
|
| 126 | - $hidden, $label, $otp, $password, $renew_interval, |
|
| 127 | - $tags, $url, $username, $vault_id, $revision_created, $shared_key, $acl, $unshare_action, $set_share_key, $skip_revision, $compromised) { |
|
| 124 | + $credential_id, $custom_fields, $delete_time, $credential_guid, |
|
| 125 | + $description, $email, $expire_time, $icon, $files, $guid, |
|
| 126 | + $hidden, $label, $otp, $password, $renew_interval, |
|
| 127 | + $tags, $url, $username, $vault_id, $revision_created, $shared_key, $acl, $unshare_action, $set_share_key, $skip_revision, $compromised) { |
|
| 128 | 128 | |
| 129 | 129 | |
| 130 | 130 | $storedCredential = $this->credentialService->getCredentialByGUID($credential_guid); |
@@ -206,6 +206,10 @@ discard block |
||
| 206 | 206 | return array($cipherKey, $macKey, $iv); |
| 207 | 207 | } |
| 208 | 208 | |
| 209 | + /** |
|
| 210 | + * @param string $a |
|
| 211 | + * @param string $b |
|
| 212 | + */ |
|
| 209 | 213 | protected function hash_equals($a, $b) { |
| 210 | 214 | if (function_exists('random_bytes')) { |
| 211 | 215 | $key = random_bytes(128); |
@@ -247,7 +251,7 @@ discard block |
||
| 247 | 251 | /** |
| 248 | 252 | * Pad the data with a random char chosen by the pad amount. |
| 249 | 253 | * |
| 250 | - * @param $data |
|
| 254 | + * @param string $data |
|
| 251 | 255 | * @return string |
| 252 | 256 | */ |
| 253 | 257 | protected function pad($data) { |
@@ -263,8 +267,8 @@ discard block |
||
| 263 | 267 | /** |
| 264 | 268 | * Unpad the the data |
| 265 | 269 | * |
| 266 | - * @param $data |
|
| 267 | - * @return bool|string |
|
| 270 | + * @param string $data |
|
| 271 | + * @return false|string |
|
| 268 | 272 | */ |
| 269 | 273 | protected function unpad($data) { |
| 270 | 274 | $length = $this->getKeySize(); |
@@ -27,12 +27,12 @@ |
||
| 27 | 27 | private $appManager; |
| 28 | 28 | |
| 29 | 29 | public function __construct($AppName, |
| 30 | - IRequest $request, |
|
| 31 | - $UserId, |
|
| 32 | - CredentialService $credentialService, |
|
| 33 | - IConfig $config, |
|
| 34 | - IManager $IManager, |
|
| 35 | - IAppManager $appManager |
|
| 30 | + IRequest $request, |
|
| 31 | + $UserId, |
|
| 32 | + CredentialService $credentialService, |
|
| 33 | + IConfig $config, |
|
| 34 | + IManager $IManager, |
|
| 35 | + IAppManager $appManager |
|
| 36 | 36 | ) { |
| 37 | 37 | parent::__construct( |
| 38 | 38 | $AppName, |
@@ -60,7 +60,7 @@ |
||
| 60 | 60 | private $fileService; |
| 61 | 61 | |
| 62 | 62 | public function __construct(EncryptService $encryptService, IDBConnection $db, LoggerInterface $logger, CredentialService $credentialService, CredentialRevisionService $revisionService, |
| 63 | - FileService $fileService, IConfig $config) { |
|
| 63 | + FileService $fileService, IConfig $config) { |
|
| 64 | 64 | $this->encryptService = $encryptService; |
| 65 | 65 | $this->db = $db; |
| 66 | 66 | $this->logger = $logger; |
@@ -101,7 +101,9 @@ discard block |
||
| 101 | 101 | * @return Entity |
| 102 | 102 | */ |
| 103 | 103 | public function createACLEntry(SharingACL $acl) { |
| 104 | - if ($acl->getCreated() === null) $acl->setCreated((new \DateTime())->getTimestamp()); |
|
| 104 | + if ($acl->getCreated() === null) { |
|
| 105 | + $acl->setCreated((new \DateTime())->getTimestamp()); |
|
| 106 | + } |
|
| 105 | 107 | return $this->sharingACL->createACLEntry($acl); |
| 106 | 108 | } |
| 107 | 109 | |
@@ -159,13 +161,17 @@ discard block |
||
| 159 | 161 | $return = []; |
| 160 | 162 | foreach ($entries as $entry) { |
| 161 | 163 | // Check if the user can read the credential, probably unnecesary, but just to be sure |
| 162 | - if (!$entry->hasPermission(SharingACL::READ)) continue; |
|
| 164 | + if (!$entry->hasPermission(SharingACL::READ)) { |
|
| 165 | + continue; |
|
| 166 | + } |
|
| 163 | 167 | $tmp = $entry->jsonSerialize(); |
| 164 | 168 | $credential = $this->credential->getCredentialById($entry->getItemId()); |
| 165 | 169 | $credential = $this->encryptService->decryptCredential($credential); |
| 166 | 170 | $tmp['credential_data'] = $credential->jsonSerialize(); |
| 167 | 171 | |
| 168 | - if (!$entry->hasPermission(SharingACL::FILES)) unset($tmp['credential_data']['files']); |
|
| 172 | + if (!$entry->hasPermission(SharingACL::FILES)) { |
|
| 173 | + unset($tmp['credential_data']['files']); |
|
| 174 | + } |
|
| 169 | 175 | unset($tmp['credential_data']['shared_key']); |
| 170 | 176 | $return[] = $tmp; |
| 171 | 177 | } |
@@ -194,7 +200,9 @@ discard block |
||
| 194 | 200 | $acl = $this->sharingACL->getItemACL($user_id, $item_guid); |
| 195 | 201 | |
| 196 | 202 | // Check if the user can read the credential, probably unnecesary, but just to be sure |
| 197 | - if (!$acl->hasPermission(SharingACL::READ)) throw new DoesNotExistException("Item not found or wrong access level"); |
|
| 203 | + if (!$acl->hasPermission(SharingACL::READ)) { |
|
| 204 | + throw new DoesNotExistException("Item not found or wrong access level"); |
|
| 205 | + } |
|
| 198 | 206 | |
| 199 | 207 | $tmp = $acl->jsonSerialize(); |
| 200 | 208 | $credential = $this->credential->getCredentialById($acl->getItemId()); |
@@ -202,7 +210,9 @@ discard block |
||
| 202 | 210 | |
| 203 | 211 | $tmp['credential_data'] = $credential->jsonSerialize(); |
| 204 | 212 | |
| 205 | - if (!$acl->hasPermission(SharingACL::FILES)) unset($tmp['credential_data']['files']); |
|
| 213 | + if (!$acl->hasPermission(SharingACL::FILES)) { |
|
| 214 | + unset($tmp['credential_data']['files']); |
|
| 215 | + } |
|
| 206 | 216 | unset($tmp['credential_data']['shared_key']); |
| 207 | 217 | |
| 208 | 218 | return $tmp; |
@@ -217,7 +227,9 @@ discard block |
||
| 217 | 227 | */ |
| 218 | 228 | public function getItemHistory(string $user_id, string $item_guid) { |
| 219 | 229 | $acl = $this->sharingACL->getItemACL($user_id, $item_guid); |
| 220 | - if (!$acl->hasPermission(SharingACL::READ | SharingACL::HISTORY)) return []; |
|
| 230 | + if (!$acl->hasPermission(SharingACL::READ | SharingACL::HISTORY)) { |
|
| 231 | + return []; |
|
| 232 | + } |
|
| 221 | 233 | |
| 222 | 234 | return $this->revisions->getRevisions($acl->getItemId()); |
| 223 | 235 | } |
@@ -80,7 +80,7 @@ |
||
| 80 | 80 | } |
| 81 | 81 | |
| 82 | 82 | if ($data !== false) { |
| 83 | - $version = (string)$data->version; |
|
| 83 | + $version = (string) $data->version; |
|
| 84 | 84 | } else { |
| 85 | 85 | libxml_clear_errors(); |
| 86 | 86 | } |
@@ -267,7 +267,7 @@ |
||
| 267 | 267 | 'apps' => array(self::FILTER_PASSMAN => |
| 268 | 268 | array( |
| 269 | 269 | 'id' => 'passman', |
| 270 | - 'name' => (string)$l->t('Passwords'), |
|
| 270 | + 'name' => (string) $l->t('Passwords'), |
|
| 271 | 271 | 'url' => $this->URLGenerator->linkToRoute('activity.Activities.showList', ['filter' => self::FILTER_PASSMAN]), |
| 272 | 272 | ), |
| 273 | 273 | ), |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | // Deal with known subjects |
| 53 | 53 | case 'credential_expired': |
| 54 | 54 | $notification->setParsedSubject( |
| 55 | - (string)$l->t('Your credential "%s" expired, click here to update the credential.', $notification->getSubjectParameters()) |
|
| 55 | + (string) $l->t('Your credential "%s" expired, click here to update the credential.', $notification->getSubjectParameters()) |
|
| 56 | 56 | ); |
| 57 | 57 | |
| 58 | 58 | // Deal with the actions for a known subject |
@@ -60,13 +60,13 @@ discard block |
||
| 60 | 60 | switch ($action->getLabel()) { |
| 61 | 61 | case 'remind': |
| 62 | 62 | $action->setParsedLabel( |
| 63 | - (string)$l->t('Remind me later') |
|
| 63 | + (string) $l->t('Remind me later') |
|
| 64 | 64 | ); |
| 65 | 65 | break; |
| 66 | 66 | |
| 67 | 67 | case 'ignore': |
| 68 | 68 | $action->setParsedLabel( |
| 69 | - (string)$l->t('Ignore') |
|
| 69 | + (string) $l->t('Ignore') |
|
| 70 | 70 | ); |
| 71 | 71 | break; |
| 72 | 72 | } |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | |
| 79 | 79 | case 'credential_shared': |
| 80 | 80 | $notification->setParsedSubject( |
| 81 | - (string)$l->t('%s shared "%s" with you. Click here to accept', $notification->getSubjectParameters()) |
|
| 81 | + (string) $l->t('%s shared "%s" with you. Click here to accept', $notification->getSubjectParameters()) |
|
| 82 | 82 | ); |
| 83 | 83 | |
| 84 | 84 | // Deal with the actions for a known subject |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | switch ($action->getLabel()) { |
| 87 | 87 | case 'decline': |
| 88 | 88 | $action->setParsedLabel( |
| 89 | - (string)$l->t('Decline') |
|
| 89 | + (string) $l->t('Decline') |
|
| 90 | 90 | ); |
| 91 | 91 | break; |
| 92 | 92 | } |
@@ -97,13 +97,13 @@ discard block |
||
| 97 | 97 | |
| 98 | 98 | case 'credential_share_denied': |
| 99 | 99 | $notification->setParsedSubject( |
| 100 | - (string)$l->t('%s has declined your share request for "%s".', $notification->getSubjectParameters()) |
|
| 100 | + (string) $l->t('%s has declined your share request for "%s".', $notification->getSubjectParameters()) |
|
| 101 | 101 | ); |
| 102 | 102 | return $notification; |
| 103 | 103 | |
| 104 | 104 | case 'credential_share_accepted': |
| 105 | 105 | $notification->setParsedSubject( |
| 106 | - (string)$l->t('%s has accepted your share request for "%s".', $notification->getSubjectParameters()) |
|
| 106 | + (string) $l->t('%s has accepted your share request for "%s".', $notification->getSubjectParameters()) |
|
| 107 | 107 | ); |
| 108 | 108 | return $notification; |
| 109 | 109 | default: |
@@ -74,18 +74,18 @@ discard block |
||
| 74 | 74 | |
| 75 | 75 | $context->registerSearchProvider(Provider::class); |
| 76 | 76 | |
| 77 | - $context->registerService(View::class, function () { |
|
| 77 | + $context->registerService(View::class, function() { |
|
| 78 | 78 | return new View(''); |
| 79 | 79 | }, false); |
| 80 | 80 | |
| 81 | - $context->registerService('isCLI', function () { |
|
| 81 | + $context->registerService('isCLI', function() { |
|
| 82 | 82 | return \OC::$CLI; |
| 83 | 83 | }); |
| 84 | 84 | |
| 85 | 85 | $context->registerMiddleware(ShareMiddleware::class); |
| 86 | 86 | $context->registerMiddleware(APIMiddleware::class); |
| 87 | 87 | |
| 88 | - $context->registerService('ShareController', function (ContainerInterface $c) { |
|
| 88 | + $context->registerService('ShareController', function(ContainerInterface $c) { |
|
| 89 | 89 | /** @var IUserManager $userManager */ |
| 90 | 90 | $userManager = $c->get(IUserManager::class); |
| 91 | 91 | /** @var IGroupManager $groupManager */ |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | }); |
| 112 | 112 | |
| 113 | 113 | |
| 114 | - $context->registerService('CronService', function (ContainerInterface $c) { |
|
| 114 | + $context->registerService('CronService', function(ContainerInterface $c) { |
|
| 115 | 115 | return new CronService( |
| 116 | 116 | $c->get(CredentialService::class), |
| 117 | 117 | $c->get(LoggerInterface::class), |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | ); |
| 123 | 123 | }); |
| 124 | 124 | |
| 125 | - $context->registerService('Logger', function (ContainerInterface $c) { |
|
| 125 | + $context->registerService('Logger', function(ContainerInterface $c) { |
|
| 126 | 126 | return $c->get(ServerContainer::class)->getLogger(); |
| 127 | 127 | }); |
| 128 | 128 | } |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | /** @var INavigationManager $navigationManager */ |
| 144 | 144 | $navigationManager = $c->get(INavigationManager::class); |
| 145 | 145 | |
| 146 | - $navigationEntry = function () use ($c) { |
|
| 146 | + $navigationEntry = function() use ($c) { |
|
| 147 | 147 | /** @var IURLGenerator $urlGenerator */ |
| 148 | 148 | $urlGenerator = $c->get(IURLGenerator::class); |
| 149 | 149 | return [ |