passman/lib/Db/SharingACLMapper.php
Marcos Zuriaga a45cc45f5a Add missing files from last sharing commit
Aadded npm-debug.log to the gitignore
2016-09-25 15:23:46 +02:00

37 lines
849 B
PHP

<?php
/**
* Created by PhpStorm.
* User: wolfi
* Date: 24/09/16
* Time: 14:20
*/
namespace OCA\passman\lib\Db;
use OCP\AppFramework\Db\Mapper;
use OCP\IGroup;
use OCP\IUser;
use OCA\Passman\Utility\Utils;
class SharingACLMapper extends Mapper
{
const TABLE_NAME = '`*PREFIX*passman_sharing_acl`';
public function __construct(IDBConnection $db, Utils $utils) {
parent::__construct($db, 'passman_vaults');
$this->utils = $utils;
}
/**
* Gets all the credential data for the given user
* @param $userId
* @param $item_guid
* @return SharingACL[]
*/
public function getCredentialPermissions(IUser $userId, $item_guid){
$sql = "SELECT * FROM {{self::TABLE_NAME}} WHERE user_id = ? AND item_guid = ?";
return $this->findEntities($sql, [$userId, $item_guid]);
}
}