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
refactor(server): remove separate notifier process #1800
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Um, yes please!