passman/js/app/controllers/vault.js

128 lines
3.9 KiB
JavaScript
Raw Normal View History

2016-09-11 05:30:17 +08:00
'use strict';
/**
* @ngdoc function
* @name passmanApp.controller:MainCtrl
* @description
* # MainCtrl
* Controller of the passmanApp
*/
angular.module('passmanApp')
2016-09-12 02:47:29 +08:00
.controller('VaultCtrl', ['$scope', 'VaultService', 'SettingsService', 'CredentialService', '$location', function ($scope, VaultService, SettingsService, CredentialService, $location) {
2016-09-11 05:30:17 +08:00
VaultService.getVaults().then(function (vaults) {
$scope.vaults = vaults;
if(SettingsService.getSetting('defaultVault') != null){
var default_vault = SettingsService.getSetting('defaultVault');
2016-09-12 01:45:20 +08:00
/**
* Using a native for loop for preformance reasons.
* More info see http://stackoverflow.com/questions/13843972/angular-js-break-foreach
*/
for(var i = 0; i < vaults.length; i++){
var vault = vaults[i];
if(vault.guid == default_vault.guid){
$scope.default_vault = true;
$scope.list_selected_vault = SettingsService.getSetting('defaultVault');
2016-09-12 04:57:55 +08:00
if(SettingsService.getSetting('defaultVaultPass') != ''){
$location.path('/vault/'+ vault.vault_id);
}
2016-09-12 01:45:20 +08:00
break;
}
2016-09-12 01:45:20 +08:00
}
}
2016-09-11 05:30:17 +08:00
});
$scope.default_vault = false;
$scope.remember_vault_password = false;
$scope.list_selected_vault = false;
$scope.toggleDefaultVault = function(){
$scope.default_vault = !$scope.default_vault;
if($scope.default_vault == true){
SettingsService.setSetting('defaultVault', $scope.list_selected_vault);
} else {
SettingsService.setSetting('defaultVault', null);
}
};
2016-09-12 02:47:29 +08:00
$scope.toggleRememberPassword = function(){
$scope.remember_vault_password = !$scope.remember_vault_password;
if($scope.remember_vault_password != true){
SettingsService.setSetting('defaultVault', null);
}
};
2016-09-11 05:30:17 +08:00
$scope.clearState = function () {
$scope.list_selected_vault = false;
$scope.creating_vault = false;
2016-09-12 05:40:06 +08:00
$scope.error = false;
2016-09-11 05:30:17 +08:00
};
$scope.selectVault = function(vault){
$scope.list_selected_vault = vault;
};
2016-09-11 05:30:17 +08:00
$scope.newVault = function(){
$scope.creating_vault = true;
};
2016-09-12 02:47:29 +08:00
var _loginToVault = function (vault, vault_key) {
var _vault = angular.copy(vault)
_vault.vaultKey = angular.copy(vault_key);
VaultService.setActiveVault(_vault);
$location.path('/vault/'+ vault.vault_id);
}
2016-09-12 01:45:20 +08:00
$scope.vaultDecryptionKey = '';
2016-09-12 02:47:29 +08:00
$scope.loginToVault = function (vault, vault_key) {
$scope.error = false;
var _vault = angular.copy(vault)
_vault.vaultKey = angular.copy(vault_key);
VaultService.setActiveVault(_vault);
2016-09-12 01:45:20 +08:00
VaultService.getVault(vault).then(function(credentials){
for(var i = 0; i < credentials.length; i++){
var credential = credentials[i];
2016-09-12 02:47:29 +08:00
console.log(credential);
2016-09-12 01:45:20 +08:00
if(credential.hidden = true){
2016-09-12 02:47:29 +08:00
try {
var c = CredentialService.decryptCredential(credential);
if(c.password === 'lorum ipsum'){
console.log($scope.remember_vault_password);
if($scope.remember_vault_password ){
SettingsService.setSetting('defaultVaultPass', vault_key);
}
_loginToVault(vault, vault_key);
}
} catch (e){
$scope.error = 'Incorrect vault password!'
}
2016-09-12 01:45:20 +08:00
break;
}
}
})
};
2016-09-12 01:45:20 +08:00
2016-09-12 02:47:29 +08:00
$scope.createVault = function(vault_name, vault_key, vault_key2){
2016-09-12 05:40:06 +08:00
if(vault_key != vault_key2){
$scope.error = 'Passwords do not match';
2016-09-12 01:45:20 +08:00
return;
}
VaultService.createVault(vault_name).then(function (vault) {
2016-09-12 02:47:29 +08:00
$scope.vaults.push(vault);
var _vault = angular.copy(vault);
_vault.vaultKey = angular.copy(vault_key);
2016-09-12 01:45:20 +08:00
VaultService.setActiveVault(_vault);
var test_credential = CredentialService.newCredential();
test_credential.label = 'Test key for vault '+ vault_name;
test_credential.hidden = true;
test_credential.vault_id = vault.vault_id;
test_credential.password = 'lorum ipsum';
CredentialService.createCredential(test_credential).then(function (result) {
2016-09-12 02:47:29 +08:00
_loginToVault(vault, vault_key);
2016-09-12 01:45:20 +08:00
//@TODO Redirect to newly created vault
})
});
};
2016-09-11 05:30:17 +08:00
}]);