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.
cryptpad/www/common/common-messaging.js

105 lines
3.4 KiB
JavaScript

7 years ago
define([
'/bower_components/chainpad-crypto/crypto.js',
7 years ago
'/common/common-hash.js',
'/common/common-util.js',
'/common/common-constants.js',
'/customize/messages.js',
7 years ago
'/common/common-realtime.js',
7 years ago
], function (Crypto, Hash, Util, Constants, Messages, Realtime) {
var Msg = {};
7 years ago
7 years ago
var createData = Msg.createData = function (proxy, hash) {
7 years ago
return {
7 years ago
channel: hash || Hash.createChannelId(),
displayName: proxy['cryptpad.username'],
profile: proxy.profile && proxy.profile.view,
7 years ago
edPublic: proxy.edPublic,
curvePublic: proxy.curvePublic,
notifications: Util.find(proxy, ['mailboxes', 'notifications', 'channel']),
avatar: proxy.profile && proxy.profile.avatar
7 years ago
};
};
var getFriend = Msg.getFriend = function (proxy, pubkey) {
if (!pubkey) { return; }
if (pubkey === proxy.curvePublic) {
7 years ago
var data = createData(proxy);
7 years ago
delete data.channel;
return data;
}
return proxy.friends ? proxy.friends[pubkey] : undefined;
};
7 years ago
var getFriendList = Msg.getFriendList = function (proxy) {
if (!proxy.friends) { proxy.friends = {}; }
return proxy.friends;
};
7 years ago
var eachFriend = function (friends, cb) {
Object.keys(friends).forEach(function (id) {
if (id === 'me') { return; }
cb(friends[id], id, friends);
});
};
7 years ago
Msg.getFriendChannelsList = function (proxy) {
var list = [];
eachFriend(proxy.friends, function (friend) {
7 years ago
list.push(friend.channel);
});
return list;
};
Msg.acceptFriendRequest = function (store, data, cb) {
var friend = getFriend(store.proxy, data.curvePublic) || {};
var myData = createData(store.proxy, friend.channel || data.channel);
store.mailbox.sendTo('ACCEPT_FRIEND_REQUEST', myData, {
channel: data.notifications,
curvePublic: data.curvePublic
}, function (obj) {
cb(obj);
});
};
Msg.addToFriendList = function (cfg, data, cb) {
7 years ago
var proxy = cfg.proxy;
7 years ago
var friends = getFriendList(proxy);
var pubKey = data.curvePublic; // todo validata data
7 years ago
if (pubKey === proxy.curvePublic) { return void cb("E_MYKEY"); }
7 years ago
friends[pubKey] = data;
7 years ago
Realtime.whenRealtimeSyncs(cfg.realtime, function () {
cb();
7 years ago
cfg.pinPads([data.channel], function (res) {
if (res.error) { console.error(res.error); }
});
});
7 years ago
};
Msg.updateMyData = function (store, curve) {
if (store.messenger) {
store.messenger.updateMyData();
}
var myData = createData(store.proxy);
var todo = function (friend) {
if (!friend || !friend.notifications) { return; }
myData.channel = friend.channel;
store.mailbox.sendTo('UPDATE_DATA', myData, {
channel: friend.notifications,
curvePublic: friend.curvePublic
}, function (obj) {
if (obj && obj.error) { console.error(obj); }
});
};
if (curve) {
var friend = getFriend(store.proxy, curve);
return void todo(friend);
}
eachFriend(store.proxy.friends || {}, todo);
};
7 years ago
return Msg;
});