我在Sails.js中编写REST API,并且在常规HTTP路由旁边,我需要应用程序在Salesforce上的套接字上侦听通知。
我有一个带有一些逻辑的控制器,但我不知道如何让它在启动时订阅套接字,所以现在没有任何东西可以达到它。
控制器:
pushTopicHandler: function(req, res) {
if (!req.isSocket) {
return res.badRequest();
}
var nforce = require('nforce');
var org = nforce.createConnection({
clientId: sails.config.client_id,
clientSecret: sails.config.client_secret,
redirectUri: sails.config.callback_url + '/oauth/_callback',
mode: 'multi',
environment: 'sandbox'
});
org.authenticate({ username: sails.config.sfUsername, password: sails.config.sfPassword }, function(err, oauth) {
if(err) return res.serverError(err);
var str = org.stream({ topic: sails.config.push_topic, oauth: oauth });
str.on('connect', function(){
console.log('Connected to pushtopic: ' + sails.config.push_topic);
});
str.on('error', function(error) {
console.log('Error received from pushtopic: ' + error);
});
str.on('data', function(data) {
console.log('Received the following from pushtopic ---');
console.log(data);
});
});
}
答案 0 :(得分:0)
Sails有一个bootstrap.js
文件,可让您在服务器升级之前编写任何想要运行的内容。
我能够在该文件中的cb()
之前订阅一个小型函数中的push主题并且它可以正常运行,服务器正常启动REST API并且它仍在监听事件。