passman/lib/Service/CredentialService.php

42 lines
1 KiB
PHP

<?php
/**
* Nextcloud - passman
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
* @author Sander Brand <brantje@gmail.com>
* @copyright Sander Brand 2016
*/
namespace OCA\Passman\Service;
use OCP\IConfig;
use OCP\AppFramework\Db\DoesNotExistException;
use OCA\Passman\Db\CredentialMapper;
class CredentialService {
private $credentialMapper;
public function __construct(CredentialMapper $credentialMapper) {
$this->credentialMapper = $credentialMapper;
}
public function createCredential($credential) {
return $this->credentialMapper->create($credential);
}
public function updateCredential($credential) {
return $this->credentialMapper->update($credential);
}
public function getCredentialsByVaultId($vault_id, $user_id){
return $this->credentialMapper->getCredentialsByVaultId($vault_id, $user_id);
}
public function getExpiredCredentials($timestamp){
return $this->credentialMapper->getExpiredCredentials($timestamp);
}
}