2013-07-26 05:46:16 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2016-09-02 20:31:49 +03:00
|
|
|
// Only `require()` the newrelic module if explicity enabled.
|
|
|
|
// If required, modules will be instrumented.
|
|
|
|
require('../lib/newrelic')()
|
|
|
|
|
2015-08-17 19:48:34 +03:00
|
|
|
var config = require('../config').getProperties()
|
2015-03-23 22:24:08 +03:00
|
|
|
var jwtool = require('fxa-jwtool')
|
2013-07-26 00:18:19 +04:00
|
|
|
|
2016-08-16 02:07:05 +03:00
|
|
|
var log = require('../lib/log')(config.log.level)
|
|
|
|
var getGeoData = require('../lib/geodb')(log)
|
|
|
|
|
2013-07-26 00:18:19 +04:00
|
|
|
function main() {
|
2016-08-16 02:07:05 +03:00
|
|
|
// Force the geo to load and run at startup, not waiting for it to run on
|
|
|
|
// some route later.
|
|
|
|
var knownIp = '63.245.221.32' // Mozilla MTV
|
|
|
|
getGeoData(knownIp)
|
|
|
|
.then(function(result) {
|
|
|
|
log.info({ op: 'geodb.check', result: result })
|
|
|
|
})
|
|
|
|
|
2016-10-06 16:25:53 +03:00
|
|
|
// RegExp instances serialise to empty objects, display regex strings instead.
|
|
|
|
const stringifiedConfig =
|
|
|
|
JSON.stringify(config, (k, v) =>
|
|
|
|
v && v.constructor === RegExp ? v.toString() : v
|
|
|
|
)
|
|
|
|
|
|
|
|
process.stdout.write('{"event":"config","data":' + stringifiedConfig + '}\n')
|
2016-05-19 07:57:58 +03:00
|
|
|
|
2013-12-17 08:36:34 +04:00
|
|
|
if (config.env !== 'prod') {
|
2016-10-06 16:25:53 +03:00
|
|
|
log.info(stringifiedConfig, 'starting config')
|
2013-11-26 05:27:08 +04:00
|
|
|
}
|
2013-07-26 00:18:19 +04:00
|
|
|
|
2015-05-10 22:11:59 +03:00
|
|
|
var error = require('../lib/error')
|
2016-09-22 19:44:34 +03:00
|
|
|
var Token = require('../lib/tokens')(log, config)
|
2015-05-10 22:11:59 +03:00
|
|
|
var Password = require('../lib/crypto/password')(log, config)
|
2016-10-27 21:33:26 +03:00
|
|
|
var UnblockCode = require('../lib/crypto/base32')(config.signinUnblock.codeLength)
|
2013-10-27 06:49:33 +04:00
|
|
|
|
2015-05-10 22:11:59 +03:00
|
|
|
var signer = require('../lib/signer')(config.secretKeyFile, config.domain)
|
2015-09-22 03:14:23 +03:00
|
|
|
var serverPublicKeys = {
|
|
|
|
primary: jwtool.JWK.fromFile(
|
|
|
|
config.publicKeyFile,
|
|
|
|
{
|
|
|
|
algorithm: 'RS',
|
|
|
|
use: 'sig',
|
|
|
|
kty: 'RSA'
|
|
|
|
}
|
|
|
|
),
|
|
|
|
secondary: config.oldPublicKeyFile ?
|
|
|
|
jwtool.JWK.fromFile(
|
|
|
|
config.oldPublicKeyFile,
|
|
|
|
{
|
|
|
|
algorithm: 'RS',
|
|
|
|
use: 'sig',
|
|
|
|
kty: 'RSA'
|
|
|
|
}
|
|
|
|
)
|
|
|
|
: null
|
|
|
|
}
|
2013-10-30 00:46:09 +04:00
|
|
|
|
2015-05-10 22:11:59 +03:00
|
|
|
var Customs = require('../lib/customs')(log, error)
|
2014-04-19 06:05:47 +04:00
|
|
|
|
2015-05-10 22:11:59 +03:00
|
|
|
var Server = require('../lib/server')
|
2013-10-30 00:46:09 +04:00
|
|
|
var server = null
|
2017-02-16 11:21:22 +03:00
|
|
|
var senders = null
|
2014-09-29 08:33:38 +04:00
|
|
|
var statsInterval = null
|
2014-06-09 04:19:34 +04:00
|
|
|
var database = null
|
|
|
|
var customs = null
|
2014-02-13 02:54:05 +04:00
|
|
|
|
2015-06-19 02:12:42 +03:00
|
|
|
function logStatInfo() {
|
|
|
|
log.stat(server.stat())
|
|
|
|
log.stat(Password.stat())
|
|
|
|
}
|
|
|
|
|
2017-02-16 11:21:22 +03:00
|
|
|
require('../lib/senders')(config, log)
|
2017-03-01 21:06:46 +03:00
|
|
|
.then(
|
2017-02-16 11:21:22 +03:00
|
|
|
function(result) {
|
|
|
|
senders = result
|
2013-10-30 00:46:09 +04:00
|
|
|
|
2015-05-10 22:11:59 +03:00
|
|
|
var DB = require('../lib/db')(
|
2016-09-22 19:44:34 +03:00
|
|
|
config,
|
2014-02-13 02:54:05 +04:00
|
|
|
log,
|
|
|
|
error,
|
|
|
|
Token.SessionToken,
|
|
|
|
Token.KeyFetchToken,
|
|
|
|
Token.AccountResetToken,
|
|
|
|
Token.PasswordForgotToken,
|
2016-10-12 03:26:37 +03:00
|
|
|
Token.PasswordChangeToken,
|
|
|
|
UnblockCode
|
2014-02-13 02:54:05 +04:00
|
|
|
)
|
2013-10-30 00:46:09 +04:00
|
|
|
|
2014-02-13 02:54:05 +04:00
|
|
|
DB.connect(config[config.db.backend])
|
2017-03-01 21:06:46 +03:00
|
|
|
.then(
|
2014-02-13 02:54:05 +04:00
|
|
|
function (db) {
|
2014-06-09 04:19:34 +04:00
|
|
|
database = db
|
|
|
|
customs = new Customs(config.customsUrl)
|
2015-05-10 22:11:59 +03:00
|
|
|
var routes = require('../lib/routes')(
|
2014-03-24 02:57:01 +04:00
|
|
|
log,
|
|
|
|
error,
|
2015-09-22 03:14:23 +03:00
|
|
|
serverPublicKeys,
|
2014-03-24 02:57:01 +04:00
|
|
|
signer,
|
|
|
|
db,
|
2017-02-16 11:21:22 +03:00
|
|
|
senders.email,
|
|
|
|
senders.sms,
|
2014-09-29 08:06:36 +04:00
|
|
|
Password,
|
2014-03-24 02:57:01 +04:00
|
|
|
config,
|
2016-10-16 12:02:36 +03:00
|
|
|
customs
|
2014-03-24 02:57:01 +04:00
|
|
|
)
|
2014-03-10 04:33:52 +04:00
|
|
|
server = Server.create(log, error, config, routes, db)
|
2013-12-06 02:52:55 +04:00
|
|
|
|
2014-02-13 02:54:05 +04:00
|
|
|
server.start(
|
2015-10-29 23:59:52 +03:00
|
|
|
function (err) {
|
|
|
|
if (err) {
|
|
|
|
log.error({ op: 'server.start.1', msg: 'failed startup with error',
|
2016-10-29 03:11:54 +03:00
|
|
|
err: { message: err.message } })
|
2015-10-29 23:59:52 +03:00
|
|
|
process.exit(1)
|
|
|
|
} else {
|
|
|
|
log.info({ op: 'server.start.1', msg: 'running on ' + server.info.uri })
|
|
|
|
}
|
2014-02-13 02:54:05 +04:00
|
|
|
}
|
|
|
|
)
|
2014-10-01 07:45:36 +04:00
|
|
|
statsInterval = setInterval(logStatInfo, 15000)
|
2014-02-13 02:54:05 +04:00
|
|
|
},
|
|
|
|
function (err) {
|
2014-09-04 05:32:12 +04:00
|
|
|
log.error({ op: 'DB.connect', err: { message: err.message } })
|
2014-02-13 02:54:05 +04:00
|
|
|
process.exit(1)
|
|
|
|
}
|
|
|
|
)
|
2013-07-26 00:18:19 +04:00
|
|
|
|
2013-10-30 00:46:09 +04:00
|
|
|
}
|
|
|
|
)
|
2013-07-26 00:18:19 +04:00
|
|
|
|
2014-01-15 10:29:34 +04:00
|
|
|
process.on(
|
|
|
|
'uncaughtException',
|
|
|
|
function (err) {
|
|
|
|
log.fatal(err)
|
|
|
|
process.exit(8)
|
|
|
|
}
|
|
|
|
)
|
2014-03-24 06:01:50 +04:00
|
|
|
process.on('SIGINT', shutdown)
|
|
|
|
log.on('error', shutdown)
|
|
|
|
|
|
|
|
function shutdown() {
|
2014-06-09 04:19:34 +04:00
|
|
|
log.info({ op: 'shutdown' })
|
2014-09-29 08:33:38 +04:00
|
|
|
clearInterval(statsInterval)
|
2014-03-24 06:01:50 +04:00
|
|
|
server.stop(
|
|
|
|
function () {
|
2014-06-09 04:19:34 +04:00
|
|
|
customs.close()
|
2016-07-15 16:18:20 +03:00
|
|
|
try {
|
2017-02-16 11:21:22 +03:00
|
|
|
senders.email.stop()
|
2016-07-15 16:18:20 +03:00
|
|
|
} catch (e) {
|
|
|
|
// XXX: simplesmtp module may quit early and set socket to `false`, stopping it may fail
|
|
|
|
log.warn({ op: 'shutdown', message: 'Mailer client already disconnected' })
|
|
|
|
}
|
2014-06-09 04:19:34 +04:00
|
|
|
database.close()
|
2015-07-30 01:05:29 +03:00
|
|
|
process.exit() //XXX: because of openid dep ಠ_ಠ
|
2014-03-24 06:01:50 +04:00
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
2013-07-26 00:18:19 +04:00
|
|
|
}
|
|
|
|
|
2014-06-09 04:19:34 +04:00
|
|
|
main()
|