mirror of
https://github.com/nextcloud/passman.git
synced 2024-11-10 17:27:40 +08:00
126 lines
No EOL
3.4 KiB
PHP
126 lines
No EOL
3.4 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\Controller;
|
|
|
|
use OCP\IRequest;
|
|
use OCP\AppFramework\Http\JSONResponse;
|
|
use OCP\AppFramework\ApiController;
|
|
use OCA\Passman\Service\VaultService;
|
|
use OCA\Passman\Service\CredentialService;
|
|
|
|
|
|
class VaultController extends ApiController {
|
|
private $userId;
|
|
private $vaultService;
|
|
private $credentialService;
|
|
|
|
public function __construct($AppName,
|
|
IRequest $request,
|
|
$UserId,
|
|
VaultService $vaultService,
|
|
CredentialService $credentialService) {
|
|
parent::__construct($AppName, $request);
|
|
$this->userId = $UserId;
|
|
$this->vaultService = $vaultService;
|
|
$this->credentialService = $credentialService;
|
|
}
|
|
|
|
/**
|
|
* @NoAdminRequired
|
|
*/
|
|
public function listVaults() {
|
|
$result = array();
|
|
$vaults = $this->vaultService->getByUser($this->userId);
|
|
|
|
$protected_credential_fields = array('getDescription','getEmail','getUsername','getPassword');
|
|
|
|
foreach($vaults as $vault){
|
|
$credential = $this->credentialService->getRandomCredentialByVaultId($vault->getId(), $this->userId);
|
|
$secret_field = $protected_credential_fields[array_rand($protected_credential_fields)];
|
|
array_push($result, array(
|
|
'vault_id' => $vault->getId(),
|
|
'guid' => $vault->getGuid(),
|
|
'name' => $vault->getName(),
|
|
'created' => $vault->getCreated(),
|
|
'public_sharing_key' => $vault->getPublicSharingKey(),
|
|
'last_access' => $vault->getlastAccess(),
|
|
'challenge_password' => $credential->{$secret_field}()
|
|
));
|
|
}
|
|
|
|
return new JSONResponse($result);
|
|
}
|
|
|
|
/**
|
|
* @NoAdminRequired
|
|
*/
|
|
public function create($vault_name) {
|
|
$vault = $this->vaultService->createVault($vault_name, $this->userId);
|
|
return new JSONResponse($vault);
|
|
}
|
|
|
|
/**
|
|
* @NoAdminRequired
|
|
*/
|
|
public function get($vault_id) {
|
|
$credentials = $this->credentialService->getCredentialsByVaultId($vault_id, $this->userId);
|
|
$vault = $this->vaultService->getById($vault_id, $this->userId);
|
|
$vault = $vault[0];
|
|
if($vault) {
|
|
$result = array(
|
|
'vault_id' => $vault->getId(),
|
|
'guid' => $vault->getGuid(),
|
|
'name' => $vault->getName(),
|
|
'created' => $vault->getCreated(),
|
|
'private_sharing_key' => $vault->getPrivateSharingKey(),
|
|
'public_sharing_key' => $vault->getPublicSharingKey(),
|
|
'sharing_keys_generated' => $vault->getSharingKeysGenerated(),
|
|
'vault_settings' => $vault->getVaultSettings(),
|
|
'last_access' => $vault->getlastAccess()
|
|
);
|
|
$result['credentials'] = $credentials;
|
|
$this->vaultService->setLastAccess($vault_id, $this->userId);
|
|
} else {
|
|
$result = array();
|
|
}
|
|
return new JSONResponse($result);
|
|
}
|
|
|
|
/**
|
|
* @NoAdminRequired
|
|
*/
|
|
public function update($vault_id, $name, $vault_settings) {
|
|
$vault = array_pop($this->vaultService->getById($vault_id, $this->userId));
|
|
if($name) {
|
|
$vault->setName($name);
|
|
}
|
|
if($vault_settings) {
|
|
$vault->setVaultSettings($vault_settings);
|
|
}
|
|
$this->vaultService->updateVault($vault);
|
|
}
|
|
|
|
/**
|
|
* @NoAdminRequired
|
|
*/
|
|
public function updateSharingKeys($vault_id, $private_sharing_key, $public_sharing_key) {
|
|
$this->vaultService->updateSharingKeys($vault_id, $private_sharing_key, $public_sharing_key);
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* @NoAdminRequired
|
|
*/
|
|
public function delete($vault_id) {
|
|
return;
|
|
}
|
|
} |