@@ -25,18 +25,18 @@ discard block |
||
25 | 25 | $this->manager = \OC::$server->getNotificationManager(); |
26 | 26 | } |
27 | 27 | |
28 | - function credentialExpiredNotification($credential){ |
|
28 | + function credentialExpiredNotification($credential) { |
|
29 | 29 | $urlGenerator = \OC::$server->getURLGenerator(); |
30 | - $link = $urlGenerator->getAbsoluteURL($urlGenerator->linkTo('','index.php/apps/passman/#/vault/'. $credential->getVaultId() .'/edit/'. $credential->getId())); |
|
30 | + $link = $urlGenerator->getAbsoluteURL($urlGenerator->linkTo('', 'index.php/apps/passman/#/vault/' . $credential->getVaultId() . '/edit/' . $credential->getId())); |
|
31 | 31 | $api = $urlGenerator->getAbsoluteURL($urlGenerator->linkTo('', 'index.php/apps/passman')); |
32 | 32 | $notification = $this->manager->createNotification(); |
33 | 33 | $remindAction = $notification->createAction(); |
34 | 34 | $remindAction->setLabel('remind') |
35 | - ->setLink($api. '/api/internal/notifications/remind/'. $credential->getId() , 'POST'); |
|
35 | + ->setLink($api . '/api/internal/notifications/remind/' . $credential->getId(), 'POST'); |
|
36 | 36 | |
37 | 37 | $declineAction = $notification->createAction(); |
38 | 38 | $declineAction->setLabel('ignore') |
39 | - ->setLink($api . '/api/internal/notifications/read/'. $credential->getId(), 'DELETE'); |
|
39 | + ->setLink($api . '/api/internal/notifications/read/' . $credential->getId(), 'DELETE'); |
|
40 | 40 | |
41 | 41 | $notification->setApp('passman') |
42 | 42 | ->setUser($credential->getUserId()) |
@@ -51,15 +51,15 @@ discard block |
||
51 | 51 | } |
52 | 52 | |
53 | 53 | |
54 | - function credentialSharedNotification($data){ |
|
54 | + function credentialSharedNotification($data) { |
|
55 | 55 | $urlGenerator = \OC::$server->getURLGenerator(); |
56 | - $link = $urlGenerator->getAbsoluteURL($urlGenerator->linkTo('','index.php/apps/passman/#/')); |
|
56 | + $link = $urlGenerator->getAbsoluteURL($urlGenerator->linkTo('', 'index.php/apps/passman/#/')); |
|
57 | 57 | $api = $urlGenerator->getAbsoluteURL($urlGenerator->linkTo('', 'index.php/apps/passman')); |
58 | 58 | $notification = $this->manager->createNotification(); |
59 | 59 | |
60 | 60 | $declineAction = $notification->createAction(); |
61 | 61 | $declineAction->setLabel('decline') |
62 | - ->setLink($api . '/api/v2/sharing/decline/'. $data['req_id'], 'DELETE'); |
|
62 | + ->setLink($api . '/api/v2/sharing/decline/' . $data['req_id'], 'DELETE'); |
|
63 | 63 | |
64 | 64 | $notification->setApp('passman') |
65 | 65 | ->setUser($data['target_user']) |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | } |
74 | 74 | |
75 | 75 | |
76 | - function credentialDeclinedSharedNotification($data){ |
|
76 | + function credentialDeclinedSharedNotification($data) { |
|
77 | 77 | $notification = $this->manager->createNotification(); |
78 | 78 | $notification->setApp('passman') |
79 | 79 | ->setUser($data['target_user']) |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | } |
85 | 85 | |
86 | 86 | |
87 | - function credentialAcceptedSharedNotification($data){ |
|
87 | + function credentialAcceptedSharedNotification($data) { |
|
88 | 88 | $notification = $this->manager->createNotification(); |
89 | 89 | $notification->setApp('passman') |
90 | 90 | ->setUser($data['target_user']) |
@@ -285,7 +285,7 @@ |
||
285 | 285 | } |
286 | 286 | |
287 | 287 | |
288 | - public function updatePendingShareRequestsForCredential($item_guid, $user_id, $permissions){ |
|
288 | + public function updatePendingShareRequestsForCredential($item_guid, $user_id, $permissions) { |
|
289 | 289 | return $this->shareRequest->updatePendinRequestPermissions($item_guid, $user_id, $permissions); |
290 | 290 | } |
291 | 291 | } |
292 | 292 | \ No newline at end of file |
@@ -241,7 +241,7 @@ |
||
241 | 241 | array( |
242 | 242 | 'id' => 'passman', |
243 | 243 | 'name' => (string) $l->t('Passwords'), |
244 | - 'url' => '',//FIXME: $this->URLGenerator->linkToRoute('activity.Activities.showList', array('filter' => 'passman')), |
|
244 | + 'url' => '', //FIXME: $this->URLGenerator->linkToRoute('activity.Activities.showList', array('filter' => 'passman')), |
|
245 | 245 | ), |
246 | 246 | ), |
247 | 247 | ); |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | return $this->findEntities($sql, [$user_id, $vault_id]); |
39 | 39 | } |
40 | 40 | |
41 | - public function getExpiredCredentials($timestamp){ |
|
41 | + public function getExpiredCredentials($timestamp) { |
|
42 | 42 | $sql = 'SELECT * FROM `*PREFIX*passman_credentials` ' . |
43 | 43 | 'WHERE `expire_time` > 0 AND `expire_time` < ?'; |
44 | 44 | return $this->findEntities($sql, [$timestamp]); |
@@ -49,25 +49,25 @@ discard block |
||
49 | 49 | * @param null $user_id |
50 | 50 | * @return Credential |
51 | 51 | */ |
52 | - public function getCredentialById($credential_id, $user_id = null){ |
|
52 | + public function getCredentialById($credential_id, $user_id = null) { |
|
53 | 53 | $sql = 'SELECT * FROM `*PREFIX*passman_credentials` ' . |
54 | 54 | 'WHERE `id` = ?'; |
55 | 55 | // If we want to check the owner, add it to the query |
56 | 56 | $params = [$credential_id]; |
57 | - if ($user_id !== null){ |
|
57 | + if ($user_id !== null) { |
|
58 | 58 | $sql .= ' and `user_id` = ? '; |
59 | 59 | array_push($params, $user_id); |
60 | 60 | } |
61 | - return $this->findEntity($sql,$params); |
|
61 | + return $this->findEntity($sql, $params); |
|
62 | 62 | } |
63 | 63 | |
64 | - public function getCredentialLabelById($credential_id){ |
|
64 | + public function getCredentialLabelById($credential_id) { |
|
65 | 65 | $sql = 'SELECT id, label FROM `*PREFIX*passman_credentials` ' . |
66 | 66 | 'WHERE `id` = ? '; |
67 | - return $this->findEntity($sql,[$credential_id]); |
|
67 | + return $this->findEntity($sql, [$credential_id]); |
|
68 | 68 | } |
69 | 69 | |
70 | - public function create($raw_credential){ |
|
70 | + public function create($raw_credential) { |
|
71 | 71 | $credential = new Credential(); |
72 | 72 | |
73 | 73 | $credential->setGuid($this->utils->GUID()); |
@@ -94,11 +94,11 @@ discard block |
||
94 | 94 | return parent::insert($credential); |
95 | 95 | } |
96 | 96 | |
97 | - public function updateCredential($raw_credential){ |
|
98 | - if(!$raw_credential['guid']){ |
|
99 | - $raw_credential['guid'] = $this->utils->GUID(); |
|
97 | + public function updateCredential($raw_credential) { |
|
98 | + if (!$raw_credential['guid']) { |
|
99 | + $raw_credential['guid'] = $this->utils->GUID(); |
|
100 | 100 | } |
101 | - if(!$raw_credential['created']){ |
|
101 | + if (!$raw_credential['created']) { |
|
102 | 102 | $raw_credential['created'] = $this->utils->getTime(); |
103 | 103 | } |
104 | 104 | $credential = new Credential(); |
@@ -127,11 +127,11 @@ discard block |
||
127 | 127 | return parent::update($credential); |
128 | 128 | } |
129 | 129 | |
130 | - public function deleteCredential(Credential $credential){ |
|
130 | + public function deleteCredential(Credential $credential) { |
|
131 | 131 | $this->delete($credential); |
132 | 132 | } |
133 | 133 | |
134 | - public function upd(Credential $credential){ |
|
134 | + public function upd(Credential $credential) { |
|
135 | 135 | $this->update($credential); |
136 | 136 | } |
137 | 137 | |
@@ -140,10 +140,10 @@ discard block |
||
140 | 140 | * @param $credential_guid |
141 | 141 | * @return Credential |
142 | 142 | */ |
143 | - public function getCredentialByGUID($credential_guid, $user_id = null){ |
|
143 | + public function getCredentialByGUID($credential_guid, $user_id = null) { |
|
144 | 144 | $q = 'SELECT * FROM `*PREFIX*passman_credentials` WHERE guid = ? '; |
145 | 145 | $params = [$credential_guid]; |
146 | - if ($user_id !== null){ |
|
146 | + if ($user_id !== null) { |
|
147 | 147 | $q .= ' and `user_id` = ? '; |
148 | 148 | array_push($params, $user_id); |
149 | 149 | } |
@@ -29,13 +29,13 @@ discard block |
||
29 | 29 | * @param $item_guid |
30 | 30 | * @return SharingACL[] |
31 | 31 | */ |
32 | - public function getCredentialPermissions(IUser $userId, $item_guid){ |
|
33 | - $sql = "SELECT * FROM ". self::TABLE_NAME ." WHERE user_id = ? AND item_guid = ?"; |
|
32 | + public function getCredentialPermissions(IUser $userId, $item_guid) { |
|
33 | + $sql = "SELECT * FROM " . self::TABLE_NAME . " WHERE user_id = ? AND item_guid = ?"; |
|
34 | 34 | |
35 | 35 | return $this->findEntities($sql, [$userId, $item_guid]); |
36 | 36 | } |
37 | 37 | |
38 | - public function createACLEntry(SharingACL $acl){ |
|
38 | + public function createACLEntry(SharingACL $acl) { |
|
39 | 39 | return $this->insert($acl); |
40 | 40 | } |
41 | 41 | |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | * @return SharingACL[] |
47 | 47 | */ |
48 | 48 | public function getVaultEntries($user_id, $vault_id) { |
49 | - $q = "SELECT * FROM ". self::TABLE_NAME ." WHERE user_id = ? AND vault_guid = ?"; |
|
49 | + $q = "SELECT * FROM " . self::TABLE_NAME . " WHERE user_id = ? AND vault_guid = ?"; |
|
50 | 50 | return $this->findEntities($q, [$user_id, $vault_id]); |
51 | 51 | } |
52 | 52 | |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | public function getItemACL($user_id, $item_guid) { |
60 | 60 | $q = "SELECT * FROM " . self::TABLE_NAME . " WHERE item_guid = ? AND "; |
61 | 61 | $filter = [$item_guid]; |
62 | - if ($user_id == null){ |
|
62 | + if ($user_id == null) { |
|
63 | 63 | $q .= 'user_id is null'; |
64 | 64 | } |
65 | 65 | else { |
@@ -86,11 +86,11 @@ discard block |
||
86 | 86 | * @return SharingACL[] |
87 | 87 | */ |
88 | 88 | public function getCredentialAclList($item_guid) { |
89 | - $q = "SELECT * FROM ". self::TABLE_NAME ." WHERE item_guid = ?"; |
|
89 | + $q = "SELECT * FROM " . self::TABLE_NAME . " WHERE item_guid = ?"; |
|
90 | 90 | return $this->findEntities($q, [$item_guid]); |
91 | 91 | } |
92 | 92 | |
93 | - public function deleteShareACL(SharingACL $ACL){ |
|
93 | + public function deleteShareACL(SharingACL $ACL) { |
|
94 | 94 | return $this->delete($ACL); |
95 | 95 | } |
96 | 96 | } |
97 | 97 | \ No newline at end of file |
@@ -36,7 +36,7 @@ |
||
36 | 36 | */ |
37 | 37 | |
38 | 38 | |
39 | -class Vault extends Entity implements \JsonSerializable{ |
|
39 | +class Vault extends Entity implements \JsonSerializable { |
|
40 | 40 | |
41 | 41 | use EntityJSONSerializer; |
42 | 42 |
@@ -32,7 +32,7 @@ |
||
32 | 32 | */ |
33 | 33 | |
34 | 34 | |
35 | -class File extends Entity implements \JsonSerializable{ |
|
35 | +class File extends Entity implements \JsonSerializable { |
|
36 | 36 | |
37 | 37 | use EntityJSONSerializer; |
38 | 38 |
@@ -63,7 +63,7 @@ |
||
63 | 63 | */ |
64 | 64 | |
65 | 65 | |
66 | -class Credential extends Entity implements \JsonSerializable{ |
|
66 | +class Credential extends Entity implements \JsonSerializable { |
|
67 | 67 | |
68 | 68 | use EntityJSONSerializer; |
69 | 69 |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | 'WHERE `credential_id` = ?'; |
33 | 33 | $params = [$credential_id]; |
34 | 34 | if ($user_id !== null) { |
35 | - $sql.= ' and `user_id` = ? '; |
|
35 | + $sql .= ' and `user_id` = ? '; |
|
36 | 36 | $params[] = $user_id; |
37 | 37 | } |
38 | 38 | return $this->findEntities($sql, $params); |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | 'WHERE `id` = ?'; |
49 | 49 | $params = [$revision_id]; |
50 | 50 | if ($user_id !== null) { |
51 | - $sql.= ' and `user_id` = ? '; |
|
51 | + $sql .= ' and `user_id` = ? '; |
|
52 | 52 | $params[] = $user_id; |
53 | 53 | } |
54 | 54 | return $this->findEntity($sql, $params); |