mirror of
https://github.com/moparisthebest/mail
synced 2024-11-22 17:02:17 -05:00
Use manifest config for webmail
This commit is contained in:
parent
f380db4e1d
commit
c6b50d04f6
@ -18,6 +18,7 @@
|
|||||||
"unused": true,
|
"unused": true,
|
||||||
|
|
||||||
"predef": [
|
"predef": [
|
||||||
|
"$",
|
||||||
"self",
|
"self",
|
||||||
"importScripts",
|
"importScripts",
|
||||||
"console",
|
"console",
|
||||||
|
@ -1,34 +1,11 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
var appVersion, cloudUrl, keychainUrl, clientId;
|
|
||||||
|
|
||||||
// parse manifest to get configurations for current runtime
|
|
||||||
try {
|
|
||||||
var manifest = chrome.runtime.getManifest();
|
|
||||||
// get key server base url
|
|
||||||
cloudUrl = _.find(manifest.permissions, function(permission) {
|
|
||||||
return typeof permission === 'string' && permission.indexOf('https://keys') === 0;
|
|
||||||
});
|
|
||||||
// remove last '/' from url due to required syntax in manifest
|
|
||||||
cloudUrl = cloudUrl.substring(0, cloudUrl.length - 1);
|
|
||||||
// get keychain server base url
|
|
||||||
keychainUrl = _.find(manifest.permissions, function(permission) {
|
|
||||||
return typeof permission === 'string' && permission.indexOf('https://keychain') === 0;
|
|
||||||
});
|
|
||||||
// remove last '/' from url due to required syntax in manifest
|
|
||||||
keychainUrl = keychainUrl.substring(0, keychainUrl.length - 1);
|
|
||||||
// get client ID for OAuth requests
|
|
||||||
clientId = manifest.oauth2.client_id;
|
|
||||||
// get the app version
|
|
||||||
appVersion = manifest.version;
|
|
||||||
} catch (e) {}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Global app configurations
|
* Global app configurations
|
||||||
*/
|
*/
|
||||||
exports.config = {
|
exports.config = {
|
||||||
cloudUrl: cloudUrl || 'https://keys.whiteout.io',
|
cloudUrl: 'https://keys.whiteout.io',
|
||||||
privkeyServerUrl: keychainUrl || 'https://keychain.whiteout.io',
|
privkeyServerUrl: 'https://keychain.whiteout.io',
|
||||||
adminUrl: 'https://admin-node.whiteout.io',
|
adminUrl: 'https://admin-node.whiteout.io',
|
||||||
wmailDomain: 'wmail.io',
|
wmailDomain: 'wmail.io',
|
||||||
serverPrivateKeyId: 'EE342F0DDBB0F3BE',
|
serverPrivateKeyId: 'EE342F0DDBB0F3BE',
|
||||||
@ -57,7 +34,7 @@ exports.config = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
gmail: {
|
gmail: {
|
||||||
clientId: clientId || '440907777130.apps.googleusercontent.com',
|
clientId: '440907777130.apps.googleusercontent.com',
|
||||||
imap: {
|
imap: {
|
||||||
host: 'imap.gmail.com',
|
host: 'imap.gmail.com',
|
||||||
port: 993,
|
port: 993,
|
||||||
@ -171,7 +148,7 @@ exports.config = {
|
|||||||
verificationUrl: '/verify/',
|
verificationUrl: '/verify/',
|
||||||
verificationUuidLength: 36,
|
verificationUuidLength: 36,
|
||||||
dbVersion: 5,
|
dbVersion: 5,
|
||||||
appVersion: appVersion,
|
appVersion: undefined,
|
||||||
outboxMailboxPath: 'OUTBOX',
|
outboxMailboxPath: 'OUTBOX',
|
||||||
outboxMailboxName: 'Outbox',
|
outboxMailboxName: 'Outbox',
|
||||||
outboxMailboxType: 'Outbox',
|
outboxMailboxType: 'Outbox',
|
||||||
@ -179,6 +156,35 @@ exports.config = {
|
|||||||
imapUpdateBatchSize: 25
|
imapUpdateBatchSize: 25
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// parse manifest to get configurations for current runtime
|
||||||
|
if (typeof chrome !== 'undefined' && chrome.runtime && chrome.runtime.getManifest) {
|
||||||
|
setConfigParams(chrome.runtime.getManifest());
|
||||||
|
} else if (typeof $ !== 'undefined' && $.get) {
|
||||||
|
$.get('/manifest.json', setConfigParams, 'json');
|
||||||
|
}
|
||||||
|
|
||||||
|
function setConfigParams(manifest) {
|
||||||
|
var cfg = exports.config,
|
||||||
|
cloudUrl, keychainUrl;
|
||||||
|
|
||||||
|
// get key server base url
|
||||||
|
cloudUrl = _.find(manifest.permissions, function(permission) {
|
||||||
|
return typeof permission === 'string' && permission.indexOf('https://keys') === 0;
|
||||||
|
});
|
||||||
|
// remove last '/' from url due to required syntax in manifest
|
||||||
|
cfg.cloudUrl = cloudUrl.substring(0, cloudUrl.length - 1);
|
||||||
|
// get keychain server base url
|
||||||
|
keychainUrl = _.find(manifest.permissions, function(permission) {
|
||||||
|
return typeof permission === 'string' && permission.indexOf('https://keychain') === 0;
|
||||||
|
});
|
||||||
|
// remove last '/' from url due to required syntax in manifest
|
||||||
|
cfg.privkeyServerUrl = keychainUrl.substring(0, keychainUrl.length - 1);
|
||||||
|
// get client ID for OAuth requests
|
||||||
|
cfg.gmail.clientId = manifest.oauth2.client_id;
|
||||||
|
// get the app version
|
||||||
|
cfg.appVersion = manifest.version;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Strings are maintained here
|
* Strings are maintained here
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user