passman/lib/Service/CredentialService.php

58 lines
1.5 KiB
PHP
Raw Normal View History

2016-09-12 01:45:20 +08:00
<?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);
}
2016-09-12 02:47:29 +08:00
2016-09-15 03:12:10 +08:00
public function updateCredential($credential) {
2016-09-24 00:17:47 +08:00
return $this->credentialMapper->updateCredential($credential);
}
public function upd($credential) {
return $this->credentialMapper->upd($credential);
2016-09-15 03:12:10 +08:00
}
public function deleteCredential($credential){
return $this->credentialMapper->deleteCredential($credential);
}
2016-09-23 22:52:41 +08:00
public function getCredentialsByVaultId($vault_id, $user_id) {
2016-09-12 02:47:29 +08:00
return $this->credentialMapper->getCredentialsByVaultId($vault_id, $user_id);
}
2016-09-23 22:52:41 +08:00
2016-10-01 02:43:20 +08:00
public function getRandomCredentialByVaultId($vault_id, $user_id) {
return array_pop($this->credentialMapper->getRandomCredentialByVaultId($vault_id, $user_id));
}
2016-09-23 22:52:41 +08:00
public function getExpiredCredentials($timestamp) {
return $this->credentialMapper->getExpiredCredentials($timestamp);
}
2016-09-23 22:52:41 +08:00
2016-09-24 00:17:47 +08:00
public function getCredentialById($credential_id, $user_id){
return $this->credentialMapper->getCredentialById($credential_id, $user_id);
2016-09-23 22:52:41 +08:00
}
2016-09-12 01:45:20 +08:00
}