This repository has been archived by the owner on Apr 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(server): remove separate notifier process (#1800) r=vbudhram
- Loading branch information
Showing
12 changed files
with
164 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* 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/. */ | ||
|
||
'use strict' | ||
|
||
/** | ||
* This notifier is called by the logger via `notifyAttachedServices` | ||
* to send notifications to Amazon SNS/SQS. | ||
*/ | ||
const AWS = require('aws-sdk') | ||
const config = require('../config') | ||
|
||
const notifierSnsTopicArn = config.get('snsTopicArn') | ||
let sns = { publish: function (msg, cb) { | ||
cb(null, {disabled: true}) | ||
}} | ||
|
||
if (notifierSnsTopicArn !== 'disabled') { | ||
// Pull the region info out of the topic arn. | ||
// For some reason we need to pass this in explicitly. | ||
// Format is "arn:aws:sns:<region>:<other junk>" | ||
const region = notifierSnsTopicArn.split(':')[3] | ||
// This will pull in default credentials, region data etc | ||
// from the metadata service available to the instance. | ||
// It's magic, and it's awesome. | ||
sns = new AWS.SNS({region: region}) | ||
} | ||
|
||
module.exports = function notifierLog(log) { | ||
return { | ||
send: (event, callback) => { | ||
const msg = event.data || {} | ||
msg.event = event.event | ||
|
||
sns.publish({ | ||
TopicArn: notifierSnsTopicArn, | ||
Message: JSON.stringify(msg) | ||
}, (err, data) => { | ||
if (err) { | ||
log.error({op: 'Notifier.publish', err: err}) | ||
} else { | ||
log.trace({op: 'Notifier.publish', success: true, data: data}) | ||
} | ||
|
||
if (callback) { | ||
callback(err, data) | ||
} | ||
}) | ||
|
||
}, | ||
// exported for testing purposes | ||
__sns: sns | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/usr/bin/env bash | ||
node ./bin/key_server.js | node ./bin/notifier.js >/dev/null | ||
node ./bin/key_server.js | ||
exit $PIPESTATUS[0] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
/* 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/. */ | ||
|
||
'use strict' | ||
|
||
const ROOT_DIR = '../..' | ||
|
||
const proxyquire = require('proxyquire') | ||
const assert = require('insist') | ||
const sinon = require('sinon') | ||
|
||
describe('notifier', () => { | ||
const log = { | ||
error: sinon.spy(), | ||
trace: sinon.spy() | ||
} | ||
|
||
beforeEach(() => { | ||
log.error.reset() | ||
log.trace.reset() | ||
}) | ||
|
||
it('works with sns configuration', () => { | ||
const config = { | ||
get: (key) => { | ||
if (key === 'snsTopicArn') { | ||
return 'arn:aws:sns:us-west-2:927034868275:foo' | ||
} | ||
} | ||
} | ||
|
||
const notifier = proxyquire(`${ROOT_DIR}/lib/notifier`, { | ||
'../config': config | ||
})(log) | ||
|
||
notifier.__sns.publish = sinon.spy((event, cb) => { | ||
cb(null, event) | ||
}) | ||
|
||
notifier.send({ | ||
event: { | ||
stuff: true | ||
} | ||
}) | ||
|
||
assert.deepEqual(log.trace.args[0][0], { | ||
op: 'Notifier.publish', | ||
data: { | ||
TopicArn: 'arn:aws:sns:us-west-2:927034868275:foo', | ||
Message: '{\"event\":{\"stuff\":true}}' | ||
}, | ||
success: true | ||
}) | ||
assert.equal(log.error.called, false) | ||
}) | ||
|
||
it('works with disabled configuration', () => { | ||
const config = { | ||
get: (key) => { | ||
if (key === 'snsTopicArn') { | ||
return 'disabled' | ||
} | ||
} | ||
} | ||
const notifier = proxyquire(`${ROOT_DIR}/lib/notifier`, { | ||
'../config': config | ||
})(log) | ||
|
||
notifier.send({ | ||
stuff: true | ||
}, () => { | ||
assert.deepEqual(log.trace.args[0][0], { | ||
op: 'Notifier.publish', | ||
data: { | ||
disabled: true | ||
}, | ||
success: true | ||
}) | ||
assert.equal(log.trace.args[0][0].data.disabled, true) | ||
assert.equal(log.error.called, false) | ||
}) | ||
|
||
}) | ||
|
||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters