123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /* Chat plugin for collaboration, need to list available users.
- , and notify when the message comes in by flashing chat "Open" link*/
- const {
- __errorContinuable,
- __httpReq,
- __wHttpReq,
- __postInternalErrorMsg, __postMessage,
- __sequenceNumber,
- __successContinuable,
- __uri_to_id
- } = require("../__worker");
- module.exports = {
- 'interfaces' : [{'method':'POST', 'url=':'/chat'}],
- 'localcontext' : {'messages':[]},
- 'csworker' :
- function(resp,method,uri,reqData,wcontext)
- {
- var self = this;
- _do.chain(
- [__wHttpReq(method, uri+'?wid='+wcontext.__aswid, reqData)])(
- function()
- {
- self.localcontext.messages.push(reqData);
- __postMessage(
- {'statusCode':200,
- 'changelog':
- [{'op':'CHAT',
- 'text':self.localcontext.messages.pop()}],
- 'sequence#':__sequenceNumber(),
- 'respIndex':resp});
- },
- function(err) {__postInternalErrorMsg(resp,err);}
- );
- },
- 'asworker' :
- function(resp,method,uri,reqData,wcontext)
- {
- __postMessage(
- {'statusCode':200,
- 'changelog':
- [],
- 'sequence#':__sequenceNumber(),
- 'respIndex':resp});
-
- }
- };
|