'use strict'; var AccountCtrl = function($scope, auth, keychain, pgp, appConfig, download, dialog) { var userId = auth.emailAddress; $scope.state.account = { toggle: function(to) { $scope.state.lightbox = (to) ? 'account' : undefined; } }; // // scope variables // var keyParams = pgp.getKeyParams(); $scope.eMail = userId; $scope.keyId = keyParams._id.slice(8); var fpr = keyParams.fingerprint; $scope.fingerprint = fpr.slice(0, 4) + ' ' + fpr.slice(4, 8) + ' ' + fpr.slice(8, 12) + ' ' + fpr.slice(12, 16) + ' ' + fpr.slice(16, 20) + ' ' + fpr.slice(20, 24) + ' ' + fpr.slice(24, 28) + ' ' + fpr.slice(28, 32) + ' ' + fpr.slice(32, 36) + ' ' + fpr.slice(36); $scope.keysize = keyParams.bitSize; $scope.publicKeyUrl = appConfig.config.cloudUrl + '/' + userId; // // scope functions // $scope.exportKeyFile = function() { keychain.getUserKeyPair(userId, function(err, keys) { if (err) { dialog.error(err); return; } var keyId = keys.publicKey._id; var file = 'whiteout_mail_' + userId + '_' + keyId.substring(8, keyId.length); download.createDownload({ content: keys.publicKey.publicKey + '\r\n' + keys.privateKey.encryptedKey, filename: file + '.asc', contentType: 'text/plain' }); }); }; }; module.exports = AccountCtrl;