passman/lib/Db/CredentialMapper.php

210 lines
6.9 KiB
PHP
Raw Normal View History

2016-09-12 01:45:20 +08:00
<?php
/**
* Nextcloud - passman
*
2016-10-19 23:44:19 +08:00
* @copyright Copyright (c) 2016, Sander Brand (brantje@gmail.com)
* @copyright Copyright (c) 2016, Marcos Zuriaga Miguel (wolfi@wolfi.es)
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2016-09-12 01:45:20 +08:00
*
*/
2016-10-19 23:44:19 +08:00
2016-09-12 01:45:20 +08:00
namespace OCA\Passman\Db;
use OCA\Passman\Utility\Utils;
use OCP\IDBConnection;
use OCP\AppFramework\Db\Mapper;
class CredentialMapper extends Mapper {
private $utils;
2017-01-03 05:06:55 +08:00
2016-09-12 01:45:20 +08:00
public function __construct(IDBConnection $db, Utils $utils) {
parent::__construct($db, 'passman_credentials');
$this->utils = $utils;
}
/**
2016-10-23 18:14:43 +08:00
* Obtains the credentials by vault id (not guid)
2017-01-03 05:06:55 +08:00
*
2016-09-12 01:45:20 +08:00
* @throws \OCP\AppFramework\Db\DoesNotExistException if not found
* @throws \OCP\AppFramework\Db\MultipleObjectsReturnedException if more than one result
2017-01-02 22:25:41 +08:00
* @return Credential[]
2016-09-12 01:45:20 +08:00
*/
2016-09-12 02:47:29 +08:00
public function getCredentialsByVaultId($vault_id, $user_id) {
$sql = 'SELECT * FROM `*PREFIX*passman_credentials` ' .
2016-09-12 04:14:11 +08:00
'WHERE `user_id` = ? and vault_id = ?';
2016-09-12 02:47:29 +08:00
return $this->findEntities($sql, [$user_id, $vault_id]);
2016-09-12 01:45:20 +08:00
}
/**
2016-10-23 18:14:43 +08:00
* Get a random credentail from a vault
2017-01-03 05:06:55 +08:00
*
* @param $vault_id
* @param $user_id
2016-10-23 18:14:43 +08:00
* @return Credential
*/
2016-10-01 02:43:20 +08:00
public function getRandomCredentialByVaultId($vault_id, $user_id) {
$sql = 'SELECT * FROM `*PREFIX*passman_credentials` ' .
'WHERE `user_id` = ? and vault_id = ? AND shared_key is NULL LIMIT 20';
$entities = $this->findEntities($sql, [$user_id, $vault_id]);
2017-01-03 05:06:55 +08:00
$count = count($entities) - 1;
$entities = array_splice($entities, rand(0, $count), 1);
return $entities;
2016-10-01 02:43:20 +08:00
}
/**
2016-10-23 18:14:43 +08:00
* Get expired credentials
2017-01-03 05:06:55 +08:00
*
* @param $timestamp
* @return Credential[]
*/
2017-01-03 05:06:55 +08:00
public function getExpiredCredentials($timestamp) {
$sql = 'SELECT * FROM `*PREFIX*passman_credentials` ' .
'WHERE `expire_time` > 0 AND `expire_time` < ?';
return $this->findEntities($sql, [$timestamp]);
}
2017-01-03 05:06:55 +08:00
/**
2016-10-23 18:14:43 +08:00
* Get an credential by id.
* Optional user id
2017-01-03 05:06:55 +08:00
*
* @param $credential_id
* @param null $user_id
* @return Credential
*/
public function getCredentialById($credential_id, $user_id = null) {
2016-09-23 22:52:41 +08:00
$sql = 'SELECT * FROM `*PREFIX*passman_credentials` ' .
2016-10-02 23:32:22 +08:00
'WHERE `id` = ?';
2017-01-03 05:06:55 +08:00
// If we want to check the owner, add it to the query
2016-10-03 01:29:06 +08:00
$params = [$credential_id];
2017-01-03 05:06:55 +08:00
if ($user_id !== null) {
$sql .= ' and `user_id` = ? ';
2016-10-03 01:29:06 +08:00
array_push($params, $user_id);
}
2017-01-03 05:06:55 +08:00
return $this->findEntity($sql, $params);
2016-09-23 22:52:41 +08:00
}
/**
2016-10-23 18:14:43 +08:00
* Get credential label by id
2017-01-03 05:06:55 +08:00
*
* @param $credential_id
* @return Credential
*/
2017-01-03 05:06:55 +08:00
public function getCredentialLabelById($credential_id) {
$sql = 'SELECT id, label FROM `*PREFIX*passman_credentials` ' .
'WHERE `id` = ? ';
2017-01-03 05:06:55 +08:00
return $this->findEntity($sql, [$credential_id]);
}
/**
2016-10-23 18:14:43 +08:00
* Save credential to the database.
2017-01-03 05:06:55 +08:00
*
* @param $raw_credential
* @return Credential
*/
2017-01-03 05:06:55 +08:00
public function create($raw_credential) {
2016-09-12 01:45:20 +08:00
$credential = new Credential();
$credential->setGuid($this->utils->GUID());
$credential->setVaultId($raw_credential['vault_id']);
$credential->setUserId($raw_credential['user_id']);
$credential->setLabel($raw_credential['label']);
$credential->setDescription($raw_credential['description']);
$credential->setCreated($this->utils->getTime());
$credential->setChanged($this->utils->getTime());
$credential->setTags($raw_credential['tags']);
$credential->setEmail($raw_credential['email']);
$credential->setUsername($raw_credential['username']);
$credential->setPassword($raw_credential['password']);
$credential->setUrl($raw_credential['url']);
2017-10-29 19:32:28 +08:00
$credential->setIcon($raw_credential['favicon']);
2016-09-12 01:45:20 +08:00
$credential->setRenewInterval($raw_credential['renew_interval']);
$credential->setExpireTime($raw_credential['expire_time']);
$credential->setDeleteTime($raw_credential['delete_time']);
$credential->setFiles($raw_credential['files']);
$credential->setCustomFields($raw_credential['custom_fields']);
$credential->setOtp($raw_credential['otp']);
$credential->setHidden($raw_credential['hidden']);
2017-01-03 05:06:55 +08:00
if (isset($raw_credential['shared_key'])) {
$credential->setSharedKey($raw_credential['shared_key']);
}
2016-09-12 01:45:20 +08:00
return parent::insert($credential);
}
/**
2016-10-23 18:14:43 +08:00
* Update a credential
2017-01-03 05:06:55 +08:00
*
* @param $raw_credential array An array containing all the credential fields
* @param $useRawUser bool
* @return Credential The updated credential
*/
public function updateCredential($raw_credential, $useRawUser) {
$original = $this->getCredentialByGUID($raw_credential['guid']);
$uid = ($useRawUser) ? $raw_credential['user_id'] : $original->getUserId();
2016-09-15 03:12:10 +08:00
$credential = new Credential();
$credential->setId($original->getId());
$credential->setGuid($original->getGuid());
$credential->setVaultId($original->getVaultId());
$credential->setUserId($uid);
2016-09-15 03:12:10 +08:00
$credential->setLabel($raw_credential['label']);
$credential->setDescription($raw_credential['description']);
$credential->setCreated($original->getCreated());
2016-09-15 03:12:10 +08:00
$credential->setChanged($this->utils->getTime());
$credential->setTags($raw_credential['tags']);
$credential->setEmail($raw_credential['email']);
$credential->setUsername($raw_credential['username']);
$credential->setPassword($raw_credential['password']);
$credential->setUrl($raw_credential['url']);
2017-08-13 20:23:23 +08:00
$credential->setIcon($raw_credential['icon']);
2016-09-15 03:12:10 +08:00
$credential->setRenewInterval($raw_credential['renew_interval']);
$credential->setExpireTime($raw_credential['expire_time']);
$credential->setFiles($raw_credential['files']);
$credential->setCustomFields($raw_credential['custom_fields']);
$credential->setOtp($raw_credential['otp']);
$credential->setHidden($raw_credential['hidden']);
$credential->setDeleteTime($raw_credential['delete_time']);
2017-01-03 05:06:55 +08:00
if (isset($raw_credential['shared_key'])) {
2017-01-02 22:25:41 +08:00
$credential->setSharedKey($raw_credential['shared_key']);
}
2016-09-15 03:12:10 +08:00
return parent::update($credential);
}
2017-01-03 05:06:55 +08:00
public function deleteCredential(Credential $credential) {
return $this->delete($credential);
}
2017-01-03 05:06:55 +08:00
public function upd(Credential $credential) {
2016-09-24 00:17:47 +08:00
$this->update($credential);
}
2017-01-03 05:06:55 +08:00
/**
* Finds a credential by the given guid
*
* @param $credential_guid
* @return Credential
*/
public function getCredentialByGUID($credential_guid, $user_id = null) {
$q = 'SELECT * FROM `*PREFIX*passman_credentials` WHERE guid = ? ';
2016-10-07 18:43:54 +08:00
$params = [$credential_guid];
2017-01-03 05:06:55 +08:00
if ($user_id !== null) {
2016-10-07 18:43:54 +08:00
$q .= ' and `user_id` = ? ';
array_push($params, $user_id);
}
2017-01-03 05:06:55 +08:00
return $this->findEntity($q, $params);
}
2016-09-12 01:45:20 +08:00
}