2016-10-08 01:56:29 +08:00
|
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ngdoc function
|
|
|
|
* @name passmanApp.controller:MainCtrl
|
|
|
|
* @description
|
|
|
|
* # MainCtrl
|
|
|
|
* Controller of the passmanApp
|
|
|
|
*/
|
|
|
|
angular.module('passmanApp')
|
|
|
|
.controller('CredentialCtrl', ['$scope', 'VaultService', 'SettingsService', '$location', 'CredentialService',
|
|
|
|
'$rootScope', 'FileService', 'EncryptService', 'TagService', '$timeout', 'NotificationService', 'CacheService', 'ShareService', 'SharingACL', '$interval', '$filter', '$routeParams',
|
|
|
|
function ($scope, VaultService, SettingsService, $location, CredentialService, $rootScope, FileService, EncryptService, TagService, $timeout, NotificationService, CacheService, ShareService, SharingACL, $interval, $filter, $routeParams) {
|
|
|
|
$scope.active_vault = VaultService.getActiveVault();
|
|
|
|
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'));
|
|
|
|
_vault.vaultKey = angular.copy(SettingsService.getSetting('defaultVaultPass'));
|
|
|
|
VaultService.setActiveVault(_vault);
|
|
|
|
$scope.active_vault = _vault;
|
|
|
|
//@TODO check if vault exists
|
2016-09-29 02:28:34 +08:00
|
|
|
}
|
2016-10-06 05:06:29 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
$scope.show_spinner = true;
|
|
|
|
var fetchCredentials = function () {
|
|
|
|
VaultService.getVault({guid: $routeParams.vault_id}).then(function (vault) {
|
|
|
|
var vaultKey = angular.copy($scope.active_vault.vaultKey);
|
|
|
|
var _credentials = angular.copy(vault.credentials);
|
|
|
|
vault.credentials = [];
|
|
|
|
$scope.active_vault = vault;
|
|
|
|
$scope.active_vault.vaultKey = vaultKey;
|
|
|
|
VaultService.setActiveVault($scope.active_vault);
|
|
|
|
for (var i = 0; i < _credentials.length; i++) {
|
|
|
|
var _credential = _credentials[i];
|
2016-10-06 05:06:29 +08:00
|
|
|
try {
|
2016-10-08 01:56:29 +08:00
|
|
|
if (!_credential.shared_key) {
|
|
|
|
_credential = CredentialService.decryptCredential(angular.copy(_credential));
|
|
|
|
|
|
|
|
} else {
|
|
|
|
var enc_key = EncryptService.decryptString(_credential.shared_key);
|
|
|
|
_credential = ShareService.decryptSharedCredential(angular.copy(_credential), enc_key);
|
|
|
|
}
|
|
|
|
_credential.tags_raw = _credential.tags;
|
2016-10-06 05:06:29 +08:00
|
|
|
} catch (e) {
|
2016-10-08 01:56:29 +08:00
|
|
|
NotificationService.showNotification('An error happend during decryption', 5000);
|
|
|
|
//$rootScope.$broadcast('logout');
|
|
|
|
//SettingsService.setSetting('defaultVaultPass', null);
|
|
|
|
//.setSetting('defaultVault', null);
|
|
|
|
//$location.path('/')
|
2016-10-06 05:06:29 +08:00
|
|
|
|
|
|
|
}
|
2016-10-08 01:56:29 +08:00
|
|
|
if (_credential.tags) {
|
|
|
|
TagService.addTags(_credential.tags);
|
|
|
|
}
|
|
|
|
_credentials[i] = _credential;
|
|
|
|
}
|
|
|
|
|
|
|
|
ShareService.getCredendialsSharedWithUs(vault.guid).then(function (shared_credentials) {
|
|
|
|
for (var c = 0; c < shared_credentials.length; c++) {
|
|
|
|
var _shared_credential = shared_credentials[c];
|
|
|
|
var decrypted_key = EncryptService.decryptString(_shared_credential.shared_key);
|
|
|
|
var _shared_credential_data;
|
|
|
|
try {
|
|
|
|
_shared_credential_data = ShareService.decryptSharedCredential(_shared_credential.credential_data, decrypted_key);
|
|
|
|
} catch (e) {
|
|
|
|
|
|
|
|
}
|
|
|
|
if (_shared_credential_data) {
|
|
|
|
delete _shared_credential.credential_data;
|
|
|
|
_shared_credential_data.acl = _shared_credential;
|
|
|
|
_shared_credential_data.acl.permissions = new SharingACL(_shared_credential_data.acl.permissions);
|
|
|
|
_shared_credential_data.tags_raw = _shared_credential_data.tags;
|
|
|
|
if (_shared_credential_data.tags) {
|
|
|
|
TagService.addTags(_shared_credential_data.tags);
|
|
|
|
}
|
|
|
|
_credentials.push(_shared_credential_data);
|
2016-10-06 05:06:29 +08:00
|
|
|
}
|
|
|
|
}
|
2016-10-08 01:56:29 +08:00
|
|
|
angular.merge($scope.active_vault.credentials, _credentials);
|
|
|
|
$scope.show_spinner = false;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
var getPendingShareRequests = function () {
|
|
|
|
ShareService.getPendingRequests().then(function (shareRequests) {
|
|
|
|
if (shareRequests.length > 0) {
|
|
|
|
$scope.incoming_share_requests = shareRequests;
|
|
|
|
jQuery('.share_popup').dialog({
|
|
|
|
width: 600,
|
|
|
|
position: ['center', 90]
|
|
|
|
});
|
2016-10-06 05:06:29 +08:00
|
|
|
}
|
|
|
|
});
|
2016-10-08 01:56:29 +08:00
|
|
|
};
|
2016-10-06 05:06:29 +08:00
|
|
|
|
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
var refresh_data_interval = null;
|
|
|
|
if ($scope.active_vault) {
|
|
|
|
$scope.$parent.selectedVault = true;
|
2016-10-06 05:06:29 +08:00
|
|
|
fetchCredentials();
|
|
|
|
getPendingShareRequests();
|
2016-10-08 01:56:29 +08:00
|
|
|
refresh_data_interval = $interval(function () {
|
|
|
|
fetchCredentials();
|
|
|
|
getPendingShareRequests();
|
|
|
|
}, 60000 * 5);
|
|
|
|
}
|
|
|
|
$scope.$on('$destroy', function () {
|
|
|
|
$interval.cancel(refresh_data_interval);
|
|
|
|
});
|
2016-10-04 02:33:32 +08:00
|
|
|
|
2016-10-06 05:06:29 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
$scope.permissions = new SharingACL(0);
|
2016-10-04 02:33:32 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
$scope.hasPermission = function (acl, permission) {
|
|
|
|
if (acl) {
|
|
|
|
var tmp = new SharingACL(acl.permission);
|
|
|
|
return tmp.hasPermission(permission);
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
2016-10-06 05:06:29 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
};
|
2016-10-02 23:15:50 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
$scope.acceptShareRequest = function (share_request) {
|
|
|
|
var crypted_shared_key = share_request.shared_key;
|
|
|
|
var private_key = EncryptService.decryptString(VaultService.getActiveVault().private_sharing_key);
|
|
|
|
|
|
|
|
private_key = ShareService.rsaPrivateKeyFromPEM(private_key);
|
|
|
|
crypted_shared_key = private_key.decrypt(forge.util.decode64(crypted_shared_key));
|
|
|
|
crypted_shared_key = EncryptService.encryptString(crypted_shared_key);
|
|
|
|
|
|
|
|
ShareService.saveSharingRequest(share_request, crypted_shared_key).then(function (result) {
|
|
|
|
var idx = $scope.incoming_share_requests.indexOf(share_request);
|
|
|
|
$scope.incoming_share_requests.splice(idx, 1);
|
|
|
|
var active_share_requests = false;
|
|
|
|
for (var v = 0; v < $scope.incoming_share_requests.length; v++) {
|
|
|
|
if ($scope.incoming_share_requests[v].target_vault_id === $scope.active_vault.vault_id) {
|
|
|
|
active_share_requests = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (active_share_requests === false) {
|
|
|
|
jQuery('.ui-dialog').remove();
|
|
|
|
fetchCredentials();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
2016-10-02 23:15:50 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
$scope.declineShareRequest = function (share_request) {
|
|
|
|
ShareService.declineSharingRequest(share_request).then(function () {
|
|
|
|
var idx = $scope.incoming_share_requests.indexOf(share_request);
|
|
|
|
$scope.incoming_share_requests.splice(idx, 1);
|
|
|
|
var active_share_requests = false;
|
|
|
|
for (var v = 0; v < $scope.incoming_share_requests.length; v++) {
|
|
|
|
if ($scope.incoming_share_requests[v].target_vault_id === $scope.active_vault.vault_id) {
|
|
|
|
active_share_requests = true;
|
|
|
|
}
|
2016-10-03 00:36:36 +08:00
|
|
|
}
|
2016-10-08 01:56:29 +08:00
|
|
|
if (active_share_requests === false) {
|
|
|
|
jQuery('.ui-dialog').remove();
|
|
|
|
fetchCredentials();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
$scope.addCredential = function () {
|
|
|
|
var new_credential = CredentialService.newCredential();
|
|
|
|
var enc_c = CredentialService.encryptCredential(new_credential);
|
|
|
|
SettingsService.setSetting('edit_credential', enc_c);
|
|
|
|
$location.path('/vault/' + $scope.active_vault.guid + '/new');
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.editCredential = function (credential) {
|
|
|
|
var _credential = angular.copy(credential);
|
|
|
|
$rootScope.$emit('app_menu', false);
|
|
|
|
SettingsService.setSetting('edit_credential', CredentialService.encryptCredential(_credential));
|
|
|
|
$location.path('/vault/' + $scope.active_vault.guid + '/edit/' + _credential.guid);
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.getRevisions = function (credential) {
|
|
|
|
var _credential = angular.copy(credential);
|
|
|
|
$rootScope.$emit('app_menu', false);
|
|
|
|
SettingsService.setSetting('revision_credential', CredentialService.encryptCredential(_credential));
|
|
|
|
$location.path('/vault/' + $scope.active_vault.guid + '/' + _credential.guid + '/revisions');
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.shareCredential = function (credential) {
|
|
|
|
var _credential = angular.copy(credential);
|
|
|
|
$rootScope.$emit('app_menu', false);
|
|
|
|
SettingsService.setSetting('share_credential', CredentialService.encryptCredential(_credential));
|
|
|
|
$location.path('/vault/' + $scope.active_vault.guid + '/' + _credential.guid + '/share');
|
|
|
|
};
|
|
|
|
|
|
|
|
var notification;
|
|
|
|
$scope.deleteCredential = function (credential) {
|
|
|
|
var _credential = angular.copy(credential);
|
|
|
|
try {
|
|
|
|
_credential = CredentialService.decryptCredential(angular.copy(credential));
|
|
|
|
} catch (e) {
|
|
|
|
|
2016-10-03 00:36:36 +08:00
|
|
|
}
|
2016-10-08 01:56:29 +08:00
|
|
|
_credential.delete_time = new Date().getTime() / 1000;
|
|
|
|
for (var i = 0; i < $scope.active_vault.credentials.length; i++) {
|
|
|
|
if ($scope.active_vault.credentials[i].credential_id === credential.credential_id) {
|
|
|
|
$scope.active_vault.credentials[i].delete_time = _credential.delete_time;
|
2016-10-06 05:06:29 +08:00
|
|
|
}
|
|
|
|
}
|
2016-10-08 01:56:29 +08:00
|
|
|
$scope.closeSelected();
|
|
|
|
if (notification) {
|
|
|
|
NotificationService.hideNotification(notification);
|
2016-10-06 05:06:29 +08:00
|
|
|
}
|
2016-10-08 01:56:29 +08:00
|
|
|
notification = NotificationService.showNotification('Credential deleted', 5000,
|
|
|
|
function () {
|
|
|
|
CredentialService.updateCredential(_credential).then(function (result) {
|
|
|
|
if (result.delete_time > 0) {
|
|
|
|
notification = false;
|
2016-09-16 20:01:25 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
}
|
|
|
|
});
|
2016-09-16 20:01:25 +08:00
|
|
|
});
|
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
};
|
2016-09-16 20:01:25 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
$scope.recoverCredential = function (credential) {
|
|
|
|
var _credential = angular.copy(credential);
|
|
|
|
try {
|
|
|
|
_credential = CredentialService.decryptCredential(angular.copy(credential));
|
|
|
|
} catch (e) {
|
2016-09-16 20:01:25 +08:00
|
|
|
|
|
|
|
}
|
2016-10-08 01:56:29 +08:00
|
|
|
for (var i = 0; i < $scope.active_vault.credentials.length; i++) {
|
|
|
|
if ($scope.active_vault.credentials[i].credential_id === credential.credential_id) {
|
|
|
|
$scope.active_vault.credentials[i].delete_time = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_credential.delete_time = 0;
|
|
|
|
$scope.closeSelected();
|
|
|
|
if (notification) {
|
|
|
|
NotificationService.hideNotification(notification);
|
|
|
|
}
|
|
|
|
NotificationService.showNotification('Credential recovered', 5000,
|
|
|
|
function () {
|
|
|
|
CredentialService.updateCredential(_credential).then(function (result) {
|
|
|
|
notification = false;
|
2016-09-16 20:01:25 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
});
|
2016-09-16 20:01:25 +08:00
|
|
|
});
|
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
};
|
2016-09-13 06:10:24 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
$scope.destroyCredential = function (credential) {
|
|
|
|
var _credential = angular.copy(credential);
|
|
|
|
CredentialService.destroyCredential(_credential.credential_id).then(function (result) {
|
|
|
|
for (var i = 0; i < $scope.active_vault.credentials.length; i++) {
|
|
|
|
if ($scope.active_vault.credentials[i].credential_id === credential.credential_id) {
|
|
|
|
$scope.active_vault.credentials.splice(i, 1);
|
|
|
|
NotificationService.showNotification('Credential destroyed', 5000);
|
|
|
|
break;
|
|
|
|
}
|
2016-09-24 03:30:07 +08:00
|
|
|
}
|
2016-10-08 01:56:29 +08:00
|
|
|
});
|
|
|
|
};
|
2016-09-24 03:30:07 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
$scope.view_mode = 'list'; //@TODO make this a setting
|
|
|
|
$scope.switchViewMode = function (viewMode) {
|
|
|
|
$scope.view_mode = viewMode;
|
|
|
|
};
|
2016-09-25 23:13:48 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
$scope.filterOptions = {
|
|
|
|
filterText: '',
|
|
|
|
fields: ['label', 'username', 'email', 'password', 'custom_fields']
|
|
|
|
};
|
2016-09-25 23:13:48 +08:00
|
|
|
|
2016-10-07 17:15:51 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
$scope.filtered_credentials = [];
|
|
|
|
$scope.$watch('[selectedtags, filterOptions, delete_time, active_vault.credentials]', function () {
|
|
|
|
if (!$scope.active_vault) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ($scope.active_vault.credentials) {
|
|
|
|
var credentials = angular.copy($scope.active_vault.credentials);
|
|
|
|
var filtered_credentials = $filter('credentialSearch')(credentials, $scope.filterOptions);
|
|
|
|
filtered_credentials = $filter('tagFilter')(filtered_credentials, $scope.selectedtags);
|
|
|
|
filtered_credentials = $filter('filter')(filtered_credentials, {hidden: 0});
|
|
|
|
$scope.filtered_credentials = filtered_credentials;
|
|
|
|
}
|
|
|
|
}, true);
|
|
|
|
|
|
|
|
$scope.selectedtags = [];
|
|
|
|
var to;
|
|
|
|
$rootScope.$on('selected_tags_updated', function (evt, _sTags) {
|
|
|
|
var _selectedTags = [];
|
|
|
|
for (var x = 0; x < _sTags.length; x++) {
|
|
|
|
_selectedTags.push(_sTags[x].text);
|
|
|
|
}
|
|
|
|
$scope.selectedtags = _selectedTags;
|
|
|
|
$timeout.cancel(to);
|
|
|
|
if (_selectedTags.length > 0) {
|
|
|
|
to = $timeout(function () {
|
|
|
|
if ($scope.filtered_credentials) {
|
|
|
|
var _filtered_tags = [];
|
|
|
|
for (var i = 0; i < $scope.filtered_credentials.length; i++) {
|
|
|
|
var tags = $scope.filtered_credentials[i].tags_raw;
|
|
|
|
for (var x = 0; x < tags.length; x++) {
|
|
|
|
var tag = tags[x].text;
|
|
|
|
if (_filtered_tags.indexOf(tag) === -1) {
|
|
|
|
_filtered_tags.push(tag);
|
|
|
|
}
|
2016-09-21 00:38:49 +08:00
|
|
|
}
|
|
|
|
}
|
2016-09-16 20:01:25 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
$rootScope.$emit('limit_tags_in_list', _filtered_tags);
|
|
|
|
}
|
|
|
|
}, 50);
|
|
|
|
}
|
|
|
|
});
|
2016-09-16 20:01:25 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
$scope.delete_time = 0;
|
|
|
|
$scope.showCredentialRow = function (credential) {
|
|
|
|
if ($scope.delete_time === 0) {
|
|
|
|
return credential.delete_time === 0;
|
|
|
|
} else {
|
|
|
|
return credential.delete_time > $scope.delete_time;
|
|
|
|
}
|
2016-09-16 20:01:25 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
};
|
2016-09-16 03:21:34 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
$rootScope.$on('set_delete_time', function (event, time) {
|
|
|
|
$scope.delete_time = time;
|
|
|
|
});
|
2016-09-16 20:01:25 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
$scope.setDeleteTime = function (delete_time) {
|
|
|
|
$scope.delete_time = delete_time;
|
|
|
|
};
|
2016-09-15 06:11:59 +08:00
|
|
|
|
2016-09-16 20:01:25 +08:00
|
|
|
$scope.selectedCredential = false;
|
2016-10-08 01:56:29 +08:00
|
|
|
$scope.selectCredential = function (credential) {
|
|
|
|
$scope.selectedCredential = angular.copy(credential);
|
|
|
|
$rootScope.$emit('app_menu', true);
|
|
|
|
};
|
2016-09-16 20:01:25 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
$scope.closeSelected = function () {
|
|
|
|
$rootScope.$emit('app_menu', false);
|
|
|
|
$scope.selectedCredential = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
$rootScope.$on('logout', function () {
|
|
|
|
$scope.active_vault = null;
|
|
|
|
$scope.credentials = [];
|
2016-09-23 18:30:50 +08:00
|
|
|
// $scope.$parent.selectedVault = false;
|
2016-09-16 20:01:25 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
});
|
2016-09-16 20:01:25 +08:00
|
|
|
|
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
$scope.downloadFile = function (credential, file) {
|
|
|
|
var callback = function (result) {
|
|
|
|
var key = null;
|
|
|
|
if (!result.hasOwnProperty('file_data')) {
|
|
|
|
NotificationService.showNotification('Error downloading file, you probably don\'t have enough permissions', 5000);
|
|
|
|
return;
|
2016-10-05 22:58:19 +08:00
|
|
|
|
2016-10-06 01:42:52 +08:00
|
|
|
}
|
2016-10-08 01:56:29 +08:00
|
|
|
if (!credential.hasOwnProperty('acl') && credential.hasOwnProperty('shared_key')) {
|
|
|
|
if (credential.shared_key) {
|
|
|
|
key = EncryptService.decryptString(angular.copy(credential.shared_key));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (credential.hasOwnProperty('acl')) {
|
|
|
|
key = EncryptService.decryptString(angular.copy(credential.acl.shared_key));
|
|
|
|
}
|
2016-10-05 22:58:19 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
var file_data = EncryptService.decryptString(result.file_data, key);
|
|
|
|
download(file_data, escapeHTML(file.filename), file.mimetype);
|
2016-10-05 22:58:19 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
};
|
2016-10-05 22:58:19 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
if (!credential.hasOwnProperty('acl')) {
|
|
|
|
FileService.getFile(file).then(callback);
|
|
|
|
} else {
|
|
|
|
ShareService.downloadSharedFile(credential, file).then(callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
2016-09-16 20:01:25 +08:00
|
|
|
|
2016-10-08 01:56:29 +08:00
|
|
|
}]);
|
|
|
|
}());
|