mirror of
https://github.com/nextcloud/passman.git
synced 2025-01-01 13:01:44 +08:00
adb7dd582b
Fix if statement Add return Add return Remove assignment
74 lines
No EOL
2.2 KiB
PHP
74 lines
No EOL
2.2 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\Db;
|
|
|
|
use OCA\Passman\Utility\Utils;
|
|
use OCP\IDBConnection;
|
|
use OCP\AppFramework\Db\Mapper;
|
|
|
|
class CredentialRevisionMapper extends Mapper {
|
|
private $utils;
|
|
|
|
public function __construct(IDBConnection $db, Utils $utils) {
|
|
parent::__construct($db, 'passman_revisions');
|
|
$this->utils = $utils;
|
|
}
|
|
|
|
|
|
/**
|
|
* @throws \OCP\AppFramework\Db\DoesNotExistException if not found
|
|
* @throws \OCP\AppFramework\Db\MultipleObjectsReturnedException if more than one result
|
|
*/
|
|
public function getRevisions($credential_id, $user_id = null) {
|
|
$sql = 'SELECT * FROM `*PREFIX*passman_revisions` ' .
|
|
'WHERE `credential_id` = ?';
|
|
$params = [$credential_id];
|
|
if ($user_id !== null) {
|
|
$sql.= ' and `user_id` = ? ';
|
|
$params[] = $user_id;
|
|
}
|
|
return $this->findEntities($sql, $params);
|
|
}
|
|
|
|
/**
|
|
* @throws \OCP\AppFramework\Db\DoesNotExistException if not found
|
|
* @throws \OCP\AppFramework\Db\MultipleObjectsReturnedException if more than one result
|
|
* @return CredentialRevision
|
|
*/
|
|
public function getRevision($revision_id, $user_id = null) {
|
|
$sql = 'SELECT * FROM `*PREFIX*passman_revisions` ' .
|
|
'WHERE `id` = ?';
|
|
$params = [$revision_id];
|
|
if ($user_id !== null) {
|
|
$sql.= ' and `user_id` = ? ';
|
|
$params[] = $user_id;
|
|
}
|
|
return $this->findEntity($sql, $params);
|
|
}
|
|
|
|
public function create($credential, $userId, $credential_id, $edited_by) {
|
|
$revision = new CredentialRevision();
|
|
$revision->setGuid($this->utils->GUID());
|
|
$revision->setUserId($userId);
|
|
$revision->setCreated($this->utils->getTime());
|
|
$revision->setCredentialId($credential_id);
|
|
$revision->setEditedBy($edited_by);
|
|
$revision->setCredentialData(base64_encode(json_encode($credential)));
|
|
return $this->insert($revision);
|
|
}
|
|
|
|
public function deleteRevision($revision_id, $user_id) {
|
|
$revision = new CredentialRevision();
|
|
$revision->setId($revision_id);
|
|
$revision->setUserId($user_id);
|
|
return $this->delete($revision);
|
|
}
|
|
} |