mirror of
https://github.com/openstf/stf
synced 2025-10-04 10:19:30 +02:00
88 lines
2.2 KiB
JavaScript
88 lines
2.2 KiB
JavaScript
var util = require('util')
|
|
|
|
var Hipchatter = require('hipchatter')
|
|
var Promise = require('bluebird')
|
|
var zmq = require('zmq')
|
|
|
|
var logger = require('../../util/logger')
|
|
var wire = require('../../wire')
|
|
var wirerouter = require('../../wire/router')
|
|
var wireutil = require('../../wire/util')
|
|
var lifecycle = require('../../util/lifecycle')
|
|
var srv = require('../../util/srv')
|
|
|
|
var COLORS = {
|
|
1: 'gray'
|
|
, 2: 'gray'
|
|
, 3: 'green'
|
|
, 4: 'purple'
|
|
, 5: 'yellow'
|
|
, 6: 'red'
|
|
, 7: 'red'
|
|
}
|
|
|
|
module.exports = function(options) {
|
|
var log = logger.createLogger('notify-hipchat')
|
|
var client = Promise.promisifyAll(new Hipchatter(options.token))
|
|
var buffer = []
|
|
, timer
|
|
|
|
// Input
|
|
var sub = zmq.socket('sub')
|
|
Promise.map(options.endpoints.sub, function(endpoint) {
|
|
return srv.resolve(endpoint).then(function(records) {
|
|
return srv.attempt(records, function(record) {
|
|
log.info('Receiving input from "%s"', record.url)
|
|
sub.connect(record.url)
|
|
return Promise.resolve(true)
|
|
})
|
|
})
|
|
})
|
|
|
|
// Establish always-on channels
|
|
;[wireutil.global].forEach(function(channel) {
|
|
log.info('Subscribing to permanent channel "%s"', channel)
|
|
sub.subscribe(channel)
|
|
})
|
|
|
|
sub.on('message', wirerouter()
|
|
.on(wire.DeviceLogMessage, function(channel, message) {
|
|
if (message.priority >= options.priority) {
|
|
buffer.push(message)
|
|
clearTimeout(timer)
|
|
timer = setTimeout(push, 1000)
|
|
}
|
|
})
|
|
.handler())
|
|
|
|
function push() {
|
|
buffer.splice(0).forEach(function(entry) {
|
|
client.notifyAsync(options.room, {
|
|
message: util.format(
|
|
'<strong>%s</strong>/<strong>%s</strong> %d [<strong>%s</strong>] %s'
|
|
, logger.LevelLabel[entry.priority]
|
|
, entry.tag
|
|
, entry.pid
|
|
, entry.identifier
|
|
, entry.message
|
|
)
|
|
, color: COLORS[entry.priority]
|
|
, notify: entry.priority >= options.notifyPriority
|
|
, 'message_format': 'html'
|
|
, token: options.token
|
|
})
|
|
})
|
|
}
|
|
|
|
log.info('Listening for %s (or higher) level log messages',
|
|
logger.LevelLabel[options.priority])
|
|
|
|
lifecycle.observe(function() {
|
|
try {
|
|
sub.close()
|
|
}
|
|
catch (err) {
|
|
// No-op
|
|
}
|
|
})
|
|
}
|