You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
125 lines
3.7 KiB
JavaScript
125 lines
3.7 KiB
JavaScript
5 years ago
|
define([
|
||
|
'/common/common-util.js',
|
||
|
'/common/common-hash.js',
|
||
|
'/common/common-constants.js',
|
||
|
'/common/common-realtime.js',
|
||
|
'/bower_components/chainpad-listmap/chainpad-listmap.js',
|
||
|
'/bower_components/chainpad-crypto/crypto.js',
|
||
|
'/bower_components/chainpad/chainpad.dist.js',
|
||
|
], function (Util, Hash, Constants, Realtime, Listmap, Crypto, ChainPad) {
|
||
|
var Team = {};
|
||
|
|
||
|
var initializeTeams = function (ctx, cb) {
|
||
|
// XXX ?
|
||
|
cb();
|
||
|
};
|
||
|
|
||
|
var openChannel = function (ctx, team, id, cb) {
|
||
|
// XXX team password?
|
||
|
var secret = Hash.getSecrets('team', team.href);
|
||
|
var crypto = Crypto.createEncryptor(secret.keys);
|
||
|
|
||
|
var cfg = {
|
||
|
data: {},
|
||
|
network: ctx.store.network,
|
||
|
channel: secret.channel,
|
||
|
crypto: crypto,
|
||
|
ChainPad: ChainPad,
|
||
|
metadata: {
|
||
|
validateKey: secret.keys.validateKey || undefined,
|
||
|
},
|
||
|
userName: 'team',
|
||
|
classic: true
|
||
|
};
|
||
|
var lm = Listmap.create(cfg);
|
||
|
lm.proxy.on('create', function () {
|
||
|
}).on('ready', function () {
|
||
|
ctx.teams[id] = {
|
||
|
listmap: lm,
|
||
|
clients: []
|
||
|
};
|
||
|
if (ctx.onReadyHandlers.length) {
|
||
|
ctx.onReadyHandlers.forEach(function (f) {
|
||
|
try {
|
||
|
f(lm.proxy);
|
||
|
} catch (e) { console.error(e); }
|
||
|
});
|
||
|
ctx.onReadyHandlers = [];
|
||
|
}
|
||
|
}).on('change', [], function () {
|
||
|
// XXX team app event
|
||
|
//ctx.emit('UPDATE', lm.proxy, ctx.clients);
|
||
|
});
|
||
|
};
|
||
|
|
||
|
var subscribe = function (ctx, id, cId, cb) {
|
||
|
// Subscribe to new notifications
|
||
|
if (!id || !ctx.teams[id]) {
|
||
|
return void cb({error: 'EINVAL'});
|
||
|
}
|
||
|
var clients = ctx.teams[id].clients;
|
||
|
var idx = clients.indexOf(cId);
|
||
|
if (idx === -1) {
|
||
|
clients.push(cId);
|
||
|
}
|
||
|
cb();
|
||
|
};
|
||
|
|
||
|
// Remove a client from all the team they're subscribed to
|
||
|
var removeClient = function (ctx, cId) {
|
||
|
Object.keys(ctx.teams).forEach(function (id) {
|
||
|
var clients = ctx.teams[id].clients;
|
||
|
var idx = clients.indexOf(cId);
|
||
|
clients.splice(idx, 1);
|
||
|
});
|
||
|
};
|
||
|
|
||
|
Team.init = function (cfg, waitFor, emit) {
|
||
|
var team = {};
|
||
|
var store = cfg.store;
|
||
|
if (!store.loggedIn || !store.proxy.edPublic) { return; }
|
||
|
var ctx = {
|
||
|
store: store,
|
||
|
pinPads: cfg.pinPads,
|
||
|
updateMetadata: cfg.updateMetadata,
|
||
|
emit: emit,
|
||
|
onReadyHandlers: [],
|
||
|
teams: {}
|
||
|
};
|
||
|
|
||
|
var teams = store.proxy.teams = store.proxy.teams || {};
|
||
|
|
||
|
initializeTeams(ctx, waitFor(function (err) {
|
||
|
if (err) { return; }
|
||
|
}));
|
||
|
|
||
|
Object.keys(teams).forEach(function (id) {
|
||
|
// XXX waitFor?
|
||
|
// only if we want to make sure teams are loaded before remore the loading screen
|
||
|
openChannel(ctx, teams[id], id, function () {
|
||
|
console.error('team '+id+' ready');
|
||
|
});
|
||
|
});
|
||
|
|
||
|
team.removeClient = function (clientId) {
|
||
|
removeClient(ctx, clientId);
|
||
|
};
|
||
|
team.execCommand = function (clientId, obj, cb) {
|
||
|
console.log(obj);
|
||
|
var cmd = obj.cmd;
|
||
|
var data = obj.data;
|
||
|
if (cmd === 'SUBSCRIBE') {
|
||
|
// Only the team app will subscribe to events?
|
||
|
return void subscribe(ctx, data, clientId, cb);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
return team;
|
||
|
};
|
||
|
|
||
|
return Team;
|
||
|
});
|
||
|
|
||
|
|
||
|
|