2013-06-06 07:34:22 -04:00
|
|
|
/**
|
|
|
|
* The main application controller
|
|
|
|
*/
|
2013-06-10 11:57:33 -04:00
|
|
|
define(['js/dao/email-dao'], function(emailDao) {
|
2013-06-06 07:34:22 -04:00
|
|
|
'use strict';
|
|
|
|
|
2013-06-10 11:57:33 -04:00
|
|
|
var self = {};
|
2013-06-06 07:34:22 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes modules through dependecy injection
|
|
|
|
*/
|
2013-06-10 11:57:33 -04:00
|
|
|
self.init = function(callback) {
|
|
|
|
// var crypto = new app.crypto.Crypto(window, util);
|
|
|
|
// var cloudstorage = new app.dao.CloudStorage(window, $);
|
|
|
|
// var jsonDao = new app.dao.LawnchairDAO(Lawnchair);
|
|
|
|
// var devicestorage = new app.dao.DeviceStorage(util, crypto, jsonDao, null);
|
|
|
|
// var keychain = new app.dao.KeychainDAO(jsonDao, cloudstorage);
|
|
|
|
// emailDao = new app.dao.EmailDAO(jsonDao, crypto, devicestorage, cloudstorage, util, keychain);
|
2013-06-06 07:34:22 -04:00
|
|
|
callback();
|
|
|
|
};
|
|
|
|
|
2013-06-06 09:00:51 -04:00
|
|
|
/**
|
|
|
|
* Start the application by loading the view templates
|
|
|
|
*/
|
2013-06-10 11:57:33 -04:00
|
|
|
self.start = function(callback) {
|
2013-06-06 09:00:51 -04:00
|
|
|
// the views to load
|
2013-06-10 14:00:14 -04:00
|
|
|
var views = ['login', 'compose', 'folderlist', 'messagelist',
|
|
|
|
'messagelistitem', 'read'
|
2013-06-06 09:00:51 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
// are we running in native app or in browser?
|
|
|
|
if (document.URL.indexOf("http") === 0 || document.URL.indexOf("chrome") === 0) {
|
|
|
|
console.log('Assuming Browser environment...');
|
|
|
|
onDeviceReady();
|
|
|
|
} else {
|
|
|
|
console.log('Assuming Cordova environment...');
|
|
|
|
document.addEventListener("deviceready", onDeviceReady, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
function onDeviceReady() {
|
|
|
|
console.log('Starting app.');
|
|
|
|
app.util.tpl.loadTemplates(views, callback);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-06-06 07:34:22 -04:00
|
|
|
/**
|
|
|
|
* Executes a number of commands
|
|
|
|
*/
|
2013-06-10 11:57:33 -04:00
|
|
|
self.execute = function(cmd, args, callback) {
|
2013-06-06 07:34:22 -04:00
|
|
|
if (cmd === 'login') {
|
|
|
|
// login user
|
|
|
|
login(args.userId, args.password, function(err) {
|
|
|
|
callback({
|
|
|
|
err: err
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
} else if (cmd === 'syncEmails') {
|
|
|
|
// list emails from folder
|
|
|
|
emailDao.syncFromCloud(args.folder, function(err) {
|
|
|
|
callback({
|
|
|
|
err: err
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
} else if (cmd === 'listEmails') {
|
|
|
|
// list emails from folder
|
2013-06-06 13:19:37 -04:00
|
|
|
emailDao.listItems(args.folder, args.offset, args.num, function(err, emails) {
|
2013-06-06 07:34:22 -04:00
|
|
|
callback({
|
|
|
|
err: err,
|
2013-06-06 13:19:37 -04:00
|
|
|
emails: emails
|
2013-06-06 07:34:22 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
} else if (cmd === 'getEmail') {
|
|
|
|
// list emails from folder
|
|
|
|
var mail = emailDao.getItem(args.folder, args.messageId);
|
|
|
|
callback({
|
|
|
|
err: null,
|
2013-06-06 13:19:37 -04:00
|
|
|
email: mail
|
2013-06-06 07:34:22 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
} else if (cmd === 'sendEmail') {
|
|
|
|
// list emails from folder
|
2013-06-06 14:41:25 -04:00
|
|
|
emailDao.sendEmail(args.email, function(err) {
|
2013-06-06 07:34:22 -04:00
|
|
|
callback({
|
|
|
|
err: err
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
} else {
|
|
|
|
// error: invalid message from sandbox
|
|
|
|
callback({
|
|
|
|
err: {
|
|
|
|
errMsg: 'Invalid message posted from sandbox!'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
//
|
|
|
|
// Helper methods
|
|
|
|
//
|
|
|
|
|
|
|
|
function login(userId, password, callback) {
|
|
|
|
var account = new app.model.Account({
|
|
|
|
emailAddress: userId,
|
|
|
|
symKeySize: app.config.symKeySize,
|
|
|
|
symIvSize: app.config.symIvSize,
|
|
|
|
asymKeySize: app.config.asymKeySize
|
|
|
|
});
|
|
|
|
emailDao.init(account, password, callback);
|
|
|
|
}
|
|
|
|
|
2013-06-10 11:57:33 -04:00
|
|
|
return self;
|
|
|
|
});
|