passman/js/app/controllers/settings.js

213 lines
6.9 KiB
JavaScript
Raw Normal View History

2016-09-25 02:16:57 +08:00
'use strict';
/**
* @ngdoc function
* @name passmanApp.controller:SettingsCtrl
* @description
* # SettingsCtrl
* Controller of the passmanApp
*/
angular.module('passmanApp')
2016-10-01 23:21:24 +08:00
.controller('SettingsCtrl', ['$scope', '$rootScope', 'SettingsService', 'VaultService', 'CredentialService', '$location', '$routeParams', '$http', 'EncryptService','NotificationService','$sce',
function ($scope, $rootScope, SettingsService, VaultService, CredentialService, $location, $routeParams, $http, EncryptService, NotificationService, $sce) {
2016-09-29 05:23:24 +08:00
$scope.vault_settings = {};
2016-10-01 03:15:28 +08:00
$scope.new_vault_name = '';
2016-09-29 05:40:33 +08:00
$scope.active_vault = VaultService.getActiveVault();
2016-09-29 04:05:09 +08:00
if (!SettingsService.getSetting('defaultVault') || !SettingsService.getSetting('defaultVaultPass')) {
if (!$scope.active_vault) {
$location.path('/')
}
} else {
if (SettingsService.getSetting('defaultVault') && SettingsService.getSetting('defaultVaultPass')) {
var _vault = angular.copy(SettingsService.getSetting('defaultVault'));
2016-09-29 05:23:24 +08:00
VaultService.getVault(_vault).then(function (vault) {
vault.vaultKey = SettingsService.getSetting('defaultVaultPass');
VaultService.setActiveVault(vault);
$scope.active_vault = vault;
$scope.$parent.selectedVault = true;
$scope.vault_settings.pwSettings = VaultService.getVaultSetting('pwSettings',
{
'length': 12,
'useUppercase': true,
'useLowercase': true,
'useDigits': true,
'useSpecialChars': true,
'minimumDigitCount': 3,
'avoidAmbiguousCharacters': false,
'requireEveryCharType': true,
2016-09-30 23:44:21 +08:00
'generateOnCreate': true
2016-10-01 03:15:28 +08:00
});
$scope.new_vault_name = angular.copy($scope.active_vault.name);
2016-09-29 05:23:24 +08:00
})
2016-09-29 04:05:09 +08:00
}
}
2016-10-01 23:21:24 +08:00
var http = location.protocol, slashes = http.concat("//"), host = slashes.concat(window.location.hostname), complete = host + location.pathname;
$scope.bookmarklet = $sce.trustAsHtml("<a class=\"button\" href=\"javascript:(function(){var a=window,b=document,c=encodeURIComponent,e=c(document.title),d=a.open('" + complete + "bookmarklet?url='+c(b.location)+'&title='+e,'bkmk_popup','left='+((a.screenX||a.screenLeft)+10)+',top='+((a.screenY||a.screenTop)+10)+',height=750px,width=475px,resizable=0,alwaysRaised=1');a.setTimeout(function(){d.focus()},300);})();\">Save in passman</a>");
2016-09-29 04:05:09 +08:00
$scope.saveVaultSettings = function () {
var _vault = $scope.active_vault;
2016-10-01 03:15:28 +08:00
_vault.name = $scope.new_vault_name;
2016-09-29 04:05:09 +08:00
_vault.vault_settings = angular.copy($scope.vault_settings);
VaultService.updateVault(_vault).then(function () {
2016-09-29 04:15:03 +08:00
VaultService.setActiveVault(_vault);
2016-10-01 03:15:28 +08:00
$scope.active_vault.name = angular.copy(_vault.name);
2016-09-30 23:44:21 +08:00
NotificationService.showNotification('Settings saved', 5000);
2016-09-29 04:05:09 +08:00
});
};
2016-09-25 06:01:23 +08:00
$scope.tabs = [
{
title: 'General settings',
url: 'views/partials/forms/settings/general_settings.html'
},
{
2016-09-29 01:51:36 +08:00
title: 'Password Audit',
2016-09-25 06:01:23 +08:00
url: 'views/partials/forms/settings/tool.html'
2016-09-25 02:47:47 +08:00
2016-09-29 04:05:09 +08:00
},
{
title: 'Password settings',
url: 'views/partials/forms/settings/password_settings.html'
2016-09-25 06:01:23 +08:00
},
2016-09-25 02:47:47 +08:00
{
title: 'Import credentials',
url: 'views/partials/forms/settings/import.html'
},
{
title: 'Export credentials',
url: 'views/partials/forms/settings/export.html'
},
{
title: 'Sharing',
2016-09-29 04:05:09 +08:00
url: 'views/partials/forms/settings/sharing.html'
}
];
2016-09-25 02:47:47 +08:00
2016-09-26 00:21:28 +08:00
$scope.currentTab = $scope.tabs[0];
2016-09-25 02:47:47 +08:00
$scope.onClickTab = function (tab) {
$scope.currentTab = tab;
};
$scope.isActiveTab = function (tab) {
return tab.url == $scope.currentTab.url;
};
var getPassmanVersion = function () {
var url = OC.generateUrl('apps/passman/api/internal/version');
2016-09-25 06:01:23 +08:00
$http.get(url).then(function (result) {
2016-09-25 02:47:47 +08:00
$scope.passman_version = result.data.version;
})
};
getPassmanVersion();
$scope.$watch(function () {
return VaultService.getActiveVault()
}, function (vault) {
2016-09-29 04:05:09 +08:00
if (vault) {
2016-09-25 23:19:05 +08:00
$scope.active_vault = vault;
}
2016-09-25 02:47:47 +08:00
});
if ($scope.active_vault) {
2016-09-29 05:23:24 +08:00
2016-09-25 02:16:57 +08:00
}
2016-09-25 02:47:47 +08:00
$rootScope.$on('logout', function () {
$scope.selectedVault = false;
});
$scope.startScan = function (minStrength) {
2016-09-29 02:28:34 +08:00
VaultService.getVault($scope.active_vault).then(function (vault) {
2016-09-25 02:47:47 +08:00
var results = [];
2016-09-29 02:28:34 +08:00
for (var i = 0; i < vault.credentials.length; i++) {
2016-09-29 05:23:24 +08:00
var c = angular.copy(vault.credentials[i]);
if (c.password && c.hidden == 0) {
c = CredentialService.decryptCredential(c);
if(c.password){
var zxcvbn_result = zxcvbn(c.password);
if (zxcvbn_result.score <= minStrength) {
results.push({
credential_id: c.credential_id,
label: c.label,
password: c.password,
password_zxcvbn_result: zxcvbn_result
});
}
2016-09-25 02:47:47 +08:00
}
2016-09-29 05:23:24 +08:00
2016-09-25 02:16:57 +08:00
}
2016-09-25 02:47:47 +08:00
//@todo loop custom fields (if any and check secret fields
2016-09-25 02:16:57 +08:00
}
2016-09-25 02:47:47 +08:00
$scope.scan_result = results;
});
};
2016-09-25 02:16:57 +08:00
2016-10-07 21:38:23 +08:00
2016-10-08 00:03:39 +08:00
$scope.cur_state = {};
2016-10-07 21:38:23 +08:00
$scope.changeVaultPassword = function (oldVaultPass,newVaultPass,newVaultPass2) {
if(oldVaultPass != VaultService.getActiveVault().vaultKey){
$scope.error ='Your old password is incorrect!'
return;
}
if(newVaultPass != newVaultPass2){
$scope.error ='New passwords do not match!';
return;
}
VaultService.getVault($scope.active_vault).then(function (vault) {
var _selected_credentials = [];
2016-10-07 22:44:28 +08:00
if(vault.credentials.length === 0){
$location.path('/');
}
2016-10-07 21:38:23 +08:00
for(var i =0; i < vault.credentials.length; i++){
var _credential = vault.credentials[i];
if(_credential.shared_key == null || _credential.shared_key == ''){
_selected_credentials.push(_credential);
}
}
$scope.change_pw = {
percent: 0,
done: 0,
total: _selected_credentials.length
};
var changeCredential = function(index, oldVaultPass, newVaultPass){
CredentialService.reencryptCredential(_selected_credentials[index].guid, oldVaultPass, newVaultPass).progress(function(data){
2016-10-08 00:03:39 +08:00
$scope.cur_state = data;
2016-10-07 21:38:23 +08:00
}).then(function(data){
var percent = index / _selected_credentials.length * 100;
$scope.change_pw = {
percent: percent,
done: index+1,
total: _selected_credentials.length
};
if(index < _selected_credentials.length -1){
changeCredential(index+1, oldVaultPass, newVaultPass);
} else {
console.log('Update complete!');
2016-10-08 00:03:39 +08:00
vault.private_sharing_key = EncryptService.decryptString(angular.copy(vault.private_sharing_key), oldVaultPass);
vault.private_sharing_key = EncryptService.encryptString(vault.private_sharing_key, newVaultPass);
VaultService.updateSharingKeys(vault).then(function (result) {
$rootScope.$broadcast('logout')
});
2016-10-07 21:38:23 +08:00
}
});
};
changeCredential(0, VaultService.getActiveVault().vaultKey, newVaultPass);
})
};
2016-09-25 02:47:47 +08:00
$scope.cancel = function () {
$location.path('/vault/' + $routeParams.vault_id);
};
2016-09-25 02:16:57 +08:00
2016-09-25 02:47:47 +08:00
}]);
2016-09-25 02:16:57 +08:00