fxa-auth-server/lib/push.js

293 строки
9.2 KiB
JavaScript
Исходник Обычный вид История

/* 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/. */
var webpush = require('web-push')
var P = require('./promise')
var ERR_NO_PUSH_CALLBACK = 'No Push Callback'
var ERR_DATA_BUT_NO_KEYS = 'Data payload present but missing key(s)'
var LOG_OP_PUSH_TO_DEVICES = 'push.pushToDevices'
var PUSH_PAYLOAD_SCHEMA_VERSION = 1
var PUSH_COMMANDS = {
DEVICE_CONNECTED: 'fxaccounts:device_connected',
DEVICE_DISCONNECTED: 'fxaccounts:device_disconnected'
}
var TTL_DEVICE_DISCONNECTED = 5 * 3600 // 5 hours
var reasonToEvents = {
accountVerify: {
send: 'push.account_verify.send',
success: 'push.account_verify.success',
resetSettings: 'push.account_verify.reset_settings',
failed: 'push.account_verify.failed',
noCallback: 'push.account_verify.no_push_callback',
noKeys: 'push.account_verify.data_but_no_keys'
},
passwordReset: {
send: 'push.password_reset.send',
success: 'push.password_reset.success',
resetSettings: 'push.password_reset.reset_settings',
failed: 'push.password_reset.failed',
noCallback: 'push.password_reset.no_push_callback',
noKeys: 'push.password_reset.data_but_no_keys'
},
passwordChange: {
send: 'push.password_change.send',
success: 'push.password_change.success',
resetSettings: 'push.password_change.reset_settings',
failed: 'push.password_change.failed',
noCallback: 'push.password_change.no_push_callback',
noKeys: 'push.password_change.data_but_no_keys'
},
deviceConnected: {
send: 'push.device_connected.send',
success: 'push.device_connected.success',
resetSettings: 'push.device_connected.reset_settings',
failed: 'push.device_connected.failed',
noCallback: 'push.device_connected.no_push_callback',
noKeys: 'push.device_connected.data_but_no_keys'
},
deviceDisconnected: {
send: 'push.device_disconnected.send',
success: 'push.device_disconnected.success',
resetSettings: 'push.device_disconnected.reset_settings',
failed: 'push.device_disconnected.failed',
noCallback: 'push.device_disconnected.no_push_callback',
noKeys: 'push.device_disconnected.data_but_no_keys'
}
}
module.exports = function (log, db) {
/**
* Reports push errors to logs
*
* @param err
* Error object
* @param deviceId
* The device id
*/
function reportPushError(err, uid, deviceId) {
log.error({
op: LOG_OP_PUSH_TO_DEVICES,
uid: uid,
deviceId: deviceId,
err: err
})
}
/**
* Reports push increment actions to logs
*
* @param name
* Name of the push action
*/
function incrementPushAction(name) {
if (name) {
log.info({
op: LOG_OP_PUSH_TO_DEVICES,
name: name
})
log.increment(name)
}
}
/**
* Copy sendPush authorized options from an existing options object
* to a new one
*
* @param options
*/
function filterOptions(options) {
var allowedProps = ['TTL', 'data']
return allowedProps.reduce(function(filtered, prop) {
if (options[prop]) {
filtered[prop] = options[prop]
}
return filtered
}, {})
}
return {
/**
* Notifies all devices that there was an update to the account
*
* @param uid
* @param reason
* @promise
*/
notifyUpdate: function notifyUpdate(uid, reason) {
reason = reason || 'accountVerify'
return this.pushToDevices(uid, reason)
},
/**
* Notifies all devices (except the one who joined) that a new device joined the account
*
* @param uid
* @param deviceName
* @param currentDeviceId
* @promise
*/
notifyDeviceConnected: function notifyDeviceConnected(uid, deviceName, currentDeviceId) {
var data = new Buffer(JSON.stringify({
version: PUSH_PAYLOAD_SCHEMA_VERSION,
command: PUSH_COMMANDS.DEVICE_CONNECTED,
data: {
deviceName: deviceName
}
}))
var options = { data: data, excludedDeviceIds: [currentDeviceId] }
return this.pushToDevices(uid, 'deviceConnected', options)
},
/**
* Notifies a device that it is now disconnected from the account
*
* @param uid
* @param idToDisconnect
* @promise
*/
notifyDeviceDisconnected: function notifyDeviceDisconnected(uid, idToDisconnect) {
var data = new Buffer(JSON.stringify({
version: PUSH_PAYLOAD_SCHEMA_VERSION,
command: PUSH_COMMANDS.DEVICE_DISCONNECTED,
data: {
id: idToDisconnect
}
}))
var options = { data: data, TTL: TTL_DEVICE_DISCONNECTED }
return this.pushToDevice(uid, idToDisconnect, 'deviceDisconnected', options)
},
/**
* Send a push notification with or without data to all the devices in the account (except the ones in the excludedDeviceIds)
*
* @param uid
* @param reason
* @param {Object} options
* @param {String} options.excludedDeviceIds
* @param {String} options.data
* @param {String} options.TTL (in seconds)
* @promise
*/
pushToDevices: function pushToDevices(uid, reason, options) {
options = options || {}
var self = this
return db.devices(uid).then(
function (devices) {
if (options.excludedDeviceIds) {
devices = devices.filter(function(device) {
return options.excludedDeviceIds.indexOf(device.id.toString('hex')) === -1
})
}
var pushOptions = filterOptions(options)
return self.sendPush(uid, devices, reason, pushOptions)
})
},
/**
* Send a push notification with or without data to one device in the account
*
* @param uid
* @param id
* @param reason
* @param {Object} options
* @param {String} options.data
* @param {String} options.TTL (in seconds)
* @promise
*/
pushToDevice: function pushToDevice(uid, id, reason, options) {
options = options || {}
var self = this
return db.devices(uid).then(
function (devices) {
for (var i = 0; i < devices.length; i++) {
if (devices[i].id.toString('hex') === id) {
var pushOptions = filterOptions(options)
return self.sendPush(uid, [devices[i]], reason, pushOptions)
}
}
return P.reject('Device id not found in devices')
})
},
/**
* Send a push notification with or without data to a list of devices
*
* @param uid
* @param devices
* @param reason
* @param {Object} options
* @param {String} options.data
* @param {String} options.TTL (in seconds)
* @promise
*/
sendPush: function sendPush(uid, devices, reason, options) {
options = options || {}
var events = reasonToEvents[reason]
return P.all(
devices.map(function (device) {
var deviceId = device.id.toString('hex')
log.trace({
op: LOG_OP_PUSH_TO_DEVICES,
uid: uid,
deviceId: deviceId,
pushCallback: device.pushCallback
})
if (device.pushCallback) {
// send the push notification
incrementPushAction(events.send)
var pushParams = { 'TTL': options.TTL || '0' }
if (options.data) {
if (!device.pushPublicKey || !device.pushAuthKey) {
reportPushError(new Error(ERR_DATA_BUT_NO_KEYS), uid, deviceId)
incrementPushAction(events.noKeys)
return
}
pushParams.userPublicKey = device.pushPublicKey
pushParams.userAuth = device.pushAuthKey
pushParams.payload = options.data
}
return webpush.sendNotification(device.pushCallback, pushParams)
.then(
function () {
incrementPushAction(events.success)
},
function (err) {
// 404 or 410 error from the push servers means
// the push settings need to be reset.
// the clients will check this and re-register push endpoints
if (err.statusCode === 404 || err.statusCode === 410) {
// reset device push configuration
// Warning: this method is called without any session tokens or auth validation.
device.pushCallback = ''
device.pushPublicKey = ''
device.pushAuthKey = ''
return db.updateDevice(uid, device.id, device).catch(function (err) {
reportPushError(err, uid, deviceId)
}).then(function() {
incrementPushAction(events.resetSettings)
})
} else {
reportPushError(err, uid, deviceId)
incrementPushAction(events.failed)
}
}
)
} else {
// keep track if there are any devices with no push urls.
reportPushError(new Error(ERR_NO_PUSH_CALLBACK), uid, deviceId)
incrementPushAction(events.noCallback)
}
}))
}
}
}