1 | <?php |
||
32 | class SharingACLMapper extends Mapper { |
||
33 | const TABLE_NAME = '*PREFIX*passman_sharing_acl'; |
||
34 | |||
35 | public function __construct(IDBConnection $db) { |
||
36 | parent::__construct($db, 'passman_sharing_acl'); |
||
37 | } |
||
38 | |||
39 | public function createACLEntry(SharingACL $acl){ |
||
40 | return $this->insert($acl); |
||
41 | } |
||
42 | |||
43 | /** |
||
44 | * Gets the currently accepted share requests from the given user for the given vault guid |
||
45 | * @param $user_id |
||
46 | * @param $vault_guid |
||
47 | * @return SharingACL[] |
||
48 | */ |
||
49 | 1 | public function getVaultEntries($user_id, $vault_guid) { |
|
53 | |||
54 | /** |
||
55 | * Gets the acl for a given item guid |
||
56 | * @param $user_id |
||
57 | * @param $item_guid |
||
58 | * @return SharingACL |
||
59 | */ |
||
60 | 1 | public function getItemACL($user_id, $item_guid) { |
|
70 | |||
71 | /** |
||
72 | * Update the acl for a given item guid |
||
73 | * @param $user_id |
||
74 | * @param $item_guid |
||
75 | * @return SharingACL |
||
76 | */ |
||
77 | 1 | public function updateCredentialACL(SharingACL $sharingACL) { |
|
80 | |||
81 | /** |
||
82 | * Gets the currently accepted share requests from the given user for the given vault guid |
||
83 | * @param $user_id |
||
84 | * @param $vault_id |
||
85 | * @return SharingACL[] |
||
86 | */ |
||
87 | 1 | public function getCredentialAclList($item_guid) { |
|
91 | |||
92 | 1 | public function deleteShareACL(SharingACL $ACL){ |
|
95 | } |