define(function(require) { 'use strict'; var appController = require('js/app-controller'), download = require('js/util/download'), angular = require('angular'), str = require('js/app-config').string, emailDao, invitationDao, outbox, crypto, keychain; // // Controller // var ReadCtrl = function($scope) { emailDao = appController._emailDao; invitationDao = appController._invitationDao; outbox = appController._outboxBo; crypto = appController._crypto; keychain = appController._keychain; // set default value so that the popover height is correct on init $scope.keyId = 'No key found.'; $scope.state.read = { open: false, toggle: function(to) { this.open = to; } }; $scope.lineEmpty = function(line) { return line.replace(/>/g, '').trim().length === 0; }; $scope.getKeyId = function(address) { $scope.keyId = 'Searching...'; keychain.getReceiverPublicKey(address, function(err, pubkey) { if (err) { $scope.onError(err); return; } if (!pubkey) { $scope.keyId = 'User has no key. Click to invite.'; $scope.$apply(); return; } var fpr = crypto.getFingerprint(pubkey.publicKey); var formatted = fpr.slice(32); $scope.keyId = 'PGP key: ' + formatted; $scope.$apply(); }); }; $scope.$watch('state.mailList.selected', function(mail) { if (!mail) { return; } // display sender security status mail.from.forEach(checkPublicKey); // display recipient security status mail.to.forEach(checkPublicKey); // display recipient security status Array.isArray(mail.cc) && mail.cc.forEach(checkPublicKey); }); function checkPublicKey(user) { user.secure = undefined; keychain.getReceiverPublicKey(user.address, function(err, pubkey) { if (err) { $scope.onError(err); return; } if (pubkey && pubkey.publicKey) { user.secure = true; } else { user.secure = false; } $scope.$apply(); }); } $scope.download = function(attachment) { // download file to disk if content is available if (attachment.content) { saveToDisk(attachment); return; } var folder = $scope.state.nav.currentFolder; var email = $scope.state.mailList.selected; emailDao.getAttachment({ path: folder.path, uid: email.uid, attachment: attachment }, function(err) { if (err) { $scope.onError(err); return; } saveToDisk(attachment); }); function saveToDisk(attachment) { download.createDownload({ content: attachment.content, filename: attachment.filename, contentType: attachment.mimeType }, $scope.onError); } }; $scope.invite = function(user) { // only invite non-pgp users if (user.secure) { return; } $scope.keyId = 'Sending invitation...'; var sender = emailDao._account.emailAddress, recipient = user.address; invitationDao.invite({ recipient: recipient, sender: sender }, function(err) { if (err) { $scope.onError(err); return; } var invitationMail = { from: [{ address: sender }], to: [{ address: recipient }], cc: [], bcc: [], subject: str.invitationSubject, body: str.invitationMessage }; // send invitation mail outbox.put(invitationMail, $scope.onError); }); }; }; // // Directives // var ngModule = angular.module('read', []); ngModule.directive('replySelection', function() { return function(scope, elm) { var popover = angular.element(document.querySelector('.reply-selection')), visible = false; elm.on('touchstart click', function(e) { e.preventDefault(); e.stopPropagation(); visible = true; // set popover position var top = elm[0].offsetTop; var left = elm[0].offsetLeft; var width = elm[0].offsetWidth; var height = elm[0].offsetHeight; popover[0].style.transition = 'opacity 0.1s linear'; popover[0].style.top = (top + height) + 'px'; popover[0].style.left = (left + width / 2 - popover[0].offsetWidth / 2) + 'px'; popover[0].style.opacity = '1'; }); elm.parent().parent().on('touchstart click', function() { if (!visible) { return; } popover[0].style.transition = 'opacity 0.25s linear, top 0.25s step-end, left 0.25s step-end'; popover[0].style.opacity = '0'; popover[0].style.top = '-9999px'; popover[0].style.left = '-9999px'; }); }; }); ngModule.directive('frameLoad', function() { return function(scope, elm) { elm.bind('load', function() { var frame = elm[0]; frame.height = frame.contentWindow.document.body.scrollHeight + 'px'; }); }; }); ngModule.filter('createAnchors', function($sce) { return function(str) { // replace all urls with anchors return $sce.trustAsHtml(str.replace(/(https?:\/\/[^\s]+)/g, function(url) { return '' + url + ''; })); }; }); return ReadCtrl; });